@contentful/experience-design-system-cli 2.15.1-dev-build-a92649c.0 → 2.15.1-dev-build-b11e821.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentful/experience-design-system-cli",
3
- "version": "2.15.1-dev-build-a92649c.0",
3
+ "version": "2.15.1-dev-build-b11e821.0",
4
4
  "description": "Contentful Experiences design system import CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -306,7 +306,7 @@ export function registerAnalyzeSelectAgentCommand(program) {
306
306
  .option('--session <id>', 'Session ID from analyze extract (defaults to most recent)')
307
307
  .option('--project-root <path>', 'Project root for resolving component source files')
308
308
  .option('--agent <name>', 'Agent to use: claude, codex, opencode, cursor (defaults to value saved by experiences setup)')
309
- .option('--model <name>', "Model to use (defaults to the agent CLI's own default; override per-agent with EDS_AGENT_MODEL_<AGENT>)")
309
+ .option('--model <name>', 'Model to use (defaults to a cheap per-agent model; override with --model or EDS_AGENT_MODEL_<AGENT>)')
310
310
  .option('--verbose', 'Show full agent output including reasoning text')
311
311
  .option('--dry-run', 'Print the prompt for the first component without invoking the agent')
312
312
  .option('--exclude-invalid', 'Auto-reject components with validation errors instead of failing loud (LLM cannot fix structural issues)')
@@ -570,7 +570,7 @@ async function runGenerateSkill(skill, opts, verbose = false) {
570
570
  function addAgentFlags(cmd) {
571
571
  return cmd
572
572
  .option('--agent <name>', 'Agent to use: claude, codex, opencode, cursor (defaults to value saved by experiences setup)')
573
- .option('--model <name>', "Model to use (defaults to the agent CLI's own default; override per-agent with EDS_AGENT_MODEL_<AGENT>)")
573
+ .option('--model <name>', 'Model to use (defaults to a cheap per-agent model; override with --model or EDS_AGENT_MODEL_<AGENT>)')
574
574
  .option('--verbose', 'Show full agent output including reasoning text')
575
575
  .option('--dry-run', 'Print the prompt without invoking the agent')
576
576
  .option('--no-cache', 'Bypass ALL fine-grained caches (extract, select, generate) and force AI re-run. ' +
@@ -20,7 +20,7 @@ export function registerImportCommand(program) {
20
20
  .option('--project <path>', 'Path to the project root to analyze', '.')
21
21
  .option('--out <path>', 'Output directory for pipeline artifacts')
22
22
  .option('--agent <name>', 'Agent to use for generate components (overrides credentials.json; falls back to "claude")')
23
- .option('--model <name>', "Model to use for generate components (defaults to the agent CLI's own default; override per-agent with EDS_AGENT_MODEL_<AGENT>)")
23
+ .option('--model <name>', 'Model to use for generate components (defaults to a cheap per-agent model; override with --model or EDS_AGENT_MODEL_<AGENT>)')
24
24
  .option('--tokens <path>', 'Path to a DTCG tokens.json file to push alongside generated components')
25
25
  .option('--raw-tokens <path>', 'Path to a raw token source file (SCSS, CSS variables, JS/TS, Style Dictionary, etc.) to classify and import alongside components. Bypasses the interactive token prompt.')
26
26
  .option('--select-all', 'Select all extracted components for generation (default)')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentful/experience-design-system-cli",
3
- "version": "2.15.1-dev-build-a92649c.0",
3
+ "version": "2.15.1-dev-build-b11e821.0",
4
4
  "description": "Contentful Experiences design system import CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -34,8 +34,8 @@
34
34
  "react": "^18.3.1",
35
35
  "react-devtools-core": "^4.19.1",
36
36
  "react-dom": "^18.3.1",
37
- "@contentful/experience-design-system-types": "2.15.1-dev-build-a92649c.0",
38
- "@contentful/experience-design-system-extraction": "2.15.1-dev-build-a92649c.0"
37
+ "@contentful/experience-design-system-extraction": "2.15.1-dev-build-b11e821.0",
38
+ "@contentful/experience-design-system-types": "2.15.1-dev-build-b11e821.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@tsconfig/node24": "^24.0.3",