command-code 1.23.0 → 1.23.2
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,16 @@
|
|
|
1
1
|
# command-code
|
|
2
2
|
|
|
3
|
+
## 1.23.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- refactor: remove unused telemetry dependencies
|
|
8
|
+
- fix: remove the expired GPT-5.6 Terra/Luna 50% discount
|
|
9
|
+
|
|
10
|
+
## 1.23.1
|
|
11
|
+
|
|
12
|
+
- fix: improve deferred tool call reliability
|
|
13
|
+
|
|
3
14
|
## 1.23.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -53,8 +53,8 @@ The model catalog — every id `/model`, `--model`, `model:effort` shorthand, an
|
|
|
53
53
|
| Id (use EXACTLY this) | Name | Context | Efforts | $/1M in/out · cache read | Min plan | Best for |
|
|
54
54
|
|---|---|---|---|---|---|---|
|
|
55
55
|
| `gpt-5.6-sol` | GPT-5.6 Sol | 1.05M | low, medium, high, xhigh, max | $5/$30 · cache $0.5 (write $6.25) | Pro and above | frontier model for complex professional work |
|
|
56
|
-
| `gpt-5.6-terra` | GPT-5.6 Terra | 1.05M | low, medium, high, xhigh, max | $
|
|
57
|
-
| `gpt-5.6-luna` | GPT-5.6 Luna | 1.05M | low, medium, high, xhigh, max | $0.1
|
|
56
|
+
| `gpt-5.6-terra` | GPT-5.6 Terra | 1.05M | low, medium, high, xhigh, max | $2/$12 · cache $0.2 (write $2.5) | Pro and above | balances intelligence and cost |
|
|
57
|
+
| `gpt-5.6-luna` | GPT-5.6 Luna | 1.05M | low, medium, high, xhigh, max | $0.2/$1.2 · cache $0.02 (write $0.25) | Go and above | optimized for cost-sensitive workloads |
|
|
58
58
|
| `gpt-5.5` | GPT-5.5 | — | low, medium, high, xhigh | $5/$30 · cache $0.5 (write $0) | Pro and above | latest frontier model for general complex work |
|
|
59
59
|
| `gpt-5.4` | GPT-5.4 | 400K | low, medium, high, xhigh | $2.5/$15 · cache $0.25 (write $0) | Pro and above | frontier model for general complex work |
|
|
60
60
|
| `gpt-5.3-codex` | GPT-5.3 Codex | 400K | low, medium, high, xhigh | $2/$8 · cache $0.5 (write $0) | Pro and above | frontier coding model |
|
|
@@ -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` |
|