@getcoherent/cli 0.6.49 → 0.6.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -1
- package/dist/index.js +470 -428
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -26,9 +26,14 @@ coherent preview
|
|
|
26
26
|
| Command | Description |
|
|
27
27
|
|---------|-------------|
|
|
28
28
|
| `coherent init` | Create project: config, app, design-system viewer, docs. Non-interactive (optional provider flag). |
|
|
29
|
-
| `coherent chat "<request>"` |
|
|
29
|
+
| `coherent chat "<request>"` | Generate or modify pages using natural language. Includes generation-time TypeScript validation. |
|
|
30
30
|
| `coherent preview` | Start Next.js dev server. |
|
|
31
|
+
| `coherent fix` | Auto-fix everything: TypeScript errors (deterministic + AI), missing components, CSS, raw colors, layouts. |
|
|
32
|
+
| `coherent check` | Show all problems: page quality, component integrity, broken links. |
|
|
33
|
+
| `coherent sync` | Sync Design System with code after manual edits. |
|
|
31
34
|
| `coherent export` | Production build; optional Vercel/Netlify config. |
|
|
35
|
+
| `coherent undo` | Restore project to state before the last `coherent chat`. |
|
|
36
|
+
| `coherent update` | Apply platform updates to an existing project. |
|
|
32
37
|
| `coherent status` | Print config summary (pages, components). |
|
|
33
38
|
| `coherent components` | List registered components. |
|
|
34
39
|
|