command-code 1.8.0 → 1.9.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/CHANGELOG.md +9 -0
- package/README.md +10 -7
- package/dist/bundled/command-code-knowledge/reference/models.md +1 -0
- package/dist/bundled/command-code-knowledge/reference/product-help.md +1 -0
- package/dist/cli.mjs +5 -5
- package/dist/index.mjs +1 -1
- package/package.json +5 -5
- package/vsix/commandcode-vscode.vsix +0 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
**Command Code with your taste.** The coding agent that
|
|
5
|
+
**Command Code with your taste.** The coding agent that's purpose built for open models.
|
|
6
6
|
|
|
7
7
|
Builds full-stack projects. Fixes bugs. Writes tests. Refactors. All in your style. Continuously. Works with Claude, GPT, Kimi, DeepSeek, GLM, Qwen, MiniMax — frontier and open.
|
|
8
8
|
|
|
@@ -10,22 +10,25 @@ Builds full-stack projects. Fixes bugs. Writes tests. Refactors. All in your sty
|
|
|
10
10
|
|
|
11
11
|
Check it out at [CommandCode.ai](https://commandcode.ai).
|
|
12
12
|
|
|
13
|
-
## Docs
|
|
14
|
-
|
|
15
|
-
Read the full documentation at [CommandCode.ai/docs](https://commandcode.ai/docs).
|
|
16
|
-
|
|
17
|
-
- [`/design`](https://commandcode.ai/docs/design) — Design partner for frontend interfaces
|
|
18
|
-
|
|
19
13
|
## Install
|
|
20
14
|
|
|
21
15
|
```bash
|
|
22
16
|
npm i -g command-code
|
|
23
17
|
```
|
|
24
18
|
|
|
19
|
+
> Requires [Node.js](https://nodejs.org) 22 or newer (the current LTS). Check with `node -v`, here's an [upgrade guide](https://commandcode.ai/docs/troubleshooting/common-issues#upgrading-node-js).
|
|
20
|
+
|
|
21
|
+
|
|
25
22
|
## Usage
|
|
26
23
|
|
|
27
24
|
```bash
|
|
28
25
|
cmd
|
|
29
26
|
```
|
|
30
27
|
|
|
28
|
+
> On Windows the short alias is `cmdc`, not `cmd` — `cmd` is already the built-in Windows command shell, so Command Code cannot claim that name. Everywhere these docs write `cmd`, use `cmdc` instead: `cmdc login`, `cmdc --version`, `cmdc -r`, `cmdc update`. The full name `command-code` works on every platform.
|
|
29
|
+
|
|
31
30
|
For detailed usage, see the [docs](https://commandcode.ai/docs) and [quickstart](https://commandcode.ai/docs/quickstart).
|
|
31
|
+
|
|
32
|
+
## Docs
|
|
33
|
+
|
|
34
|
+
Read the full documentation at [CommandCode.ai/docs](https://commandcode.ai/docs).
|
|
@@ -29,6 +29,7 @@ The model catalog — every id `/model`, `--model`, `model:effort` shorthand, an
|
|
|
29
29
|
| `Qwen/Qwen3.7-Max` | Qwen 3.7 Max | 1M | — | $2.5/$7.5 | frontier coding & long-horizon agent execution |
|
|
30
30
|
| `Qwen/Qwen3.7-Plus` | Qwen 3.7 Plus | 1M | — | $0.4/$1.6 | agentic coding & reasoning at lower cost |
|
|
31
31
|
| `Qwen/Qwen3.7-Flash` | Qwen 3.7 Flash | 1M | — | $0.03/$0.13 | fast low-cost agentic coding & reasoning |
|
|
32
|
+
| `Qwen/Qwen3.8-Max` | Qwen 3.8 Max | 1M | low, medium, xhigh | $2/$6 | autonomous long-horizon coding & professional work |
|
|
32
33
|
| `stepfun/Step-3.7-Flash` | Step 3.7 Flash | 256K | — | $0.2/$1.15 | multimodal sparse-MoE reasoning |
|
|
33
34
|
| `stepfun/Step-3.5-Flash` | Step 3.5 Flash | 1M | — | $0.1/$0.3 | fast sparse-MoE agentic reasoning |
|
|
34
35
|
| `tencent/hy3-paid` | Tencent Hy3 | 262K | — | $0.14/$0.58 | sparse-MoE reasoning & agentic tool use |
|
|
@@ -372,6 +372,7 @@ A: Join our Discord at https://commandcode.ai/discord, report issues on GitHub,
|
|
|
372
372
|
|
|
373
373
|
### Installation
|
|
374
374
|
- "command not found" after install: Ensure global npm bin directory is in PATH. Run npm config get prefix, add <prefix>/bin to PATH, restart terminal.
|
|
375
|
+
- Node too old: Command Code requires Node.js 22+ (current LTS). On older Node it exits with an upgrade message; older builds instead crashed with "SyntaxError: The requested module 'fs/promises' does not provide an export named 'glob'". Fix: install Node LTS with `npm install -g n && n lts` (or `nvm install --lts && nvm use --lts`, or download from https://nodejs.org), then `npm i -g command-code` so the bin relinks to the new Node. Every upgrade route (n, nvm, fnm, Volta, asdf, Homebrew, winget, NodeSource): https://commandcode.ai/docs/troubleshooting/common-issues#upgrading-node-js
|
|
375
376
|
|
|
376
377
|
### Authentication
|
|
377
378
|
- Login fails or session expired: Run cmd logout then cmd login. If still failing, delete ~/.commandcode/auth.json and retry.
|