@getcoherent/cli 0.1.0 → 0.2.1
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 +2 -2
- package/dist/{claude-QTRMGJ56.js → claude-QH2XB2E3.js} +1 -1
- package/dist/index.js +3932 -2717
- package/dist/{openai-provider-VKSRXDLD.js → openai-provider-3XC6CVZR.js} +4 -8
- package/package.json +6 -5
- package/dist/backup-DRQUCHM5.js +0 -11
- package/dist/chunk-N2S7FM57.js +0 -101
- package/dist/index.d.ts +0 -2
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @getcoherent/cli
|
|
2
2
|
|
|
3
3
|
CLI for **Coherent Design Method** — generate and maintain Next.js apps with a single design-system config.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g @
|
|
8
|
+
npm install -g @getcoherent/cli
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Quick Start
|
|
@@ -13,7 +13,7 @@ var ClaudeClient = class _ClaudeClient {
|
|
|
13
13
|
"ANTHROPIC_API_KEY not found in environment.\nPlease set it in your .env file or export it:\n export ANTHROPIC_API_KEY=your_key_here"
|
|
14
14
|
);
|
|
15
15
|
}
|
|
16
|
-
this.client = new Anthropic({ apiKey: key });
|
|
16
|
+
this.client = new Anthropic({ apiKey: key, maxRetries: 1 });
|
|
17
17
|
this.defaultModel = model || process.env.CLAUDE_MODEL || "claude-sonnet-4-20250514";
|
|
18
18
|
}
|
|
19
19
|
/**
|