@getcoherent/cli 0.6.34 → 0.6.35
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/dist/index.js +31 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -2366,6 +2366,8 @@ For editing an existing shared component use type "modify-layout-block" with tar
|
|
|
2366
2366
|
const visualDepth = VISUAL_DEPTH;
|
|
2367
2367
|
const contextualRules = selectContextualRules(message);
|
|
2368
2368
|
const interactionPatterns = INTERACTION_PATTERNS;
|
|
2369
|
+
const light = config2.tokens.colors.light;
|
|
2370
|
+
const dark = config2.tokens.colors.dark;
|
|
2369
2371
|
return `You are a design-forward UI architect. Your goal is to create interfaces that are not just functional, but visually distinctive and memorable \u2014 while staying within shadcn/ui and Tailwind CSS.
|
|
2370
2372
|
|
|
2371
2373
|
Parse the user's natural language request into structured modification requests.
|
|
@@ -2383,6 +2385,16 @@ Current Design System:
|
|
|
2383
2385
|
- Pages: ${config2.pages.map((p) => `${p.name} (${p.route})`).join(", ")}
|
|
2384
2386
|
- Components: ${config2.components.length} components
|
|
2385
2387
|
|
|
2388
|
+
Current color tokens (#RRGGBB hex):
|
|
2389
|
+
Light theme:
|
|
2390
|
+
Brand: primary=${light.primary}, secondary=${light.secondary}, accent=${light.accent || "none"}
|
|
2391
|
+
Status: success=${light.success}, warning=${light.warning}, error=${light.error}, info=${light.info}
|
|
2392
|
+
Surface: background=${light.background}, foreground=${light.foreground}, muted=${light.muted}, border=${light.border}
|
|
2393
|
+
Dark theme:
|
|
2394
|
+
Brand: primary=${dark.primary}, secondary=${dark.secondary}, accent=${dark.accent || "none"}
|
|
2395
|
+
Status: success=${dark.success}, warning=${dark.warning}, error=${dark.error}, info=${dark.info}
|
|
2396
|
+
Surface: background=${dark.background}, foreground=${dark.foreground}, muted=${dark.muted}, border=${dark.border}
|
|
2397
|
+
|
|
2386
2398
|
EXISTING ROUTES IN THIS PROJECT:
|
|
2387
2399
|
${config2.pages.map((p) => p.route).join(", ") || "(no pages yet)"}
|
|
2388
2400
|
|
|
@@ -2414,7 +2426,7 @@ Parse this into one or more ModificationRequest objects. Each request should be:
|
|
|
2414
2426
|
5. For add-component with source "shadcn": include id, name, category, source: "shadcn", shadcnComponent, baseClassName (or omit for default), variants: [], sizes: [], usedInPages: [], createdAt, updatedAt
|
|
2415
2427
|
|
|
2416
2428
|
Available modification types:
|
|
2417
|
-
- "update-token": Change design token (e.g
|
|
2429
|
+
- "update-token": Change design token. target: dot-path (e.g. "colors.light.primary"). changes: { "value": "#RRGGBB" }. Color values MUST be 6-digit hex with # prefix (e.g. #4F46E5 for indigo, #DC2626 for red). When changing a color, ALWAYS update BOTH light and dark themes for consistency.
|
|
2418
2430
|
- "add-component": Add new component (check registry first for reuse!)
|
|
2419
2431
|
- "modify-component": Update existing component
|
|
2420
2432
|
- "modify-layout-block": Edit a shared layout component by ID or name (target: "CID-001" or "Header"). changes: { "instruction": "user instruction e.g. add a search button" }. Use when user says "in CID-001 add...", "update the header...", "change the footer...".
|
|
@@ -2986,6 +2998,7 @@ function fixGlobalsCss(projectRoot, config2) {
|
|
|
2986
2998
|
}
|
|
2987
2999
|
|
|
2988
3000
|
// src/commands/chat/request-parser.ts
|
|
3001
|
+
import { colorToHex } from "@getcoherent/core";
|
|
2989
3002
|
var AUTH_FLOW_PATTERNS = {
|
|
2990
3003
|
"/login": ["/signup", "/forgot-password"],
|
|
2991
3004
|
"/signin": ["/signup", "/forgot-password"],
|
|
@@ -3289,6 +3302,18 @@ function normalizeRequest(request, config2) {
|
|
|
3289
3302
|
}
|
|
3290
3303
|
break;
|
|
3291
3304
|
}
|
|
3305
|
+
case "update-token": {
|
|
3306
|
+
if (changes?.value && typeof changes.value === "string") {
|
|
3307
|
+
const isColorPath = request.target.includes("colors.");
|
|
3308
|
+
if (isColorPath) {
|
|
3309
|
+
const hex = colorToHex(changes.value);
|
|
3310
|
+
if (hex && hex !== changes.value) {
|
|
3311
|
+
return { ...request, changes: { ...changes, value: hex } };
|
|
3312
|
+
}
|
|
3313
|
+
}
|
|
3314
|
+
}
|
|
3315
|
+
break;
|
|
3316
|
+
}
|
|
3292
3317
|
}
|
|
3293
3318
|
return request;
|
|
3294
3319
|
}
|
|
@@ -8458,7 +8483,11 @@ async function fixCommand(opts = {}) {
|
|
|
8458
8483
|
const { ensurePlanGroupLayouts: ensurePlanGroupLayouts2 } = await import("./code-generator-U2N646D4.js");
|
|
8459
8484
|
const plan = loadPlan2(projectRoot);
|
|
8460
8485
|
if (plan) {
|
|
8461
|
-
|
|
8486
|
+
if (!dsm) {
|
|
8487
|
+
dsm = new DesignSystemManager9(project.configPath);
|
|
8488
|
+
await dsm.load();
|
|
8489
|
+
}
|
|
8490
|
+
await ensurePlanGroupLayouts2(projectRoot, plan, {}, dsm.getConfig());
|
|
8462
8491
|
const layoutTypes = plan.groups.map((g) => `${g.id}:${g.layout}`).join(", ");
|
|
8463
8492
|
fixes.push(`Verified group layouts (${layoutTypes})`);
|
|
8464
8493
|
console.log(chalk15.green(` \u2714 Verified group layouts: ${layoutTypes}`));
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.6.
|
|
6
|
+
"version": "0.6.35",
|
|
7
7
|
"description": "CLI interface for Coherent Design Method",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"main": "./dist/index.js",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"ora": "^7.0.1",
|
|
44
44
|
"prompts": "^2.4.2",
|
|
45
45
|
"zod": "^3.22.4",
|
|
46
|
-
"@getcoherent/core": "0.6.
|
|
46
|
+
"@getcoherent/core": "0.6.35"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/node": "^20.11.0",
|