@decantr/mcp-server 1.0.0-beta.1 → 1.0.0-beta.11
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 +3 -5
- package/dist/bin.d.ts +1 -0
- package/dist/bin.js +2 -0
- package/dist/chunk-ARK7P76H.js +1906 -0
- package/dist/index.js +1 -510
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -64,17 +64,16 @@ Add to your Windsurf MCP config (`~/.windsurf/mcp.json`):
|
|
|
64
64
|
| `decantr_create_essence` | Generate an Essence spec skeleton from a project description | `{ "description": "SaaS dashboard with analytics and billing", "framework": "react" }` |
|
|
65
65
|
| `decantr_read_essence` | Read the current `decantr.essence.json` from the working directory | `{}` or `{ "path": "./custom.essence.json" }` |
|
|
66
66
|
| `decantr_validate` | Validate an Essence file against the schema and guard rules | `{ "path": "./decantr.essence.json" }` |
|
|
67
|
-
| `decantr_search_registry` | Search the community registry for patterns, archetypes,
|
|
67
|
+
| `decantr_search_registry` | Search the community registry for patterns, archetypes, themes, and shells | `{ "query": "kanban", "type": "pattern" }` |
|
|
68
68
|
| `decantr_resolve_pattern` | Get full pattern details: layout spec, components, presets, code examples | `{ "id": "data-table", "preset": "product" }` |
|
|
69
69
|
| `decantr_resolve_archetype` | Get archetype details: default pages, layouts, features, suggested theme | `{ "id": "saas-dashboard" }` |
|
|
70
|
-
| `decantr_resolve_recipe` | Get recipe decoration rules: shell styles, spatial hints, visual effects | `{ "id": "auradecantism" }` |
|
|
71
70
|
| `decantr_resolve_blueprint` | Get a full app composition with page structure and personality traits | `{ "id": "ecommerce" }` |
|
|
72
71
|
| `decantr_suggest_patterns` | Given a page description, get ranked pattern suggestions | `{ "description": "dashboard with metrics and charts" }` |
|
|
73
72
|
| `decantr_check_drift` | Check if generated code violates the design intent in the Essence spec | `{ "page_id": "overview", "components_used": ["Card", "LineChart"], "theme_used": "auradecantism" }` |
|
|
74
73
|
|
|
75
74
|
## How It Works
|
|
76
75
|
|
|
77
|
-
An Essence spec (`decantr.essence.json`) captures your design intent -- archetype, theme, page structure, patterns, and guard rules -- in a single declarative file. The MCP server exposes this spec and the Decantr registry to your AI assistant, giving it concrete layout specs, component lists, and
|
|
76
|
+
An Essence spec (`decantr.essence.json`) captures your design intent -- archetype, theme, page structure, patterns, and guard rules -- in a single declarative file. The MCP server exposes this spec and the Decantr registry to your AI assistant, giving it concrete layout specs, component lists, and visual treatments instead of relying on the model's generic training data. The result is generated code that follows a coherent design system, and drift detection that catches deviations before they ship.
|
|
78
77
|
|
|
79
78
|
## Example Workflow
|
|
80
79
|
|
|
@@ -86,8 +85,7 @@ The AI assistant calls these tools behind the scenes:
|
|
|
86
85
|
2. `decantr_resolve_archetype` -- pulls default pages, layouts, and features for a SaaS dashboard
|
|
87
86
|
3. `decantr_suggest_patterns` -- recommends `kpi-grid`, `chart-grid`, `data-table`, and `form-sections` for the described pages
|
|
88
87
|
4. `decantr_resolve_pattern` -- fetches layout specs and component lists for each pattern
|
|
89
|
-
5. `
|
|
90
|
-
6. `decantr_check_drift` -- validates the generated code against the Essence spec before presenting it
|
|
88
|
+
5. `decantr_check_drift` -- validates the generated code against the Essence spec before presenting it
|
|
91
89
|
|
|
92
90
|
The AI now generates code with the right layout structure, correct components, and consistent styling -- not a generic guess.
|
|
93
91
|
|
package/dist/bin.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
package/dist/bin.js
ADDED