command-code 1.22.0 → 1.23.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/CHANGELOG.md +10 -0
- package/dist/bundled/command-code-knowledge/reference/models.md +2 -1
- package/dist/bundled/command-code-knowledge/reference/product-help.md +1 -0
- package/dist/bundled/mod-builder/reference/hooks-and-events.md +1 -1
- package/dist/cli.mjs +5 -5
- package/package.json +4 -4
- package/vsix/commandcode-vscode.vsix +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -63,7 +63,8 @@ The model catalog — every id `/model`, `--model`, `model:effort` shorthand, an
|
|
|
63
63
|
|
|
64
64
|
| Id (use EXACTLY this) | Name | Context | Efforts | $/1M in/out · cache read | Min plan | Best for |
|
|
65
65
|
|---|---|---|---|---|---|---|
|
|
66
|
-
| `google/gemini-3.
|
|
66
|
+
| `google/gemini-3.7-flash` | Gemini 3.7 Flash | 1.05M | low, medium, high | $0.75/$3.75 · cache $0.075 (write $0.04167) | GOAT and above | higher-quality coding & agentic workflows, fewer tokens |
|
|
67
|
+
| `google/gemini-3.6-flash` | Gemini 3.6 Flash | 1M | low, medium, high | $1.5/$7.5 · cache $0.15 | Pro and above | previous Gemini Flash, still fast & capable |
|
|
67
68
|
| `google/gemini-3.5-flash` | Gemini 3.5 Flash | 1M | low, medium, high | $1.5/$9 · cache $0.15 | Pro and above | Pro-level coding proficiency, parallel agentic execution |
|
|
68
69
|
| `google/gemini-3.5-flash-lite` | Gemini 3.5 Flash Lite | 1M | low, medium, high | $0.3/$2.5 · cache $0.03 | Pro and above | upgraded agentic capabilities, ideal for subagents |
|
|
69
70
|
| `google/gemini-3.1-flash-lite` | Gemini 3.1 Flash Lite | 1M | low, medium, high | $0.25/$1.5 · cache $0.03 | Pro and above | high-volume workhorse model with implicit caching |
|
|
@@ -290,6 +290,7 @@ Valid model ids (the /model catalog — use these EXACT ids):
|
|
|
290
290
|
- stepfun/Step-3.5-Flash
|
|
291
291
|
- tencent/hy3-paid
|
|
292
292
|
- tencent/Hy3
|
|
293
|
+
- google/gemini-3.7-flash
|
|
293
294
|
- google/gemini-3.6-flash
|
|
294
295
|
- google/gemini-3.5-flash
|
|
295
296
|
- google/gemini-3.5-flash-lite
|
|
@@ -235,7 +235,7 @@ One sync sink, fan out with `createEventBus`. Payloads are snapshots - never liv
|
|
|
235
235
|
| `config_setting_changed` | a setting changed through the `config` tool | `setting`, `value`, `previousValue?` |
|
|
236
236
|
| `continuation_recovery` | a turn was auto-continued (pause/empty/length/intent) | `kind`, `attempt`, `maxAttempts` |
|
|
237
237
|
| `tool_input_coerced` | ModelClient rescued malformed (array/null) tool input | `rawType`, `recovered` |
|
|
238
|
-
| `tool_input_repaired` | repair layer
|
|
238
|
+
| `tool_input_repaired` | repair layer rewrote tool input pre-execution (fires whether or not the call then ran) | `rulesFired`, `hintCount`, `receivedKeys`, `repaired` |
|
|
239
239
|
| `mod_error` | a mod hook threw (any phase), or a mod tool collided with an existing tool | `modId`, `hook`, `error` |
|
|
240
240
|
| `interrupted` | abort observed | - |
|
|
241
241
|
| `run_error` | non-retryable failure | the raw `Error` |
|