command-code 0.52.5 → 1.0.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.
Files changed (61) hide show
  1. package/CHANGELOG.md +2541 -0
  2. package/dist/bundled/command-code-knowledge/SKILL.md +52 -0
  3. package/dist/bundled/command-code-knowledge/reference/checkpoints.md +366 -0
  4. package/dist/bundled/command-code-knowledge/reference/custom-agents.md +91 -0
  5. package/dist/bundled/command-code-knowledge/reference/custom-slash-commands.md +345 -0
  6. package/dist/bundled/command-code-knowledge/reference/headless.md +234 -0
  7. package/dist/bundled/command-code-knowledge/reference/hooks.md +1097 -0
  8. package/dist/bundled/command-code-knowledge/reference/mcp.md +626 -0
  9. package/dist/bundled/command-code-knowledge/reference/memory.md +98 -0
  10. package/dist/bundled/command-code-knowledge/reference/models.md +81 -0
  11. package/dist/bundled/command-code-knowledge/reference/permissions.md +412 -0
  12. package/dist/bundled/command-code-knowledge/reference/plan-mode.md +101 -0
  13. package/dist/bundled/command-code-knowledge/reference/product-help.md +421 -0
  14. package/dist/bundled/command-code-knowledge/reference/skills.md +993 -0
  15. package/dist/bundled/mod-builder/SKILL.md +128 -0
  16. package/dist/bundled/mod-builder/examples/block-dangerous-commands.ts +41 -0
  17. package/dist/bundled/mod-builder/examples/custom-entry-renderer.ts +32 -0
  18. package/dist/bundled/mod-builder/examples/custom-tool.ts +53 -0
  19. package/dist/bundled/mod-builder/examples/flags-and-options.ts +29 -0
  20. package/dist/bundled/mod-builder/examples/input-shortcuts.ts +41 -0
  21. package/dist/bundled/mod-builder/examples/kitchen-sink.ts +110 -0
  22. package/dist/bundled/mod-builder/examples/lifecycle-hooks.ts +64 -0
  23. package/dist/bundled/mod-builder/examples/observe-events.ts +30 -0
  24. package/dist/bundled/mod-builder/examples/slash-command.ts +33 -0
  25. package/dist/bundled/mod-builder/reference/api.md +81 -0
  26. package/dist/bundled/mod-builder/reference/hooks-and-events.md +308 -0
  27. package/dist/bundled/mod-builder/reference/overview.md +161 -0
  28. package/dist/bundled/mod-builder/reference/packaging.md +63 -0
  29. package/dist/bundled/mod-builder/reference/ui.md +63 -0
  30. package/dist/bundled/mod-builder/reference/verify.md +58 -0
  31. package/dist/bundled/skill-builder/SKILL.md +104 -0
  32. package/dist/cli.mjs +5 -5
  33. package/package.json +35 -26
  34. package/vsix/commandcode-vscode.vsix +0 -0
  35. /package/{skills → dist/bundled}/agent-browser/SKILL.md +0 -0
  36. /package/{skills → dist/bundled}/design/SKILL.md +0 -0
  37. /package/{skills → dist/bundled}/design/references/border.md +0 -0
  38. /package/{skills → dist/bundled}/design/references/button.md +0 -0
  39. /package/{skills → dist/bundled}/design/references/checkup.md +0 -0
  40. /package/{skills → dist/bundled}/design/references/color.md +0 -0
  41. /package/{skills → dist/bundled}/design/references/create.md +0 -0
  42. /package/{skills → dist/bundled}/design/references/design-html.md +0 -0
  43. /package/{skills → dist/bundled}/design/references/deslop.md +0 -0
  44. /package/{skills → dist/bundled}/design/references/finish.md +0 -0
  45. /package/{skills → dist/bundled}/design/references/interaction.md +0 -0
  46. /package/{skills → dist/bundled}/design/references/layout.md +0 -0
  47. /package/{skills → dist/bundled}/design/references/motion.md +0 -0
  48. /package/{skills → dist/bundled}/design/references/redesign.md +0 -0
  49. /package/{skills → dist/bundled}/design/references/refine.md +0 -0
  50. /package/{skills → dist/bundled}/design/references/relayout.md +0 -0
  51. /package/{skills → dist/bundled}/design/references/report-html.md +0 -0
  52. /package/{skills → dist/bundled}/design/references/responsive.md +0 -0
  53. /package/{skills → dist/bundled}/design/references/review.md +0 -0
  54. /package/{skills → dist/bundled}/design/references/setup.md +0 -0
  55. /package/{skills → dist/bundled}/design/references/shadow.md +0 -0
  56. /package/{skills → dist/bundled}/design/references/smell.md +0 -0
  57. /package/{skills → dist/bundled}/design/references/surface.md +0 -0
  58. /package/{skills → dist/bundled}/design/references/tokenize.md +0 -0
  59. /package/{skills → dist/bundled}/design/references/typeset.md +0 -0
  60. /package/{skills → dist/bundled}/design/references/voice.md +0 -0
  61. /package/{skills → dist/bundled}/design/references/writing.md +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,2541 @@
1
+ # command-code
2
+
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - feat: v1 is here! full rewrite of tools, agent, loop, architecture, TUI, and more
8
+ - feat: `enter_worktree` / `exit_worktree` tools for isolated git worktrees per session
9
+ - feat: `plan_review` tool to open plan review on demand (first of its kind)
10
+ - feat: `mods` to add your own tools, hooks, and commands (beta)
11
+ - feat: `/goal` supervision keeps the agent on track
12
+ - feat: `task_(create, update, list, get)` task system
13
+ - feat: `task_(output, stop)` for background process control
14
+ - feat: `cron_(create, delete, list)` scheduled agents
15
+ - feat: `/agents` overhaul, create by agents by asking
16
+ - feat: `edit_file` overhaul with fuzzy matching and stale-write guards
17
+ - feat: `write_file` overhaul withreliable overwrite checks
18
+ - feat: `read_file` shows images to vision models
19
+ - feat: `ask_user_question` for structured multiple-choice prompts
20
+ - feat: `get_diagnostics` reads IDE errors and warnings
21
+ - feat: `shell_command` with background tasks, monitoring, and a read-only fast path
22
+ - feat: `glob` / `grep` / `read_directory` search tools handle absolute and UNC paths
23
+ - feat: `web_search` with domain filters and source citations
24
+ - feat: `web_fetch` with pagination, formats, caching, and URL guards
25
+ - feat: `config` tool to list, get, and set settings from the CLI
26
+ - feat: `--model`, `--effort`, `--theme`, and `--config` CLI flags
27
+ - feat: `run_command` runs slash commands by asking `cmd` for you
28
+ - feat: `powershell` first-class PowerShell tool on Windows
29
+ - feat: `/import` setup (skills, prompts, agents, commands) from other agents
30
+ - feat: `todo_write` live TODOS panel and `/todos` manager
31
+ - feat: `/tree` to navigate and branch your conversation history
32
+ - feat: `/mode` commands and `/new` alias for `/clear`
33
+ - feat: `/fork` a conversation into a new session
34
+ - feat: `/reload` to restart and resume the session
35
+ - feat: `/rewind` to restore an earlier checkpoint
36
+ - feat: `/context` shows context-window usage
37
+ - feat: `/share` and `/unshare` a session via link
38
+ - feat: `/export` and `/copy` your conversation
39
+ - feat: `/memory` to manage memory files
40
+ - feat: `/hotkeys` keyboard-shortcut reference
41
+ - feat: stash your input prompt with `Ctrl+S`
42
+ - feat: bundled skill: `command-code-knowledge` so `cmd` knows about itself
43
+ - feat: bundled skill: `mod-builder ` so `cmd` can build mods for you
44
+ - feat: bundled skill: `skill-builder` so `cmd` can build skills for you
45
+ - feat: `-p --output-format json` for cmd headless mode and scripting
46
+ - feat: terminal UI upgrades: streaming, events, and better error handling
47
+ - feat: major improvement to central permission engine, safe by default
48
+ - feat: VS Code shows session title and status in terminal tab title
49
+ - feat: MCP full-spec tool results, annotations, and live tool updates
50
+ - feat: MCP progress notifications, timeouts, and cancellation
51
+ - feat: hooks for tool and session lifecycle events
52
+ - feat: complete overhaul of agent skills support
53
+ - feat: on-demand command explanations (`ctrl+e`)
54
+ - feat: per-agent models for sub-agents
55
+ - feat: per-session scratchpad
56
+ - feat: full Windows support
57
+ - feat: configurable keybindings
58
+ - feat: inline image paste tokens
59
+ - feat: shell-style args in custom commands
60
+ - feat: instant replies, background titling
61
+ - feat: redesigned `/session` and `/config` panels
62
+ - feat: compaction shows per-event and total savings
63
+ - perf: no more out-of-memory on long sessions
64
+ - fix: errors surface instead of a silent turn
65
+ - fix: usage-limit errors surface right away
66
+ - fix: reliable prompts and grants that stick
67
+ - fix: `Esc` no longer hangs on a prompt
68
+ - fix: pasted images reach the model
69
+ - fix: sessions survive a failed first turn
70
+ - fix: pre-v1 sessions are backwards compatible
71
+ - fix: `/clear` stops background taste-learning
72
+ - fix: one picker for every `/resume` path
73
+ - fix: queued messages faster turns
74
+ - fix: `/usage` bar matches balance
75
+ - fix: file links valid on every OS
76
+ - fix: consistent look across overlays
77
+ - feat: per tool major improvements below:
78
+ - feat: `edit_file` fuzzy-matching cascade tolerates whitespace and typography drift
79
+ - feat: `edit_file` stale-write protection rejects edits when the file changed on disk
80
+ - feat: `edit_file` ambiguous match errors with a count instead of a silent wrong edit
81
+ - feat: `edit_file` empty match creates the file, missing file suggests the closest sibling
82
+ - fix: `edit_file` atomic writes, BOM and CRLF preserved, line-numbered result snippet
83
+ - fix: `write_file` clamped and long-line reads can satisfy the overwrite check
84
+ - fix: `write_file` exact-match required so unseen trailing content is never clobbered
85
+ - fix: `write_file` accurate partial-read error instead of a misleading not-read-yet
86
+ - fix: `write_file` routes to `edit_file` for files above the read cap
87
+ - feat: `read_file` shows images to vision models
88
+ - fix: `read_file` offset and limit memory handling
89
+ - feat: `web_search` domain allow and block filtering, subdomain-aware
90
+ - feat: `web_search` mandatory source citations
91
+ - feat: `web_search` minimum query length and result-count clamping
92
+ - feat: `web_search` abort-aware, marked read-only and concurrency-safe
93
+ - feat: `web_fetch` `format` param for markdown, text, or html
94
+ - feat: `web_fetch` pagination over a large window, exempt from the output cap
95
+ - feat: `web_fetch` response caching with a TTL
96
+ - feat: `web_fetch` per-call timeout and URL safety guard
97
+ - feat: `web_fetch` cross-host redirect reporting
98
+ - feat: `task_(create, update, list, get)` persistent store with states, owners, and dependencies
99
+ - feat: `task_*` writes to disk so restarts and sub-agents share the list
100
+ - feat: `task_*` prompt-free and plan-safe
101
+ - feat: `task_*` friendly feed rows instead of raw JSON
102
+ - feat: `task_output` blocking wait or instant peek with delta streaming
103
+ - feat: `task_output` tail truncation points at the on-disk log
104
+ - feat: `task_stop` via a shared registry with clear errors
105
+ - feat: `todo_write` one live TODOS panel above the input
106
+ - feat: `todo_write` sticky user edits the model cannot undo
107
+ - feat: `todo_write` `/todos` interactive manager (you `x` or `c` an item)
108
+ - feat: `todo_write` honest completion reports that attribute user edits
109
+ - fix: `todo_write` warns the model when an update drops unfinished items
110
+ - feat: `enter_worktree` / `exit_worktree` switch a running session into an isolated worktree and back
111
+ - feat: `exit_worktree` removal scope-locked to the session's own worktree, fail-closed on dirty state
112
+ - feat: `enter_worktree` hardened git plumbing and non-interactive fetch
113
+ - feat: `enter_worktree` / `exit_worktree` excluded from sub-agents, hidden in plan mode
114
+ - feat: `enter_worktree` `createHook`, `removeHook`, sparse paths, and symlink dirs
115
+ - feat: `config` list, get, and set every setting from one registry
116
+ - feat: `config` reads auto-allowed and plan-safe, writes always confirm
117
+ - feat: `config` boolean toggles and known model ids so the model stops guessing
118
+ - feat: `config` writes report previous and new values and sync live state
119
+ - feat: `run_command` runs any built-in, custom, skill, or mod slash command
120
+ - feat: `run_command` validates the command exists so the model cannot invent one
121
+ - feat: `run_command` dispatches when the turn goes idle, never mid-turn
122
+ - feat: `run_command` value commands apply directly, bare form opens the picker
123
+ - feat: `powershell` discovers pwsh 7+, falls back to Windows PowerShell 5.1
124
+ - feat: `powershell` fail-closed parser with a destructive-removal circuit breaker
125
+ - feat: `powershell` persists working directory and tracks native and cmdlet exit codes
126
+ - feat: `shell_command` read-only fast path runs safe commands without prompting
127
+ - feat: `shell_command` background tasks with `shell_tasks` and `bash_output`
128
+ - feat: `shell_command` Windows routes to PowerShell or cmd.exe
129
+ - fix: `glob` / `grep` / `read_directory` recognize absolute and UNC paths
130
+ - fix: `kill_shell` nullable target schema so strict providers can call it
131
+ - fix: `kill_shell` works by pid, port, or task id on Windows too
132
+ - fix: `monitor_command` wakes the model when the monitored process exits
133
+ - fix: `monitor_command` settles by task id so a recycled pid cannot settle the wrong task
134
+ - fix: `monitor_command` stopped tasks stay silent
135
+
136
+ ## 0.52.5
137
+
138
+ ### Patch Changes
139
+
140
+ - feat: add Laguna S 2.1
141
+ - feat: a free main model now runs the background tasks too, so a free session costs nothing
142
+
143
+ ## 0.52.4
144
+
145
+ ### Patch Changes
146
+
147
+ - feat: add Gemini 3.6 Flash and Gemini 3.5 Flash Lite
148
+
149
+ ## 0.52.3
150
+
151
+ ### Patch Changes
152
+
153
+ - improve flag parsing for `--model` and `--effort` in `cmd --help` and `cmd --list-models`
154
+
155
+ ## 0.52.2
156
+
157
+ ### Patch Changes
158
+
159
+ - chore: model updates
160
+
161
+ ## 0.52.1
162
+
163
+ ### Patch Changes
164
+
165
+ - feat: improve credit warning and include all credit pools in it
166
+
167
+ ## 0.52.0
168
+
169
+ ### Minor Changes
170
+
171
+ - fix: abort hang issues with permission prompts #2782
172
+ - fix: interrupt no longer hangs the loop during a tool permission prompt
173
+ -
174
+
175
+ ## 0.51.0
176
+
177
+ ### Minor Changes
178
+
179
+ - feat: Kimi K3 is now live in Command Code
180
+
181
+ ## 0.50.0
182
+
183
+ ### Minor Changes
184
+
185
+ - feat: last minor update before v1, next up will all be patches
186
+ - feat: add thinkingmachines/inkling model inference improvements
187
+
188
+ ## 0.45.0
189
+
190
+ ### Minor Changes
191
+
192
+ - feat: add thinkingmachines/inkling model
193
+
194
+ ## 0.44.1
195
+
196
+ ### Patch Changes
197
+
198
+ - feat: add Muse Spark 1.1
199
+
200
+ ## 0.44.0
201
+
202
+ ### Minor Changes
203
+
204
+ - feat: add OpenAI GPT-5.6 Sol, Terra, and Luna
205
+
206
+ ## 0.43.1
207
+
208
+ ### Patch Changes
209
+
210
+ - auto-updater script (run `npm i -g command-code@latest`)
211
+
212
+ ## 0.43.0
213
+
214
+ ### Minor Changes
215
+
216
+ - fix: broken auto-updater for some (run `npm i -g command-code@latest`)
217
+
218
+ ### Patch Changes
219
+
220
+ - 96b7611: Remove the ineffective `bin/run.mjs` fallback. npm normalizes non-bin-target
221
+ files to 644 on install, so `run.mjs` could never be an executable symlink
222
+ target — any install pointed at it broke with `permission denied`. The single
223
+ canonical launcher is `dist/index.mjs`; `start` / `link:local` scripts now point
224
+ there. Already-bricked installs need one `npm i -g command-code@latest`, since a
225
+ dead symlink runs no code.
226
+
227
+ ## 0.42.0
228
+
229
+ ### Minor Changes
230
+
231
+ - feat: memory management and sliding session windowing
232
+
233
+ ## 0.41.4
234
+
235
+ ### Patch Changes
236
+
237
+ - feat: Grok 4.5 is now available in Command Code
238
+
239
+ ## 0.41.3
240
+
241
+ ### Patch Changes
242
+
243
+ - feat: tencent/hy3 free model
244
+
245
+ ## 0.41.2
246
+
247
+ ### Patch Changes
248
+
249
+ - chore: trim unused internals from the published CLI bundle
250
+
251
+ ## 0.41.1
252
+
253
+ ### Patch Changes
254
+
255
+ - feat: send CLI telemetry to Command Code
256
+
257
+ ## 0.41.0
258
+
259
+ ### Minor Changes
260
+
261
+ - feat: gateway capacity improvements
262
+ - fix: document RTL/bidi support in the `/design` skill
263
+ - fix: warn on sub-16px input font-size to prevent iOS Safari zoom
264
+
265
+ ### Patch Changes
266
+
267
+ ## 0.40.17
268
+
269
+ ### Patch Changes
270
+
271
+ - feat: add SessionStart hook with additionalContext injection
272
+ - fix(shell): run `!` commands via PowerShell/cmd.exe on Windows
273
+ - fix: add `alt+m` fallback for mode toggle where Shift+Tab fails on Windows
274
+
275
+ ## 0.40.16
276
+
277
+ ### Patch Changes
278
+
279
+ - feat: add Claude Sonnet 5 model
280
+
281
+ ## 0.40.15
282
+
283
+ ### Patch Changes
284
+
285
+ - refactor: read_file now reads huge files safely and reports exactly how much of the file it saw
286
+
287
+ ## 0.40.14
288
+
289
+ ### Patch Changes
290
+
291
+ - fix(tui): edit-file diff no longer crashes on non-string oldValue/newValue
292
+ - fix: search tool falls back to Node.js search when ripgrep and grep are unavailable
293
+ - fix: use platform-correct binary name (`cmdc` on Windows) for self-invocation and all CLI messages
294
+
295
+ ## 0.40.13
296
+
297
+ ### Patch Changes
298
+
299
+ - fix: transcript expand via Ctrl+Y in VS Code/Cursor/Windsurf terminals
300
+ - fix: Ctrl+Z undoes input instead of suspending the process
301
+
302
+ ## 0.40.12
303
+
304
+ ### Patch Changes
305
+
306
+ - fix: plan mode tool unavailable bug
307
+ - Fixed theme switching to properly reset the TUI
308
+
309
+ ## 0.40.11
310
+
311
+ ### Patch Changes
312
+
313
+ - fix: improved headers for better compatibility with providers
314
+
315
+ ## 0.40.10
316
+
317
+ ### Patch Changes
318
+
319
+ - fix: resolve interactive exit hangs, leaked MCP orphans, and overloaded Ctrl+D
320
+
321
+ ## 0.40.9
322
+
323
+ ### Patch Changes
324
+
325
+ - feat: improve how vision models read images by path
326
+ - feat: add `/trace` to show the current request's trace ID to help in support debugging
327
+ - feat: add `/session-file` to show the current session id and the path to its on-disk session file
328
+ - fix: `/goal` supervision now ends the session when the goal is cleared
329
+ - fix: Refuse to set a goal while `/compact` or `/update` are running
330
+ - fix: Cleanup processes on `/exit` or double Ctrl+C; Saving 2-3 seconds on shutdown
331
+ - fix: Show trace ID when taste onboarding fails for support debugging
332
+
333
+ ## 0.40.8
334
+
335
+ ### Patch Changes
336
+
337
+ - fix: Windows image attachment
338
+ - fix: slash menu now reopens correctly when backspacing after a command selection
339
+
340
+ ## 0.40.7
341
+
342
+ ### Patch Changes
343
+
344
+ - feat: add tracked background shell tasks with persistent output logs and task listing
345
+ - feat: add separate monitor commands for long-running output streams
346
+ - feat: add bounded monitor runs and monitor event reads
347
+ - feat: wake the assistant from live monitor output
348
+ - feat: add background shell and monitor task panel
349
+ - feat: schedule monitor wakeups without classifier calls
350
+
351
+ ## 0.40.6
352
+
353
+ ### Patch Changes
354
+
355
+ - feat: add GLM-5.2 Fast model
356
+ - fix: cleaner tool badges in the feed
357
+ - fix: Press Esc to cancel taste onboarding runs cleanly
358
+
359
+ ## 0.40.5
360
+
361
+ ### Patch Changes
362
+
363
+ - feat: show which usage window you hit (5-hour or weekly) and when it resets, with /upgrade and /extra next steps
364
+ - fix: `/exit` no longer hangs when a stdio MCP server is connected
365
+
366
+ ## 0.40.4
367
+
368
+ ### Patch Changes
369
+
370
+ - feat: 5-hour and weekly usage limits
371
+
372
+ ## 0.40.3
373
+
374
+ ### Patch Changes
375
+
376
+ - feat: add Sakana Fugu Ultra (Max plan and above)
377
+
378
+ ## 0.40.2
379
+
380
+ ### Patch Changes
381
+
382
+ - fix: stamp the active model on tool-input repair #2231
383
+
384
+ ## 0.40.1
385
+
386
+ ### Patch Changes
387
+
388
+ - feat: CLI-native security and privacy improvements
389
+ - feat: web tools are now exempted from 25k token limit
390
+ - fix: tolerate corrupt lines when listing sessions instead of dumping stack traces
391
+
392
+ ## 0.40.0
393
+
394
+ ### Minor Changes
395
+
396
+ - feat: improve auto updater via a non-blocking async check
397
+ - feat: `/fork` - fork a conversation into a new session
398
+ - feat: `/reload` to restart Command Code and resume the current session
399
+
400
+ ## 0.39.2
401
+
402
+ ### Patch Changes
403
+
404
+ - fix: Hide prompt bodies for custom slash commands on resuming/sharing sessions
405
+
406
+ ## 0.39.1
407
+
408
+ ### Patch Changes
409
+
410
+ - fix: stream progress snapshots for long-running shell commands
411
+ - feat: `/theme` slash command to switch between dark and light themes at runtime
412
+ - feat: stash input prompt with Ctrl+S (#2179)
413
+
414
+ ## 0.39.0
415
+
416
+ ### Minor Changes
417
+
418
+ - chore: MiniMax M3 free promo is now ended (#2178)
419
+
420
+ ## 0.38.7
421
+
422
+ ### Patch Changes
423
+
424
+ - refactor: remove per-model usage breakdown from the `/usage` overlay and usage API
425
+
426
+ ## 0.38.6
427
+
428
+ ### Patch Changes
429
+
430
+ - feat: reset user limits for the promo
431
+
432
+ ## 0.38.5
433
+
434
+ ### Patch Changes
435
+
436
+ - feat: scope taste learning to be enabled/disabled at the project and user level
437
+ - fix: stream progress snapshots for long-running shell commands
438
+ - fix: harden shell permission safety for compound and dynamic commands
439
+ - fix: `/goal` processes pasted images and IDE context (active file + selection) to the model
440
+
441
+ ## 0.38.4
442
+
443
+ ### Patch Changes
444
+
445
+ - feat: pasted text now shows the text and number of lines #1692
446
+
447
+ ## 0.38.3
448
+
449
+ ### Patch Changes
450
+
451
+ - feat: add GLM-5.2 model support (#2147)
452
+
453
+ ## 0.38.2
454
+
455
+ ### Patch Changes
456
+
457
+ - fix: prevent Windows freeze in command/tool execution (#2132)
458
+ - fix: normalize Windows path separators across taste, sessions, telemetry, and file picker
459
+ - feat: `/theme` slash command to switch between dark and light themes
460
+
461
+ ## 0.38.1
462
+
463
+ ### Patch Changes
464
+
465
+ - feat: add Kimi K2.7 Code HighSpeed
466
+
467
+ ## 0.38.0
468
+
469
+ ### Minor Changes
470
+
471
+ - MiniMax M3 Promo
472
+
473
+ ## 0.37.2
474
+
475
+ ### Patch Changes
476
+
477
+ - 77bb0f1: feat: print how to resume the session on exit
478
+
479
+ Leaving the TUI (e.g. double Ctrl+C) now always prints `Resume this session with: <cli> --resume <id>`, falling back to the raw session id when the session was never renamed. On Windows it uses the `cmdc` bin, since `cmd` is the built-in Command Prompt. `--resume` now accepts a raw session id, not just a renamed title.
480
+
481
+ - feat: show how to resume a session on exit
482
+ - feat: `/theme` slash command to switch between dark and light themes at runtime
483
+
484
+ ## 0.37.1
485
+
486
+ ### Patch Changes
487
+
488
+ - fix: improve the subagents
489
+ - feat: default model is now DeepSeek V4 Flash.
490
+ - feat: model picker leads with the Open Source section, DeepSeek models on top
491
+
492
+ ## 0.37.0
493
+
494
+ ### Minor Changes
495
+
496
+ - feat: add Kimi K2.7 Code model
497
+ - feat: internal add headless TUI testing
498
+ - feat: `/goal` slash command for autonomous session loops
499
+ - feat: resume & continue headless (`cmd -p`) sessions
500
+ - feat: persist headless (`cmd -p`) sessions to disk
501
+
502
+ ## 0.36.0
503
+
504
+ ### Minor Changes
505
+
506
+ - feat: agent continuation repair harness strong long term looping.
507
+ - fix: bg auto-update stages & swaps it in, so `cmd` is never missing or half-installed mid-update
508
+ - fix: updater only ever targets stable releases — alpha/beta/rc builds are manual installs
509
+ - fix: plan preview in plan mode uses square corners instead of rounded corners
510
+
511
+ ## 0.35.2
512
+
513
+ ### Patch Changes
514
+
515
+ - feat: package updates and stability improvements
516
+
517
+ ## 0.35.1
518
+
519
+ ### Patch Changes
520
+
521
+ - feat: internal add headless TUI testing
522
+ - feat: remove sharp in favor of jimp based image processing
523
+ - fix: edit tool now matches and replaces text correctly in Windows CRLF files
524
+ - fix: Esc in transcript mode (ctrl+o) doesn't interrupt the running session now
525
+ - fix: restore IDE integration on Windows by validating named-pipe socket paths
526
+ - fix: install IDE extension into Remote-Server dirs for VS Code Remote-WSL/SSH/Devcontainers
527
+ - fix: editor "Open Command Code" icon now runs `cmdc` instead of `cmd` on Windows
528
+ - fix: @-mention file search speed improvements by caching file lists
529
+
530
+ ## 0.35.0
531
+
532
+ ### Minor Changes
533
+
534
+ - fix: looping env-context snapshot loop and stabilize prefix cache
535
+ - feat: plan mode shows full plan in the terminal, with ctrl+o to expand long plans
536
+
537
+ ## 0.34.1
538
+
539
+ ### Patch Changes
540
+
541
+ - fix: rename "Request ID" to "Trace ID"
542
+
543
+ ## 0.34.0
544
+
545
+ ### Minor Changes
546
+
547
+ - feat: major rehaul of lists and windowing /models /skills /mcp /agents
548
+ - fix(tools): recover tool calls whose args are wrapped in a one-element array
549
+ - feat: command aliases + consistent picker design across the TUI
550
+ - fix: /context counts only enabled skills
551
+ - fix: prevent flicker and OOM when scrolling long lists in /skills and /models
552
+ - fix: a crashing MCP server no longer takes down the CLI
553
+ - fix: stop running shell commands on Esc instead of waiting for them to finish (#428)
554
+ - fix: /model and /configure-models pickers scroll within a viewport (selection bar, no OOM)
555
+ - fix: /model selector scrolls within a viewport instead of jumping to the bottom
556
+ - fix: /skills no longer flickers while scrolling or reprints a duplicate header on exit
557
+ - fix: Per-task model overrides now fall back to ZDR-safe defaults on background tasks
558
+
559
+ ## 0.33.4
560
+
561
+ ### Patch Changes
562
+
563
+ - fix: /context skill count and print (`-p`) mode now honor skills disabled via /skills
564
+ - fix(taste): write taste-relative paths so taste.md preferences actually save (Windows + macOS)
565
+
566
+ ## 0.33.3
567
+
568
+ ### Patch Changes
569
+
570
+ - add Claude Fable 5
571
+ - fix: resolve [Text#N] paste placeholder into text for slash commands on submit
572
+
573
+ ## 0.33.2
574
+
575
+ ### Patch Changes
576
+
577
+ - feat: web_search tool supported across all models
578
+ - feat: web_fetch tool for all models
579
+
580
+ ## 0.33.1
581
+
582
+ ### Patch Changes
583
+
584
+ - fix(env): detect real default branch via origin/HEAD main or master (#1990)
585
+
586
+ ## 0.33.0
587
+
588
+ ### Minor Changes
589
+
590
+ - feat: dynamic prefix cache thrashing major cache overhaul 2.9x median cost reduction
591
+
592
+ ## 0.32.5
593
+
594
+ ### Patch Changes
595
+
596
+ - fix: CLI login UX and dead studio links (#1979)
597
+
598
+ ## 0.32.4
599
+
600
+ ### Patch Changes
601
+
602
+ - fix: usage and billing page lingo
603
+ - fix: /context shows context window `1M` instead of `1000k`
604
+ - fix: /configure-models taste learning task follows your selected model
605
+
606
+ ## 0.32.3
607
+
608
+ ### Patch Changes
609
+
610
+ - feat: responsive tables - wrap to fit, stack when too narrow
611
+ - fix: `/update` to keep `v1 → v2` status pill instead of cycling through verbs when running prompts
612
+ - feat: track which models accept image (vision) input in the model registry
613
+ - feat: /configure-models to choose which model runs built-in tasks
614
+ - feat: warn when a prompt to a non-vision model includes an image
615
+
616
+ ## 0.32.2
617
+
618
+ ### Patch Changes
619
+
620
+ - feat: add NVIDIA Nemotron 3 Ultra
621
+ - fix: Send attached images to the model in the correct format
622
+ - fix: `/effort` surfaces an inline notice when current model has no reasoning-effort levels
623
+
624
+ ## 0.32.1
625
+
626
+ ### Patch Changes
627
+
628
+ - chore: Qwen 3.7 Max Free deal ending (#1933)
629
+
630
+ ## 0.32.0
631
+
632
+ ### Minor Changes
633
+
634
+ - feat: Qwen 3.7 Plus as a selectable model (#1931)
635
+ - feat: add `input.collapsePastedText` to settings.json to control whether large pastes collapse into a `[Text#N]` placeholder
636
+ - feat: add `/update` slash command to update Command Code from inside the session
637
+ - fix: compare sha256 fingerprint instead of full JSON when writing messages to session files.
638
+ - feat: Show current model when typing /model
639
+
640
+ ## 0.31.2
641
+
642
+ ### Patch Changes
643
+
644
+ - feat: improve model rendering layer
645
+
646
+ ## 0.31.1
647
+
648
+ ### Patch Changes
649
+
650
+ - fix: extend billing to new month on upgrade
651
+
652
+ ## 0.31.0
653
+
654
+ ### Minor Changes
655
+
656
+ - feat: Deal Free Qwen 3.7 Max — June 1-3 till capacity lasts
657
+
658
+ ## 0.30.4
659
+
660
+ ### Patch Changes
661
+
662
+ - feat: Qwen 3.7 Max — limited-time $0 access deal
663
+
664
+ ## 0.30.3
665
+
666
+ ### Patch Changes
667
+
668
+ - feat: add Qwen 3.7 Plus
669
+
670
+ ## 0.30.2
671
+
672
+ ### Patch Changes
673
+
674
+ - feat: add MiniMax M3
675
+
676
+ ## 0.30.1
677
+
678
+ ### Patch Changes
679
+
680
+ - feat: add Step 3.7 Flash
681
+
682
+ ## 0.30.0
683
+
684
+ ### Minor Changes
685
+
686
+ - fix(repair v3): add read_file/edit_file/glob alias repairs (#1869)
687
+ - feat: Add two-step picker for /model: Pick a model, then choose reasoning effort
688
+ - feat: add /effort to select reasoning effort for the current model
689
+ - fix: prevent "Thinking…" indicators from getting stuck
690
+
691
+ ## 0.29.0
692
+
693
+ ### Minor Changes
694
+
695
+ - feat: add Claude Opus 4.8 — Anthropic's new flagship Opus model
696
+ - feat: show reasoning effort inline with the model on banner
697
+ - feat: surface skipped skills in /skills view
698
+ - fix: `/feedback <text>` now prefills the GitHub issue title
699
+
700
+ ## 0.28.1
701
+
702
+ ### Patch Changes
703
+
704
+ - fix: Throttle live reasoning feed updates to prevent OOM #1838
705
+
706
+ ## 0.28.0
707
+
708
+ ### Minor Changes
709
+
710
+ - feat: 36K+ repair variations fixed across 29 models
711
+ - fix: update DeepSeek V4 Flash cache-read price to $0.028/1M
712
+
713
+ ## 0.27.3
714
+
715
+ ### Patch Changes
716
+
717
+ - feat: add Xiaomi MiMo V2.5 and MiMo V2.5 Pro
718
+ - fix: allow bundled skills to be enabled/disabled from `/skills` like any other skill
719
+ - fix: Present full login URL when logging in
720
+ - chore: enforce Biome formatting via pre-commit hook and editor format-on-save
721
+ - chore: scope Biome to JS/TS/JSON, respect .gitignore, exclude skills/benchmarks/CSS
722
+ - chore: format entire codebase with Biome
723
+
724
+ ## 0.27.2
725
+
726
+ ### Patch Changes
727
+
728
+ - fix: route taste onboarding observer through Kimi K2.5 (opensource) so Go-plan users no longer hit MODEL_NOT_IN_PLAN
729
+
730
+ ## 0.27.1
731
+
732
+ ### Patch Changes
733
+
734
+ - chore: Improved error handling of upstream providers
735
+
736
+ ## 0.27.0
737
+
738
+ ### Minor Changes
739
+
740
+ - feat: agent-browser bundled skill for better browser access
741
+
742
+ ## 0.26.25
743
+
744
+ ### Patch Changes
745
+
746
+ - fix(mcp): clearer stdio errors for URLs and missing commands (#1243, #375)
747
+
748
+ ## 0.26.24
749
+
750
+ ### Patch Changes
751
+
752
+ - fix: collapse thinking by default + kill streaming flicker when expanded
753
+ - fix: `--list-models` shows Claude Haiku 4.5 without its date suffix
754
+
755
+ ## 0.26.23
756
+
757
+ ### Patch Changes
758
+
759
+ - feat: stream reasoning tokens
760
+
761
+ ## 0.26.22
762
+
763
+ ### Patch Changes
764
+
765
+ - refactor: thinking improvements
766
+ - chore: retire Claude Opus 4.6 from the selectable model list
767
+ - feat: add Stop hook event
768
+
769
+ ## 0.26.21
770
+
771
+ ### Patch Changes
772
+
773
+ - feat: add `--list-models` to show every selectable model id
774
+ - feat: `--model` accepts the full id, or model name after the `/`, and provides a "did you mean?" suggestion for
775
+
776
+ ## 0.26.20
777
+
778
+ ### Patch Changes
779
+
780
+ - feat: add Qwen 3.7 Max (Vercel AI Gateway via Alibaba)
781
+
782
+ ## 0.26.19
783
+
784
+ ### Patch Changes
785
+
786
+ - fix: render slash-command tags as clean pills in Rewind and titles
787
+
788
+ ## 0.26.18
789
+
790
+ ### Patch Changes
791
+
792
+ - fix: improve bundled skills support
793
+
794
+ ## 0.26.17
795
+
796
+ ### Patch Changes
797
+
798
+ - feat: `-m, --model <model-id>` flag to override the model in interactive and headless (-p) mode
799
+
800
+ ## 0.26.16
801
+
802
+ ### Patch Changes
803
+
804
+ - fix: add `--max-turns <number>` flag in `cmd --help`
805
+ - fix: restore non-blocking background auto-updates
806
+
807
+ ## 0.26.15
808
+
809
+ ### Patch Changes
810
+
811
+ - chore: improved model selection
812
+
813
+ ## 0.26.14
814
+
815
+ ### Patch Changes
816
+
817
+ - fix: stdio MCP servers spawn on Windows
818
+
819
+ ## 0.26.13
820
+
821
+ ### Patch Changes
822
+
823
+ - feat: make model selection per session in memory
824
+ - fix: sync banner model when resuming a session from inside the TUI
825
+ - feat: in-TUI `/resume` adopts the resumed conversation's model (banner + requests)
826
+ - feat: `/model` sets the default for new sessions again, while keeping concurrent sessions isolated
827
+ - feat: add `cmd status --json` for machine-readable auth status output
828
+ - fix: sanitize custom agent and MCP tool names so a dot/colon/space no longer 400s the model provider
829
+
830
+ ## 0.26.12
831
+
832
+ ### Patch Changes
833
+
834
+ - feat: support `COMMAND_CODE_API_KEY` env var for CI / headless auth
835
+ - fix: `/review` now shows an install hint when the `gh` CLI is missing (#1162)
836
+ - fix: skip credit-depletion warning for `past_due` subscriptions
837
+
838
+ ## 0.26.11
839
+
840
+ ### Patch Changes
841
+
842
+ - chore: improved docs and model descriptions
843
+
844
+ ## 0.26.10
845
+
846
+ ### Patch Changes
847
+
848
+ - feat: add Gemini 3.5 Flash
849
+ - feat: add `/design` for guided frontend design reviews, refinements, and follow-up fixes
850
+ - feat: add bundled skills support
851
+
852
+ ## 0.26.9
853
+
854
+ ### Patch Changes
855
+
856
+ - feat: `/plan [task]` slash command
857
+ - fix: recover from reasoning-only assistant responses instead of silently exiting the loop
858
+
859
+ ## 0.26.8
860
+
861
+ ### Patch Changes
862
+
863
+ - feat: add Gemini 3.1 Flash Lite
864
+
865
+ ## 0.26.7
866
+
867
+ ### Patch Changes
868
+
869
+ - refactor: improve MCP compatibility
870
+
871
+ ## 0.26.6
872
+
873
+ ### Patch Changes
874
+
875
+ - feat: mcp compatibility, auth and error handling optimizations
876
+ - perf: let vitest auto-pick the `agent` reporter when running inside an AI coding agent for truncated output
877
+ - perf: upgrade vitest 3.2.4 → 4.1.6, unit-test (~35s saved, ~45s duration)
878
+
879
+ ## 0.26.5
880
+
881
+ ### Patch Changes
882
+
883
+ - feat: configurable reasoning effort per model
884
+
885
+ ## 0.26.4
886
+
887
+ ### Patch Changes
888
+
889
+ - fix: always update to latest version and skip stale pending updates
890
+ - perf: speed up pnpm test:all runs by ~185s, cleaned vitest config, skip Command Code updates check per test.
891
+ - test: skip the flaky `skill-slash-command` integration test.
892
+
893
+ ## 0.26.3
894
+
895
+ ### Patch Changes
896
+
897
+ - feat: update deepseek flash context window (#1622)
898
+
899
+ ## 0.26.2
900
+
901
+ ### Patch Changes
902
+
903
+ - feat(cmd): fix yolo mode failing when no files
904
+
905
+ ## 0.26.1
906
+
907
+ ### Patch Changes
908
+
909
+ - fix: `--yolo` mode restored
910
+
911
+ ## 0.26.0
912
+
913
+ ### Minor Changes
914
+
915
+ - feat: show red "» permission bypass on" indicator when launched with `--yolo`
916
+ - fix: Write plans to ~/.commandcode directory without permission in plan mode
917
+
918
+ ## 0.25.14
919
+
920
+ ### Patch Changes
921
+
922
+ - feat: add CMD_ZDR=1 flag to use ZDR only providers
923
+
924
+ ## 0.25.13
925
+
926
+ ### Patch Changes
927
+
928
+ - feat: add `cmdc` alias for command-code (Windows-compatible shorthand)
929
+
930
+ ## 0.25.12
931
+
932
+ ### Patch Changes
933
+
934
+ - fix: Restore top margin from the taste banner
935
+ - fix: Refresh welcome-banner header when the active model changes via /model
936
+
937
+ ## 0.25.11
938
+
939
+ ### Patch Changes
940
+
941
+ - Uppercase "LEARNED" label in taste onboarding UI (#1578)
942
+
943
+ ## 0.25.10
944
+
945
+ ### Patch Changes
946
+
947
+ - refactor: MCP DX improvements
948
+ - fix: unify expand-output shortcut on Ctrl+O across all terminals
949
+ - fix: Fix skills discovery in current working directory
950
+ - chore: consolidate cmd login outros into shared styled formatters (no user-visible change)
951
+ - fix: Prevent paste-induced SIGABRT errors on headless Linux
952
+
953
+ ## 0.25.9
954
+
955
+ ### Patch Changes
956
+
957
+ - fix: MCP discovery flow impacting supabase server
958
+
959
+ ## 0.25.8
960
+
961
+ ### Patch Changes
962
+
963
+ - fix: paste at mid-cursor no longer discards text after the cursor
964
+ - feat: /skills picker now supports search and per-project on/off toggling
965
+ - chore: bump react to 19.1.7 for security patches
966
+
967
+ ## 0.25.7
968
+
969
+ ### Patch Changes
970
+
971
+ - feat: add plan-based model access control in model selector
972
+
973
+ ## 0.25.6
974
+
975
+ ### Patch Changes
976
+
977
+ - fix: dismiss the TASTE skip banner when prompt submits
978
+
979
+ ## 0.25.5
980
+
981
+ ### Patch Changes
982
+
983
+ - docs: refresh npm README — trim unnecessary content and add link to docs site for more details
984
+
985
+ ## 0.25.4
986
+
987
+ ### Patch Changes
988
+
989
+ - docs: refresh npm README — fix broken logo URL and update tagline to current homepage lingo
990
+
991
+ ## 0.25.3
992
+
993
+ ### Patch Changes
994
+
995
+ - feat: improve deepseek thinking
996
+ - fix: collapse taste feed log into a status footer with cards rendering chronologically
997
+ - fix: Prevent slash commands from interrupting agent turns
998
+ - feat: /ide installs the extension directly to disk across all detected IDEs
999
+
1000
+ ## 0.25.2
1001
+
1002
+ ### Patch Changes
1003
+
1004
+ - feat: per-model context window with overflow handling on model switch
1005
+ - feat: nudge user to run /compact when context fills a large window
1006
+ - fix: detect Cursor and Windsurf reliably in IDE
1007
+
1008
+ ## 0.25.1
1009
+
1010
+ ### Patch Changes
1011
+
1012
+ - feat: add Step 3.5 Flash model
1013
+
1014
+ ## 0.25.0
1015
+
1016
+ ### Minor Changes
1017
+
1018
+ - imp: Press n to never show the learning banner again (#1484)
1019
+ fix: Learning Banner path fix (#1484)
1020
+ fix: banner reprint on model change (#1484)
1021
+
1022
+ ## 0.24.2
1023
+
1024
+ ### Patch Changes
1025
+
1026
+ - fix: context usage calculation in TUI
1027
+
1028
+ ## 0.24.1
1029
+
1030
+ ### Patch Changes
1031
+
1032
+ - feat(telemetry): GenAI semconv, AI SDK wiring, namespace rename, privacy lockdown
1033
+
1034
+ ## 0.24.0
1035
+
1036
+ ### Minor Changes
1037
+
1038
+ - fix: tool auto repair and healing, lenient LLM tool-input healing for recoverable validation errors
1039
+
1040
+ ### Patch Changes
1041
+
1042
+ - fix: filter gitignored and sensitive files from IDE context
1043
+ - feat: enrich `cmd info` with software / IDE / terminal context
1044
+ - feat: add /courses command to open courses dashboard in browser
1045
+
1046
+ ## 0.23.1
1047
+
1048
+ ### Patch Changes
1049
+
1050
+ - fix: `/usage` overlay model display names now resolve through canonical id
1051
+ - fix: validate `read_directory`, `write_file`, `edit_file` absolute paths against workspace boundary
1052
+ - fix: dedupe hook startup warnings into a single summary
1053
+ - fix: validate `glob` and `read_multiple_files` paths against workspace boundary
1054
+ - fix: require permission prompt for `find` when used with dangerous flags
1055
+
1056
+ ## 0.23.0
1057
+
1058
+ ### Minor Changes
1059
+
1060
+ - fix: make sessions self heal with tool calls/results pairs (#1375)
1061
+
1062
+ ## 0.22.9
1063
+
1064
+ ### Patch Changes
1065
+
1066
+ - chore: bump deps to latest versions
1067
+
1068
+ ## 0.22.8
1069
+
1070
+ ### Patch Changes
1071
+
1072
+ - feat: add gpt-5.5 model support
1073
+
1074
+ ## 0.22.7
1075
+
1076
+ ### Patch Changes
1077
+
1078
+ - feat: add hooks engine with PreToolUse/PostToolUse integration
1079
+ - feat: simplify /usage overlay — single summary line, per-model cost breakdown, bigger █/░ progress bar
1080
+ - fix: /usage per-model breakdown renders legacy Sonnet 4 as "Claude Sonnet 4.6"
1081
+ - feat: add Qwen 3.6 Max Preview, Qwen 3.6 Plus, MiniMax M2.7, and GLM 5.1 support
1082
+
1083
+ ## 0.22.6
1084
+
1085
+ ### Patch Changes
1086
+
1087
+ - fix: validate `read_file` absolute paths against workspace boundary
1088
+ - feat: add DeepSeek V4 Pro and V4 Flash
1089
+
1090
+ ## 0.22.5
1091
+
1092
+ ### Patch Changes
1093
+
1094
+ - feat: richer /ide output with actionable next steps per status and selection hint on user messages
1095
+ - fix: stop IPC log spam outside IDE terminals (backoff + single-line logs)
1096
+
1097
+ ## 0.22.4
1098
+
1099
+ ### Patch Changes
1100
+
1101
+ - chore: improve fallback errors for models
1102
+
1103
+ ## 0.22.3
1104
+
1105
+ ### Patch Changes
1106
+
1107
+ - chore: improve model fallbacks
1108
+
1109
+ ## 0.22.2
1110
+
1111
+ ### Patch Changes
1112
+
1113
+ - fix: resize-flicker on width change made patch free now (#1268)
1114
+
1115
+ ## 0.22.1
1116
+
1117
+ ### Patch Changes
1118
+
1119
+ - fix: ship #1232 flicker fix reliably for bundle-time (#1267)
1120
+
1121
+ ## 0.22.0
1122
+
1123
+ ### Minor Changes
1124
+
1125
+ - fix: resize flicker on status bar when resizing the window #1232
1126
+
1127
+ ## 0.21.1
1128
+
1129
+ ### Minor Changes
1130
+
1131
+ - feat: add Kimi K2.6 support
1132
+ - refactor: unify auth copy across `cmd login` / `cmd logout` / `cmd auth status` and their `/login` / `/logout` slash equivalents.
1133
+
1134
+ ## 0.21.0
1135
+
1136
+ ### Minor Changes
1137
+
1138
+ - fix: reduce install footprint — drop unused + test-only deps (#1246)
1139
+
1140
+ ## 0.20.2
1141
+
1142
+ ### Patch Changes
1143
+
1144
+ - fix: keep insufficient credits error on screen until user dismisses in /learn-taste #1221
1145
+
1146
+ ## 0.20.1
1147
+
1148
+ ### Patch Changes
1149
+
1150
+ - fix: codex auth bug (#1240)
1151
+ - fix: Ctrl+C no longer hangs `cmd login` during browser auth
1152
+
1153
+ ## 0.20.0
1154
+
1155
+ ### Minor Changes
1156
+
1157
+ - fix: reduce TUI status row flicker #1231
1158
+ - fix: clean up LLM status words to remove negative, slang, or judgmental phrasing #1230
1159
+
1160
+ ## 0.19.12
1161
+
1162
+ ### Patch Changes
1163
+
1164
+ - feat: new TUI banner with solid purple colors #1226
1165
+
1166
+ ## 0.19.11
1167
+
1168
+ ### Patch Changes
1169
+
1170
+ - fix: improve auth flow with API and fix related bugs
1171
+
1172
+ ## 0.19.10
1173
+
1174
+ ### Patch Changes
1175
+
1176
+ - feat: add premium credit exhaustion detection with auto-switch to Kimi K2
1177
+ - feat: add /upgrade and /extra slash commands to open billing page
1178
+ - feat: add model-not-in-plan error detection with plan-specific messaging
1179
+
1180
+ ## 0.19.9
1181
+
1182
+ ### Patch Changes
1183
+
1184
+ - fix: accept absolute `directory` paths in `shell_command` tool
1185
+
1186
+ ## 0.19.8
1187
+
1188
+ - feat: Claude Opus 4.7 support
1189
+
1190
+ ## 0.19.7
1191
+
1192
+ ### Patch Changes
1193
+
1194
+ - feat: gpt-5.4 mini model for faster and more cost-effective performance on lightweight tasks
1195
+ - feat: surface installed skills in the `/` slash menu + isMeta hidden injected messages.
1196
+
1197
+ ## 0.19.6
1198
+
1199
+ ### Patch Changes
1200
+
1201
+ - Improved OSS models support
1202
+
1203
+ ## 0.19.5
1204
+
1205
+ ### Patch Changes
1206
+
1207
+ - feat: Default model is now Kimi K2.5.
1208
+
1209
+ ## 0.19.4
1210
+
1211
+ ### Patch Changes
1212
+
1213
+ - fix: Capitalize plan name and suggest /model in model-access 403 errors
1214
+ - feat: New pricing plans live
1215
+
1216
+ ## 0.19.3
1217
+
1218
+ ### Patch Changes
1219
+
1220
+ - feat: Kimi for title gen and tool permission prompts (#1173)
1221
+ - fix: improve credit warning accuracy for new plans
1222
+
1223
+ ## 0.19.2
1224
+
1225
+ ### Patch Changes
1226
+
1227
+ - feat: resume sessions hints on exit
1228
+ - fix: preserve newlines in pasted text by not stripping \n/\r from input (#1116)
1229
+
1230
+ ## 0.19.1
1231
+
1232
+ ### Patch Changes
1233
+
1234
+ - feat: add search functionality to model selector (#1145)
1235
+
1236
+ ## 0.19.0
1237
+
1238
+ ### Minor Changes
1239
+
1240
+ - feat: Open Source models including GLM-5, Kimi K2.5, and MiniMax2.5
1241
+ - feat: OpenAI models including gpt-5.4 and gpt-5.3-codex
1242
+
1243
+ ## 0.18.11-beta.0
1244
+
1245
+ ### Patch Changes
1246
+
1247
+ - feat: Open Source models including GLM-5, Kimi K2.5, and MiniMax2.5
1248
+ - feat: OpenAI models including gpt-5.4 and gpt-5.3-codex
1249
+
1250
+ ## 0.18.10
1251
+
1252
+ ### Patch Changes
1253
+
1254
+ - feat: track CLI lifecycle events (session, first message, install, update)
1255
+ - fix: resolve symlinks in isPlanPath to prevent writes outside plans directory
1256
+ - refactor: /context TUI overhaul — granular breakdown (System prompt, System tools, MCP, Skills, Memory, Messages), inline token units, threshold-aware tips, dead code removal
1257
+
1258
+ ## 0.18.9
1259
+
1260
+ ### Patch Changes
1261
+
1262
+ - feat: add `.agents/skills/` support
1263
+ - feat: add /usage slash command for credits, plan, and usage metrics
1264
+
1265
+ ## 0.18.8
1266
+
1267
+ ### Patch Changes
1268
+
1269
+ - feat: scrollable viewport and branch filter toggle in session picker
1270
+
1271
+ ## 0.18.7
1272
+
1273
+ ### Patch Changes
1274
+
1275
+ - feat: Add taste learning from repository - npx taste learn
1276
+ - feat: warn users at 50%, 75%, and 90% credit depletion for subscription plans
1277
+ - fix: org-aware billing link in agent generation insufficient credits error
1278
+ - fix: stop retry attempts on logout
1279
+ - feat: add CMD_DEMO env var to hide internal badges from CLI header
1280
+
1281
+ ## 0.18.6
1282
+
1283
+ ### Patch Changes
1284
+
1285
+ - feat: 25K tokens+ tool result handling and lingo
1286
+
1287
+ ## 0.18.5
1288
+
1289
+ ### Patch Changes
1290
+
1291
+ - fix: categorize /rename as an argument-accepting command for correct routing
1292
+
1293
+ ## 0.18.4
1294
+
1295
+ ### Patch Changes
1296
+
1297
+ - fix: change 25K token per file limit message from error to informational notice
1298
+
1299
+ ## 0.18.3
1300
+
1301
+ ### Patch Changes
1302
+
1303
+ - feat: rename sessions and resume them using --resume
1304
+
1305
+ ## 0.18.2
1306
+
1307
+ ### Patch Changes
1308
+
1309
+ - feat: add Cursor session support to learn-taste (#987)
1310
+ - feat: Skills CLI commands (add, list, remove) to manage skills in the CLI(#188)
1311
+
1312
+ ## 0.18.1
1313
+
1314
+ ### Patch Changes
1315
+
1316
+ - feat: add changelog skill for syncing CHANGELOG.md to studio #977
1317
+ fix: Palette not defined error #977
1318
+ feat: tui screens smoke tests #977
1319
+
1320
+ ## 0.18.0
1321
+
1322
+ ### Minor Changes
1323
+
1324
+ - feat: TUI polish — tree connector, bracket text, read summaries, demo mode #881
1325
+
1326
+ ## 0.17.18
1327
+
1328
+ ### Patch Changes
1329
+
1330
+ - feat: add enable and disable controls for MCP servers in the TUI manager
1331
+ - feat: remove Claude Sonnet 4.5 and Opus 4.5 model support, auto-migrate users to 4.6 equivalents
1332
+ - fix: go directly to login when logged out and show actionable auth failures
1333
+ - fix: prevent taste learning from triggering on automated/tool messages
1334
+ - fix: add buffer between EPIPE test timeout (15s) and assertion (5s) to prevent flaky failures
1335
+ - fix: harden IDE context discovery against inherited IDE env leakage and canonical path mismatches in VS Code-family terminals
1336
+ - feat: Add /status command (#640)
1337
+
1338
+ ## 0.17.17
1339
+
1340
+ ### Patch Changes
1341
+
1342
+ - fix: improved --experimental error handling
1343
+ - feat: hide bottom indicator when slash command menu is open (#418)
1344
+
1345
+ ## 0.17.16
1346
+
1347
+ ### Patch Changes
1348
+
1349
+ - feat: add --experimental flag for internal testing of experimental features
1350
+ - fix: add experimental sandbox support
1351
+ - fix: store full pasted text in history instead of `[Text#N]` token placeholders (#874)
1352
+ - fix: deduplicate consecutive identical commands in prompt history (#351)
1353
+ - fix: clear stuck request state after timeouts and interrupts (#809)
1354
+
1355
+ ## 0.17.15
1356
+
1357
+ ### Patch Changes
1358
+
1359
+ - style: convert /context to full-screen overlay
1360
+ - fix: improve truncation in explore agent and read multiple tool calls
1361
+ - fix: truncate shell commands to prevent large CLI output
1362
+ - feat: icon color status rebranding with square bracket shortcuts (#878)
1363
+
1364
+ ## 0.17.14
1365
+
1366
+ ### Patch Changes
1367
+
1368
+ - feat: add --max-turns and --verbose options for print mode
1369
+ - fix: align /context output left and use dim gray bold headings (#838)
1370
+ - feat: add --auto-accept CLI flag alias (#841)
1371
+
1372
+ ## 0.17.13
1373
+
1374
+ ### Patch Changes
1375
+
1376
+ - fix: improve signup flow
1377
+
1378
+ ## 0.17.12
1379
+
1380
+ ### Patch Changes
1381
+
1382
+ - DX: Improved auth flow
1383
+
1384
+ ## 0.17.11
1385
+
1386
+ ### Patch Changes
1387
+
1388
+ - fix: uppercase TASTE pill and use shared constant (#829)
1389
+
1390
+ ## 0.17.10
1391
+
1392
+ ### Patch Changes
1393
+
1394
+ - fix: model change updates header and rename display (#824)
1395
+
1396
+ ## 0.17.9
1397
+
1398
+ ### Patch Changes
1399
+
1400
+ - fix: show diff in edit/write tools
1401
+
1402
+ ## 0.17.8
1403
+
1404
+ ### Patch Changes
1405
+
1406
+ - feat: auto-detect PR from current branch in /review command #792
1407
+ - feat: ghost prompt suggestion after `/pr-comments` — pre-populates input with "Fix all review comments" when comments are found
1408
+
1409
+ ## 0.17.7
1410
+
1411
+ ### Patch Changes
1412
+
1413
+ - feat: fast compact mode with /compact-mode command menu
1414
+ - fix: use OSC8 hyperlinks for login auth URLs — short clickable labels instead of raw URLs
1415
+ - fix: use UUID for threadId in observer-api to prevent type errors in backend
1416
+ - fix: raise prompt history limit from 500 to 50K chars — up arrow no longer truncates editable inputs (#620)
1417
+ - fix: Shift+Enter inserts newline at cursor position instead of end (#622)
1418
+ - feat: add `/context` slash command (#634)
1419
+
1420
+ ## 0.17.6
1421
+
1422
+ ### Minor Changes
1423
+
1424
+ - feat: add self-knowledge support
1425
+
1426
+ ## 0.17.5
1427
+
1428
+ ### Patch Changes
1429
+
1430
+ - fix: truncate error output in shell results instead of showing full output
1431
+
1432
+ ## 0.17.4
1433
+
1434
+ ### Patch Changes
1435
+
1436
+ - revert: dynamic Haiku-predicted placeholder in input field (#509) (#614)
1437
+
1438
+ ## 0.17.3
1439
+
1440
+ ### Patch Changes
1441
+
1442
+ - fix: tool calls one ch space
1443
+ - feat: add Haiku 4.5 as a selectable model option in `/model` command
1444
+ - fix: text overwrite in taste demo footer and learning feed formatting
1445
+ - fix: make image labels in static feed clickable OSC8 links (#598)
1446
+
1447
+ ## 0.17.2
1448
+
1449
+ ### Patch Changes
1450
+
1451
+ - fix: add extra space after tree connector to fix spacing in TUI (#588)
1452
+
1453
+ ## 0.17.1
1454
+
1455
+ ### Patch Changes
1456
+
1457
+ - fix: add extra space after tree connector to fix spacing in TUI
1458
+
1459
+ ## 0.17.0
1460
+
1461
+ ### Minor Changes
1462
+
1463
+ - feat: unified color palette, cross-platform symbols, auth flicker fix, and TUI polish
1464
+
1465
+ ## 0.16.3
1466
+
1467
+ ### Patch Changes
1468
+
1469
+ - fix: cursor stays at deletion point after option+backspace mid-sentence
1470
+
1471
+ ## 0.16.2
1472
+
1473
+ ### Patch Changes
1474
+
1475
+ - refactor: move taste demo to ctrl+t screen, skip onboarding when no sessions
1476
+
1477
+ ## 0.16.1
1478
+
1479
+ ### Patch Changes
1480
+
1481
+ - feat: add `/pr-comments` slash command to fetch all PR comments for the current branch
1482
+
1483
+ ## 0.16.0
1484
+
1485
+ ### Minor Changes
1486
+
1487
+ - feat: Add LSP diagnostic support
1488
+
1489
+ ## 0.15.4
1490
+
1491
+ ### Patch Changes
1492
+
1493
+ - fix: improve input responsiveness
1494
+
1495
+ ## 0.15.3
1496
+
1497
+ ### Patch Changes
1498
+
1499
+ - fix: Cap markdown hr to 3 dashes and style table headers cyan
1500
+
1501
+ ## 0.15.2
1502
+
1503
+ ### Patch Changes
1504
+
1505
+ - fix: pin ink to 6.6.0 to prevent Shift+Enter breakage in VSCode terminal
1506
+
1507
+ ## 0.15.1
1508
+
1509
+ ### Patch Changes
1510
+
1511
+ - refactor: Improve help command menu
1512
+
1513
+ ## 0.15.4
1514
+
1515
+ ### Patch Changes
1516
+
1517
+ - fix: improve input responsiveness
1518
+
1519
+ ## 0.15.3
1520
+
1521
+ ### Patch Changes
1522
+
1523
+ - fix: Cap markdown hr to 3 dashes and style table headers cyan
1524
+
1525
+ ## 0.15.2
1526
+
1527
+ ### Patch Changes
1528
+
1529
+ - fix: pin ink to 6.6.0 to prevent Shift+Enter breakage in VSCode terminal
1530
+
1531
+ ## 0.15.1
1532
+
1533
+ ### Patch Changes
1534
+
1535
+ - refactor: Improve help command menu
1536
+
1537
+ ## 0.15.0
1538
+
1539
+ ### Minor Changes
1540
+
1541
+ - refactor: TUI app interactive refactor
1542
+
1543
+ ## 0.14.1
1544
+
1545
+ ### Patch Changes
1546
+
1547
+ - fix: handle bracketed paste in question-prompt TextInput
1548
+
1549
+ ## 0.14.0
1550
+
1551
+ ### Minor Changes
1552
+
1553
+ - feat: semantic diff with word-level highlighting and correct line numbers (#442)
1554
+
1555
+ ### Patch Changes
1556
+
1557
+ - fix: handle bracketed paste in question-prompt TextInput
1558
+
1559
+ ## 0.13.0
1560
+
1561
+ ### Minor Changes
1562
+
1563
+ - fix: strip empty lines from truncated tool output preview
1564
+
1565
+ ### Patch Changes
1566
+
1567
+ - fix: prevent command truncation in tool descriptions
1568
+ - feat: reorder /menu items alphabetically
1569
+ - fix: /exit description "Exit the REPL" → "Exit Command Code"
1570
+ - fix(add-dir): strip bracketed paste markers, use TextInput, Del to remove dirs
1571
+ - fix: clarify image hint text with "Delete to remove" and "Esc to deselect"
1572
+ - perf: speed up test suite
1573
+ - fix: increase sanitize limit and improve Haiku prompt for permission descriptions
1574
+
1575
+ ## 0.12.0
1576
+
1577
+ ### Minor Changes
1578
+
1579
+ - feat: /review command agent
1580
+
1581
+ ## 0.11.9
1582
+
1583
+ ### Patch Changes
1584
+
1585
+ - refactor: Distributed tracing across CLI and API
1586
+
1587
+ ## 0.11.8
1588
+
1589
+ ### Patch Changes
1590
+
1591
+ - test: align skills loader tests with spec name-matches-directory rule (#402)
1592
+ fix: truncate tool output by character count to prevent large CLI output (#318)
1593
+ - fix: truncate AskUserQuestion header instead of returning error when it exceeds 20 chars
1594
+
1595
+ ## 0.11.7
1596
+
1597
+ ### Patch Changes
1598
+
1599
+ - feat: Add PRLinkBadge + BottomIndicator PR badge tests
1600
+ - fix: Restore PR link badge lost for conflicts
1601
+ - refactor: IDE Context Tests
1602
+ - fix: IDE IPC crash resilience + integration tests
1603
+ - test: fix LearningAgent max turns test to match debug log level change
1604
+
1605
+ ## 0.11.6
1606
+
1607
+ ### Patch Changes
1608
+
1609
+ - Improve styles of PR link display
1610
+
1611
+ ## 0.11.5
1612
+
1613
+ ### Patch Changes
1614
+
1615
+ - fix: truncate shell commands and normalize paths in CLI tool display
1616
+ - feat: Add PR indicator in status bar showing clickable PR link when on branch with associated PR
1617
+
1618
+ ## 0.11.4
1619
+
1620
+ ### Patch Changes
1621
+
1622
+ - chore: remove unused dependencies and trim ~16.6 MB from production package
1623
+ - feat: Clickable image attachments with interactive gallery in CLI
1624
+ - fix: Premature line wrapping after Shift+Enter when previous lines fill terminal width
1625
+ - fix: Shift+Enter submitting instead of inserting newline in VS Code terminal (split ESC+CR race condition)
1626
+ - fix: strip `<ide-context>` tags from session history display
1627
+ - fix: don't send empty `<ide-context>` tags to LLM when no file or selection is active
1628
+
1629
+ ## 0.11.3
1630
+
1631
+ ### Patch Changes
1632
+
1633
+ - refactor: Improved tool calls validation
1634
+
1635
+ ## 0.11.2
1636
+
1637
+ ### Patch Changes
1638
+
1639
+ - feat: Plan mode for read-only exploration and structured planning
1640
+ - feat: Parallel tool execution
1641
+ - feat: New tools: enter_plan_mode, exit_plan_mode
1642
+ - feat: Auto-prompt to enter plan mode for complex tasks
1643
+ - feat: Auto-prompt to exit plan mode and implement in auto-accept mode
1644
+ - fix: packages updates
1645
+
1646
+ ## 0.11.0
1647
+
1648
+ ### Minor Changes
1649
+
1650
+ - refactor: taste commands overhaul
1651
+
1652
+ ## 0.10.19
1653
+
1654
+ ### Patch Changes
1655
+
1656
+ - 📦 NEW: MCP servers and tools support
1657
+ - 🐛 FIX: Handle `AskUserQuestion` questions param passed as stringified JSON (including trailing commas)
1658
+
1659
+ ## 0.10.18
1660
+
1661
+ ### Patch Changes
1662
+
1663
+ - 📦 NEW: Add Claude Sonnet 4.6 as default model
1664
+ - 📦 NEW: Updated model selector UI — descriptions shown in dimmed text, cleaner layout
1665
+ - 📦 NEW: Updated model descriptions for all options (Sonnet 4.5, Opus 4.5 marked as previous generation)
1666
+
1667
+ ## 0.10.17
1668
+
1669
+ ### Patch Changes
1670
+
1671
+ - 🐛 FIX: Server tool errors (web_fetch, web_search) now show actual error in feed instead of false success
1672
+ - 📦 NEW: Track retry attempts with telemetry during API call failures
1673
+ - 📦 NEW: Intelligent conversation titles
1674
+
1675
+ ## 0.10.16
1676
+
1677
+ ### Patch Changes
1678
+
1679
+ - 🐛 FIX: Display actual error messages from Anthropic API instead of generic "Something went wrong"
1680
+ - 🐛 FIX: Dropped characters when typing fast in command input
1681
+ - 🐛 FIX: Cursor bouncing back to end of line on left arrow navigation
1682
+ - 📦 NEW: Auto-compact conversations on context limit
1683
+ - 👌 IMPROVE: /compact command
1684
+ - 👌 IMPROVE: Bash executor uses user's shell with interactive mode for alias and function support
1685
+
1686
+ ## 0.10.15
1687
+
1688
+ ### Patch Changes
1689
+
1690
+ - 📦 NEW: Add VS Code Extension for real-time context sharing from the IDE
1691
+
1692
+ ## 0.10.14
1693
+
1694
+ ### Patch Changes
1695
+
1696
+ - Improved docs
1697
+
1698
+ ## 0.10.13
1699
+
1700
+ ### Patch Changes
1701
+
1702
+ - 🐛 FIX: Stop processing output after user interrupts prompt (Ctrl+C)
1703
+ - 👌 IMPROVE: Help menu
1704
+ - 📦 NEW: Alt+P keyboard shortcut for quick model switching
1705
+ - 📦 NEW: Ctrl+G shortcut to open current input in external editor ($EDITOR)
1706
+ - 📦 NEW: Feedback command (`cmd feedback` and `/feedback`) to quickly report bugs or share feedback by opening GitHub issues
1707
+
1708
+ ## 0.10.12
1709
+
1710
+ ### Patch Changes
1711
+
1712
+ - 📦 NEW: Add Claude Opus 4.6 model support
1713
+ - 📦 NEW: Add `web_search` to Vertex AI unsupported tool types
1714
+
1715
+ ## 0.10.11
1716
+
1717
+ ### Patch Changes
1718
+
1719
+ - 📦 NEW: OpenTelemetry SDK integration for observability and performance monitoring
1720
+ - 📦 NEW: DO_NOT_TRACK environment variable support for disabling telemetry
1721
+ - 📦 NEW: Telemetry documentation with cross-platform setup instructions
1722
+ - 🐛 FIX: File handler incorrectly triggering on email addresses
1723
+
1724
+ ## 0.10.10
1725
+
1726
+ ### Patch Changes
1727
+
1728
+ - 👌 IMPROVE: Context usage display now shows remaining percentage before auto-compact threshold
1729
+ - 📦 NEW: Kill shell tool - terminates processes by port or PID
1730
+ - 📦 NEW: Add print mode foundation (`-p`, `--print` flag)
1731
+ - 📦 NEW: Global prompt history with up/down arrow navigation across sessions
1732
+
1733
+ ## 0.10.9
1734
+
1735
+ ### Patch Changes
1736
+
1737
+ - 📦 NEW: Explore agent
1738
+
1739
+ ## 0.10.8
1740
+
1741
+ ### Patch Changes
1742
+
1743
+ - 🐛 FIX: Remove non-functional `taste delete` command (remote deletion not implemented)
1744
+ - 📦 NEW: Add `-t` short flag for `--trust` option
1745
+
1746
+ ## 0.10.7
1747
+
1748
+ ### Patch Changes
1749
+
1750
+ - 🐛 FIX: Broken discord link for support message
1751
+ - 🐛 FIX: Hide spinner during connection retry
1752
+ - 🐛 FIX: /login in --co mode to open the anthropic auth flow
1753
+ - 🐛 FIX: Simplify exit confirmation by only supporting Ctrl + C
1754
+
1755
+ ## 0.10.6
1756
+
1757
+ ### Patch Changes
1758
+
1759
+ - 📦 NEW: AskUserQuestion tool
1760
+ - 🐛 FIX: Single taste package visibility on push
1761
+ - 👌 IMPROVE: Hide input box on CLI exit for cleaner terminal output
1762
+ - 🐛 FIX: File search menu bug
1763
+ - 👌 IMPROVE: File search UI
1764
+ - 🐛 FIX: Redirect to fallback page on auth timeout
1765
+
1766
+ ## 0.10.5
1767
+
1768
+ ### Patch Changes
1769
+
1770
+ - 🐛 FIX: Input text wrapping causing duplicate lines and borders
1771
+
1772
+ ## 0.10.4
1773
+
1774
+ ### Patch Changes
1775
+
1776
+ - 🐛 FIX: Slash command menu only triggers when / is first character (#128)
1777
+
1778
+ ## 0.10.3
1779
+
1780
+ ### Patch Changes
1781
+
1782
+ - 🐛 FIX: Update spinner not animating during npm install
1783
+
1784
+ ## 0.10.2
1785
+
1786
+ ### Patch Changes
1787
+
1788
+ - 🐛 FIX: early text buffer sometimes skipping first letter
1789
+ - 🐛 FIX: ESC now properly cancels in-flight requests (response no longer appears in feed after interrupt)
1790
+ - 🐛 FIX: Double-ESC with input text clears input instead of opening rewind
1791
+ - 👌 IMPROVE: Double-ESC with empty input opens rewind selector
1792
+ - 👌 IMPROVE: `/terminal-setup` command to detect duplicate keybindings
1793
+ - 👌 IMPROVE: `/terminal-setup` styled output with tree connector
1794
+ - 🐛 FIX: Clickable file path in `/terminal-setup` command
1795
+ - 👌 IMPROVE: Command sub-commands menu column width
1796
+ - 🐛 FIX: Markdown list rendering with styled nested items
1797
+
1798
+ ## 0.10.1
1799
+
1800
+ ### Patch Changes
1801
+
1802
+ - 📖 DOC: logo of Command Code
1803
+ - 📦 NEW: Load queued messages into input on interrupt
1804
+
1805
+ ## 0.10.0
1806
+
1807
+ ### Major refactor
1808
+
1809
+ - Major refactor of CLI, Debug, Local, Auth, Commands, Options, and TUIs into modular architecture
1810
+
1811
+ ## 0.9.13
1812
+
1813
+ ### Patch Changes
1814
+
1815
+ - 👌 IMPROVE: Move update to background
1816
+ 👌 IMPROVE: Bug report URL
1817
+
1818
+ ## 0.9.12
1819
+
1820
+ ### Patch Changes
1821
+
1822
+ - 👌 IMPROVE: Rewind mode
1823
+ 🐛 FIX: Session bugs
1824
+ 👌 IMPROVE: Session optimizations
1825
+
1826
+ ## 0.9.11
1827
+
1828
+ ### Patch Changes
1829
+
1830
+ - 🐛 FIX: Image paste in Ghostty terminal
1831
+ 👌 IMPROVE: Messages order in rewind
1832
+ 👌 IMPROVE: Input prompt after rewind
1833
+
1834
+ ## 0.9.10
1835
+
1836
+ ### Patch Changes
1837
+
1838
+ - 🐛 FIX: Paste issues in Ghostty
1839
+
1840
+ ## 0.9.9
1841
+
1842
+ ### Patch Changes
1843
+
1844
+ - 👌 IMPROVE: Oauth login flow with API
1845
+
1846
+ ## 0.9.8
1847
+
1848
+ ### Patch Changes
1849
+
1850
+ - 9e3b693: 📦 NEW: Zero-copy CLI auth
1851
+ 📦 NEW: Support for shift + enter in input
1852
+ 🐛 FIX: Taste push --all prompt (#67)
1853
+ 📦 NEW: terminal-setup command for VSCode
1854
+ 🐛 FIX: Resolve triple-press issue and make Ctrl+D work like Ctrl+C
1855
+ - 📦 NEW: taste onboarding - learn taste in projects where you used Claude Code or Codex
1856
+
1857
+ ## 0.9.7
1858
+
1859
+ ### Patch Changes
1860
+
1861
+ - 📦 NEW: Zero-copy CLI auth
1862
+ - 📦 NEW: `shift + enter` VSCode support
1863
+ - 📦 NEW: up/down arrow history
1864
+ - 📦 NEW: --dangerously-skip-permissions flag
1865
+ - 📦 NEW: Double confirmation exit on ctrl+c/ctrl+d
1866
+ - 🐛 FIX: taste push --all prompt
1867
+ - 62162a8: 📦 NEW: Zero-copy CLI auth
1868
+
1869
+ ## 0.9.7-rc.0
1870
+
1871
+ ### Patch Changes
1872
+
1873
+ - 📦 NEW: Zero-copy CLI auth
1874
+
1875
+ ## 0.9.6
1876
+
1877
+ ### Patch Changes
1878
+
1879
+ - Revert "👌 IMPROVE: Input border highlights when typing"#75
1880
+
1881
+ ## 0.9.5
1882
+
1883
+ ### Patch Changes
1884
+
1885
+ - Fix todos display
1886
+
1887
+ ## 0.9.4
1888
+
1889
+ ### Patch Changes
1890
+
1891
+ - new glob tool and taste sync fix
1892
+
1893
+ ## 0.9.3
1894
+
1895
+ ### Patch Changes
1896
+
1897
+ - New /help menu and user message UI changes
1898
+
1899
+ ## 0.9.2
1900
+
1901
+ ### Patch Changes
1902
+
1903
+ - auth fixes for subagents
1904
+
1905
+ ## 0.9.1
1906
+
1907
+ ### Patch Changes
1908
+
1909
+ - auth fix
1910
+
1911
+ ## 0.9.0
1912
+
1913
+ ### Patch Changes
1914
+
1915
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - New animation for status bar
1916
+
1917
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Remove stale commands
1918
+
1919
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - 👌 IMPROVE: try new symobls
1920
+
1921
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - 🐛 FIX: Learn route
1922
+
1923
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - 👌 IMPROVE: cmd icon space and rlz patch script
1924
+
1925
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Bash mode and responsiveness
1926
+
1927
+ - [`62317de`](https://github.com/CommandCodeAI/commandcode/commit/62317de82754858cebddea33a70d098e04c38ca1) Thanks [@saqibameen](https://github.com/saqibameen)! - Checkpoints support
1928
+
1929
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved thinking block
1930
+
1931
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - 👌 IMPROVE: Analytics
1932
+
1933
+ - [`22f0e64`](https://github.com/CommandCodeAI/commandcode/commit/22f0e64c3aadc0a964a16c96617b91fba580faa1) Thanks [@saqibameen](https://github.com/saqibameen)! - Add custom slash commands
1934
+
1935
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improve background processes handling
1936
+
1937
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Readme updates and shared common libs
1938
+
1939
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Added /provider command and improved dependencies
1940
+
1941
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved taste and update ux
1942
+
1943
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Add whoami
1944
+
1945
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Update taste learning infra
1946
+
1947
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Fix autoupdate and improved error handling
1948
+
1949
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved UX + Taste Learning
1950
+
1951
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved diff view
1952
+
1953
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Memory support and fix bash tool
1954
+
1955
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - 🐛 FIX: width of cmd animation
1956
+
1957
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - 🐛 FIX: cmd icon with non-breaking space
1958
+
1959
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Add taste sync
1960
+
1961
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved taste agent and permissions
1962
+
1963
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Fix Auto Updates
1964
+
1965
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Add remote sync for taste
1966
+
1967
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - New auto accept ux and tips
1968
+
1969
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Responsive ASCII art
1970
+
1971
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved model selector
1972
+
1973
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved learning agent permissions
1974
+
1975
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved command code dependencies
1976
+
1977
+ - [`a687e5c`](https://github.com/CommandCodeAI/commandcode/commit/a687e5ce79ce8b37d81cc2866b2be9321fb5f2a2) Thanks [@saqibameen](https://github.com/saqibameen)! - add public taste support
1978
+
1979
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - 📦 NEW: symobols with same widths
1980
+
1981
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - 🐛 FIX: cmd icon flicker
1982
+
1983
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - 🐛 FIX: cmd icon flicker padding
1984
+
1985
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Add cmd update command
1986
+
1987
+ - [`ac238b0`](https://github.com/CommandCodeAI/commandcode/commit/ac238b047ef82887ca4cff914bc074a80022138a) Thanks [@asharirfan](https://github.com/asharirfan)! - 🐛 FIX: cmd taste push --all command
1988
+
1989
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Fix the re-render issues
1990
+
1991
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Add taste feed
1992
+
1993
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improve compact conversation
1994
+
1995
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - taste infra upgrade
1996
+
1997
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Better auth checks
1998
+
1999
+ - [`2e3817c`](https://github.com/CommandCodeAI/commandcode/commit/2e3817c63035e3da6dc82c911938bf04c7ed7cb9) Thanks [@asharirfan](https://github.com/asharirfan)! - 📦 NEW: Agent skills support
2000
+
2001
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improve permissions
2002
+
2003
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Taste feed ux improvements
2004
+
2005
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Fix auth issues
2006
+
2007
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Read tool formatting improved
2008
+
2009
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Enhanced user intentions understanding in taste
2010
+
2011
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Fix sync bugs
2012
+
2013
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improve provider notice
2014
+
2015
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Updated visuals for tools
2016
+
2017
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved error messages for taste
2018
+
2019
+ - Distinct user message background and new active input styles
2020
+
2021
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - New taste header and improved ui for tips
2022
+
2023
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved spacing between Provider and taste status
2024
+
2025
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - 🐛 FIX: cmd icon String.fromCharCode(160) spacing
2026
+
2027
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - TUI improvements
2028
+
2029
+ - [`c9b970c`](https://github.com/CommandCodeAI/commandcode/commit/c9b970c122696bdd12bb17da32925e0da68f30d3) Thanks [@saqibameen](https://github.com/saqibameen)! - Add public taste support to remote
2030
+
2031
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improve sync engine
2032
+
2033
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Custom slash commands
2034
+
2035
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved file selector
2036
+
2037
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved taste sync
2038
+
2039
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Fixed clear command
2040
+
2041
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved auth
2042
+
2043
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - New logo added
2044
+
2045
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improve dx for model switcher
2046
+
2047
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Add support for opus 4.5
2048
+
2049
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved logging for learning agent
2050
+
2051
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - new flags and ux changes
2052
+
2053
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Fix auth urls for different environments
2054
+
2055
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Alpha release
2056
+
2057
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Improved docs links
2058
+
2059
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Add taste open and lint commands
2060
+
2061
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - 👌 IMPROVE: Error handling and retries
2062
+
2063
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - API based auth and billing
2064
+
2065
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - prepare for beta release
2066
+
2067
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Updated links and improved tool calling
2068
+
2069
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Updated taste infra
2070
+
2071
+ - [`4fba702`](https://github.com/CommandCodeAI/commandcode/commit/4fba7024434245b55b4d16757d6d93cb66aafb4b) Thanks [@asharirfan](https://github.com/asharirfan)! - 🐛 FIX: cmd taste push all command
2072
+
2073
+ - [`6eb231d`](https://github.com/CommandCodeAI/commandcode/commit/6eb231db7ccd379a876dda5c231748dad3f25c42) Thanks [@saqibameen](https://github.com/saqibameen)! - Update billing link
2074
+
2075
+ ## 0.0.4-beta.35
2076
+
2077
+ ### Patch Changes
2078
+
2079
+ - Checkpoints support
2080
+
2081
+ ## 0.0.4-beta.34
2082
+
2083
+ ### Patch Changes
2084
+
2085
+ - 🐛 FIX: cmd taste push all command
2086
+
2087
+ ## 0.0.4-beta.33
2088
+
2089
+ ### Patch Changes
2090
+
2091
+ - 📦 NEW: Agent skills support
2092
+
2093
+ ## 0.0.4-beta.32
2094
+
2095
+ ### Patch Changes
2096
+
2097
+ - 🐛 FIX: cmd taste push --all command
2098
+
2099
+ ## 0.0.4-beta.31
2100
+
2101
+ ### Patch Changes
2102
+
2103
+ - Add custom slash commands
2104
+
2105
+ ## 0.0.4-beta.30
2106
+
2107
+ ### Patch Changes
2108
+
2109
+ - Add public taste support to remote
2110
+
2111
+ ## 0.0.4-beta.29
2112
+
2113
+ ### Patch Changes
2114
+
2115
+ - add public taste support
2116
+
2117
+ ## 0.0.4-beta.28
2118
+
2119
+ ### Patch Changes
2120
+
2121
+ - 👌 IMPROVE: Analytics
2122
+
2123
+ ## 0.0.4-beta.27
2124
+
2125
+ ### Patch Changes
2126
+
2127
+ - Add support for opus 4.5
2128
+
2129
+ ## 0.0.4-beta.26
2130
+
2131
+ ### Patch Changes
2132
+
2133
+ - 📦 NEW: symobols with same widths
2134
+
2135
+ ## 0.0.4-beta.25
2136
+
2137
+ ### Patch Changes
2138
+
2139
+ - 👌 IMPROVE: try new symobls
2140
+
2141
+ ## 0.0.4-beta.24
2142
+
2143
+ ### Patch Changes
2144
+
2145
+ - 👌 IMPROVE: cmd icon space and rlz patch script
2146
+
2147
+ ## 0.0.4-beta.23
2148
+
2149
+ ### Patch Changes
2150
+
2151
+ - 🐛 FIX: cmd icon String.fromCharCode(160) spacing
2152
+
2153
+ ## 0.0.4-beta.22
2154
+
2155
+ ### Patch Changes
2156
+
2157
+ - 🐛 FIX: cmd icon with non-breaking space
2158
+
2159
+ ## 0.0.4-beta.21
2160
+
2161
+ ### Patch Changes
2162
+
2163
+ - 🐛 FIX: cmd icon flicker padding
2164
+
2165
+ ## 0.0.4-beta.20
2166
+
2167
+ ### Patch Changes
2168
+
2169
+ - 🐛 FIX: cmd icon flicker
2170
+
2171
+ ## 0.0.4-beta.19
2172
+
2173
+ ### Patch Changes
2174
+
2175
+ - 🐛 FIX: width of cmd animation
2176
+
2177
+ ## 0.0.4-beta.18
2178
+
2179
+ ### Patch Changes
2180
+
2181
+ - New animation for status bar
2182
+
2183
+ ## 0.0.4-beta.17
2184
+
2185
+ ### Patch Changes
2186
+
2187
+ - Improve permissions
2188
+
2189
+ ## 0.0.4-beta.16
2190
+
2191
+ ### Patch Changes
2192
+
2193
+ - TUI improvements
2194
+
2195
+ ## 0.0.4-beta.15
2196
+
2197
+ ### Patch Changes
2198
+
2199
+ - Improve background processes handling
2200
+
2201
+ ## 0.0.4-beta.14
2202
+
2203
+ ### Patch Changes
2204
+
2205
+ - Fix the re-render issues
2206
+
2207
+ ## 0.0.4-beta.13
2208
+
2209
+ ### Patch Changes
2210
+
2211
+ - New taste header and improved ui for tips
2212
+
2213
+ ## 0.0.4-beta.12
2214
+
2215
+ ### Patch Changes
2216
+
2217
+ - Improved thinking block
2218
+
2219
+ ## 0.0.4-beta.11
2220
+
2221
+ ### Patch Changes
2222
+
2223
+ - Improved docs links
2224
+
2225
+ ## 0.0.4-beta.10
2226
+
2227
+ ### Patch Changes
2228
+
2229
+ - Improved file selector
2230
+
2231
+ ## 0.0.4-beta.9
2232
+
2233
+ ### Patch Changes
2234
+
2235
+ - Improve compact conversation
2236
+
2237
+ ## 0.0.4-beta.8
2238
+
2239
+ ### Patch Changes
2240
+
2241
+ - New auto accept ux and tips
2242
+
2243
+ ## 0.0.4-beta.7
2244
+
2245
+ ### Patch Changes
2246
+
2247
+ - Improved taste sync
2248
+
2249
+ ## 0.0.4-beta.6
2250
+
2251
+ ### Patch Changes
2252
+
2253
+ - Improved logging for learning agent
2254
+
2255
+ ## 0.0.4-beta.5
2256
+
2257
+ ### Patch Changes
2258
+
2259
+ - Improved diff view
2260
+
2261
+ ## 0.0.4-beta.4
2262
+
2263
+ ### Patch Changes
2264
+
2265
+ - New logo added
2266
+
2267
+ ## 0.0.4-beta.3
2268
+
2269
+ ### Patch Changes
2270
+
2271
+ - Fix Auto Updates
2272
+
2273
+ ## 0.0.4-beta.2
2274
+
2275
+ ### Patch Changes
2276
+
2277
+ - Remove stale commands
2278
+
2279
+ ## 0.0.4-beta.1
2280
+
2281
+ ### Patch Changes
2282
+
2283
+ - Updated links and improved tool calling
2284
+
2285
+ ## 0.0.4-beta.0
2286
+
2287
+ ### Patch Changes
2288
+
2289
+ - beta release
2290
+
2291
+ ## 0.0.4-alpha.42
2292
+
2293
+ ### Patch Changes
2294
+
2295
+ - Taste feed ux improvements
2296
+
2297
+ ## 0.0.4-alpha.41
2298
+
2299
+ ### Patch Changes
2300
+
2301
+ - Improved error messages for taste
2302
+
2303
+ ## 0.0.4-alpha.40
2304
+
2305
+ ### Patch Changes
2306
+
2307
+ - Add remote sync for taste
2308
+
2309
+ ## 0.0.4-alpha.39
2310
+
2311
+ ### Patch Changes
2312
+
2313
+ - Improve sync engine
2314
+
2315
+ ## 0.0.4-alpha.38
2316
+
2317
+ ### Patch Changes
2318
+
2319
+ - Fix sync bugs
2320
+
2321
+ ## 0.0.4-alpha.37
2322
+
2323
+ ### Patch Changes
2324
+
2325
+ - Improved auth
2326
+
2327
+ ## 0.0.4-alpha.36
2328
+
2329
+ ### Patch Changes
2330
+
2331
+ - Add cmd update command
2332
+
2333
+ ## 0.0.4-alpha.35
2334
+
2335
+ ### Patch Changes
2336
+
2337
+ - Improved model selector
2338
+
2339
+ ## 0.0.4-alpha.34
2340
+
2341
+ ### Patch Changes
2342
+
2343
+ - Improved learning agent permissions
2344
+
2345
+ ## 0.0.4-alpha.33
2346
+
2347
+ ### Patch Changes
2348
+
2349
+ - Add taste open and lint commands
2350
+
2351
+ ## 0.0.4-alpha.32
2352
+
2353
+ ### Patch Changes
2354
+
2355
+ - Improve provider notice
2356
+
2357
+ ## 0.0.4-alpha.31
2358
+
2359
+ ### Patch Changes
2360
+
2361
+ - Improve dx for model switcher
2362
+
2363
+ ## 0.0.4-alpha.30
2364
+
2365
+ ### Patch Changes
2366
+
2367
+ - Improved taste agent and permissions
2368
+
2369
+ ## 0.0.4-alpha.29
2370
+
2371
+ ### Patch Changes
2372
+
2373
+ - Add taste sync
2374
+
2375
+ ## 0.0.4-alpha.28
2376
+
2377
+ ### Patch Changes
2378
+
2379
+ - Enhanced user intentions understanding in taste
2380
+
2381
+ ## 0.0.4-alpha.27
2382
+
2383
+ ### Patch Changes
2384
+
2385
+ - Improved taste and update ux
2386
+
2387
+ ## 0.0.4-alpha.26
2388
+
2389
+ ### Patch Changes
2390
+
2391
+ - Add taste feed
2392
+
2393
+ ## 0.0.4-alpha.25
2394
+
2395
+ ### Patch Changes
2396
+
2397
+ - Update billing link
2398
+
2399
+ ## 0.0.4-alpha.24
2400
+
2401
+ ### Patch Changes
2402
+
2403
+ - Improved UX + Taste Learning
2404
+
2405
+ ## 0.0.4-alpha.23
2406
+
2407
+ ### Patch Changes
2408
+
2409
+ - Updated visuals for tools
2410
+
2411
+ ## 0.0.4-alpha.22
2412
+
2413
+ ### Patch Changes
2414
+
2415
+ - Add whoami
2416
+
2417
+ ## 0.0.4-alpha.21
2418
+
2419
+ ### Patch Changes
2420
+
2421
+ - Fix auth issues
2422
+
2423
+ ## 0.0.4-alpha.20
2424
+
2425
+ ### Patch Changes
2426
+
2427
+ - 🐛 FIX: Learn route
2428
+
2429
+ ## 0.0.4-alpha.19
2430
+
2431
+ ### Patch Changes
2432
+
2433
+ - Update taste learning infra
2434
+
2435
+ ## 0.0.4-alpha.17
2436
+
2437
+ ### Patch Changes
2438
+
2439
+ - Memory support and fix bash tool
2440
+
2441
+ ## 0.0.4-alpha.16
2442
+
2443
+ ### Patch Changes
2444
+
2445
+ - new flags and ux changes
2446
+
2447
+ ## 0.0.4-alpha.15
2448
+
2449
+ ### Patch Changes
2450
+
2451
+ - Updated taste infra
2452
+
2453
+ ## 0.0.4-alpha.14
2454
+
2455
+ ### Patch Changes
2456
+
2457
+ - Custom slash commands
2458
+
2459
+ ## 0.0.4-alpha.13
2460
+
2461
+ ### Patch Changes
2462
+
2463
+ - Fixed clear command
2464
+
2465
+ ## 0.0.4-alpha.12
2466
+
2467
+ ### Patch Changes
2468
+
2469
+ - taste infra upgrade
2470
+
2471
+ ## 0.0.4-alpha.11
2472
+
2473
+ ### Patch Changes
2474
+
2475
+ - Improved spacing between Provider and taste status
2476
+
2477
+ ## 0.0.4-alpha.10
2478
+
2479
+ ### Patch Changes
2480
+
2481
+ - Responsive ASCII art
2482
+
2483
+ ## 0.0.4-alpha.9
2484
+
2485
+ ### Patch Changes
2486
+
2487
+ - Improved command code dependencies
2488
+
2489
+ ## 0.0.4-alpha.8
2490
+
2491
+ ### Patch Changes
2492
+
2493
+ - Added /provider command and improved dependencies
2494
+
2495
+ ## 0.0.4-alpha.7
2496
+
2497
+ ### Patch Changes
2498
+
2499
+ - Fix auth urls for different environments
2500
+
2501
+ ## 0.0.4-alpha.6
2502
+
2503
+ ### Patch Changes
2504
+
2505
+ - Fix autoupdate and improved error handling
2506
+
2507
+ ## 0.0.4-alpha.5
2508
+
2509
+ ### Patch Changes
2510
+
2511
+ - API based auth and billing
2512
+
2513
+ ## 0.0.4-alpha.4
2514
+
2515
+ ### Patch Changes
2516
+
2517
+ - Bash mode and responsiveness
2518
+
2519
+ ## 0.0.4-alpha.3
2520
+
2521
+ ### Patch Changes
2522
+
2523
+ - Better auth checks
2524
+
2525
+ ## 0.0.4-alpha.2
2526
+
2527
+ ### Patch Changes
2528
+
2529
+ - Readme updates and shared common libs
2530
+
2531
+ ## 0.0.4-alpha.1
2532
+
2533
+ ### Patch Changes
2534
+
2535
+ - Read tool formatting improved
2536
+
2537
+ ## 0.0.4-alpha.0
2538
+
2539
+ ### Patch Changes
2540
+
2541
+ - Alpha release