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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # command-code
2
2
 
3
+ ## 1.23.1
4
+
5
+ - fix: improve deferred tool call reliability
6
+
7
+ ## 1.23.0
8
+
9
+ ### Minor Changes
10
+
11
+ - feat: Add Gemini 3.7 Flash
12
+
3
13
  ## 1.22.0
4
14
 
5
15
  ### Minor Changes
@@ -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.6-flash` | Gemini 3.6 Flash | 1M | low, medium, high | $1.5/$7.5 · cache $0.15 | Pro and above | higher-quality coding & agentic workflows, fewer tokens |
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 healed tool input pre-execution | `rulesFired`, `hintCount`, `receivedKeys` |
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` |