command-code 1.4.5 → 1.5.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 +13 -0
- package/dist/bundled/command-code-knowledge/reference/custom-slash-commands.md +1 -2
- package/dist/bundled/command-code-knowledge/reference/models.md +1 -0
- package/dist/bundled/command-code-knowledge/reference/product-help.md +1 -1
- package/dist/bundled/command-code-knowledge/reference/sessions.md +0 -1
- package/dist/cli.mjs +5 -5
- package/package.json +3 -3
- package/vsix/commandcode-vscode.vsix +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# command-code
|
|
2
2
|
|
|
3
|
+
## 1.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat: vision support for text-only models
|
|
8
|
+
|
|
9
|
+
## 1.4.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- feat: add Qwen 3.7 Flash
|
|
14
|
+
- fix: retry mid-stream connection drops instead of killing the turn
|
|
15
|
+
|
|
3
16
|
## 1.4.5
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -32,7 +32,6 @@ Every built-in command, grouped by area. Aliases are shown in parentheses on the
|
|
|
32
32
|
| `/clone` | Clone the current branch into a new session and switch to it (never takes an argument) |
|
|
33
33
|
| `/tree` | Browse the session tree and jump to any point in it |
|
|
34
34
|
| `/rewind` | Restore to a previous checkpoint (press Esc twice) |
|
|
35
|
-
| `/session` | Show session info: id, model, messages, context |
|
|
36
35
|
| `/session-file` | Show the current session id and session file path |
|
|
37
36
|
| `/export [html\|jsonl\|md]` or `/export <path>` | Export the session - a bare format keyword or a file path; HTML is the default format |
|
|
38
37
|
| `/share [gist [html\|jsonl\|md]]` | Share the conversation - bare `/share` copies a link; `/share gist` posts a secret GitHub gist |
|
|
@@ -146,7 +145,7 @@ Some optional-argument commands do something useful with no argument instead of
|
|
|
146
145
|
Most commands are **blocked mid-turn** - mode flips, session switches, model changes, compaction, and anything that would race an active turn waits until the agent finishes. A deliberate set of read-only or local commands stays available while a turn is running:
|
|
147
146
|
|
|
148
147
|
- `/trace` - capture the live trace id of the running turn (its main purpose)
|
|
149
|
-
- `/session-file
|
|
148
|
+
- `/session-file` - read-only session facts
|
|
150
149
|
- `/copy` - clipboard only
|
|
151
150
|
- `/todos` (also `ctrl+x`) - edits local todo state, most useful mid-turn while a plan is being driven
|
|
152
151
|
- `/exit` / `/quit` - always available
|
|
@@ -28,6 +28,7 @@ The model catalog — every id `/model`, `--model`, `model:effort` shorthand, an
|
|
|
28
28
|
| `Qwen/Qwen3.6-Plus` | Qwen 3.6 Plus | — | — | $0.5/$3 | agentic coding & reasoning |
|
|
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
|
+
| `Qwen/Qwen3.7-Flash` | Qwen 3.7 Flash | 1M | — | $0.03/$0.13 | fast low-cost agentic coding & reasoning |
|
|
31
32
|
| `stepfun/Step-3.7-Flash` | Step 3.7 Flash | 256K | — | $0.2/$1.15 | multimodal sparse-MoE reasoning |
|
|
32
33
|
| `stepfun/Step-3.5-Flash` | Step 3.5 Flash | 1M | — | $0.1/$0.3 | fast sparse-MoE agentic reasoning |
|
|
33
34
|
| `tencent/hy3-paid` | Tencent Hy3 | 262K | — | $0.14/$0.58 | sparse-MoE reasoning & agentic tool use |
|
|
@@ -51,7 +51,6 @@
|
|
|
51
51
|
- /session-file: Show the current session id and path to the on-disk session file
|
|
52
52
|
- /copy: Copy the last response to the clipboard
|
|
53
53
|
- /export [path]: Export session — /export [html|jsonl|md] or a file path
|
|
54
|
-
- /session: Show session info: id, model, messages, context
|
|
55
54
|
- /changelog: See what's new in Command Code
|
|
56
55
|
- /hotkeys: Show all keyboard shortcuts
|
|
57
56
|
- /todos: Manage the session todo list — x to remove an item, c to clear
|
|
@@ -285,6 +284,7 @@ Valid model ids (the /model catalog — use these EXACT ids):
|
|
|
285
284
|
- Qwen/Qwen3.6-Plus
|
|
286
285
|
- Qwen/Qwen3.7-Max
|
|
287
286
|
- Qwen/Qwen3.7-Plus
|
|
287
|
+
- Qwen/Qwen3.7-Flash
|
|
288
288
|
- stepfun/Step-3.7-Flash
|
|
289
289
|
- stepfun/Step-3.5-Flash
|
|
290
290
|
- tencent/hy3-paid
|
|
@@ -187,7 +187,6 @@ Lineage is recorded on the fork's meta: `parentSessionId` (the source session) a
|
|
|
187
187
|
| ----------- | ---------------- |
|
|
188
188
|
| `/rename <name>` | Rename the current session; bare `/rename` auto-generates a title with the model |
|
|
189
189
|
| `/name` | Alias of `/rename`; bare `/name` shows the current name |
|
|
190
|
-
| `/session` | Show session info: id, name, model, message counts, tree entries, tokens, cost, context usage, transcript path |
|
|
191
190
|
| `/session-file` | Show the current session id and transcript path |
|
|
192
191
|
| `/status` | Show comprehensive environment status |
|
|
193
192
|
| `/trace` | Copy the current OpenTelemetry trace id (for support); works mid-turn, and persisted trace ids survive resume |
|