recoder-code 1.0.113
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/.babelrc +4 -0
- package/.claude/commands/commit-push-pr.md +19 -0
- package/.claude/commands/dedupe.md +38 -0
- package/.devcontainer/Dockerfile +91 -0
- package/.devcontainer/devcontainer.json +57 -0
- package/.devcontainer/init-firewall.sh +137 -0
- package/.gitattributes +2 -0
- package/.github/ISSUE_TEMPLATE/bug_report.yml +188 -0
- package/.github/ISSUE_TEMPLATE/config.yml +17 -0
- package/.github/ISSUE_TEMPLATE/documentation.yml +117 -0
- package/.github/ISSUE_TEMPLATE/feature_request.yml +132 -0
- package/.github/ISSUE_TEMPLATE/model_behavior.yml +220 -0
- package/.github/workflows/auto-close-duplicates.yml +31 -0
- package/.github/workflows/backfill-duplicate-comments.yml +44 -0
- package/.github/workflows/claude-dedupe-issues.yml +80 -0
- package/.github/workflows/claude-issue-triage.yml +106 -0
- package/.github/workflows/claude.yml +37 -0
- package/.github/workflows/issue-opened-dispatch.yml +28 -0
- package/.github/workflows/lock-closed-issues.yml +92 -0
- package/.github/workflows/log-issue-events.yml +40 -0
- package/CHANGELOG.md +646 -0
- package/KILO.md +1273 -0
- package/LICENSE.md +21 -0
- package/README.md +176 -0
- package/SECURITY.md +12 -0
- package/Script/run_devcontainer_claude_code.ps1 +152 -0
- package/api/githubApi.ts +144 -0
- package/babel.config.js +7 -0
- package/cli/.gitkeep +0 -0
- package/cli/auto-close-duplicates.ts +5 -0
- package/cli/configure.js +33 -0
- package/cli/list-models.js +48 -0
- package/cli/run.js +61 -0
- package/cli/set-api-key.js +26 -0
- package/config.json +4 -0
- package/demo.gif +0 -0
- package/examples/gpt-3.5-turbo.js +38 -0
- package/examples/gpt-4.js +38 -0
- package/examples/hooks/bash_command_validator_example.py +83 -0
- package/index.d.ts +3 -0
- package/index.js +62 -0
- package/jest.config.js +6 -0
- package/openapi.yaml +61 -0
- package/package.json +47 -0
- package/scripts/backfill-duplicate-comments.ts +213 -0
- package/tests/api-githubApi.test.ts +30 -0
- package/tests/auto-close-duplicates.test.ts +145 -0
- package/tests/cli-configure.test.ts +88 -0
- package/tests/cli-list-models.test.ts +44 -0
- package/tests/cli-run.test.ts +97 -0
- package/tests/cli-set-api-key.test.ts +54 -0
- package/tests/cli-validate-api-key.test.ts +52 -0
- package/tsconfig.json +18 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,646 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.0.112
|
|
4
|
+
|
|
5
|
+
- Transcript mode (Ctrl+R): Added the model used to generate each assistant message
|
|
6
|
+
- Addressed issue where some Recoder Max users were incorrectly recognized as Recoder Pro users
|
|
7
|
+
- Hooks: Added systemMessage support for SessionEnd hooks
|
|
8
|
+
- Added `spinnerTipsEnabled` setting to disable spinner tips
|
|
9
|
+
- IDE: Various improvements and bug fixes
|
|
10
|
+
|
|
11
|
+
## 1.0.111
|
|
12
|
+
|
|
13
|
+
- /model now validates provided model names
|
|
14
|
+
- Fixed Bash tool crashes caused by malformed shell syntax parsing
|
|
15
|
+
|
|
16
|
+
## 1.0.110
|
|
17
|
+
|
|
18
|
+
- /terminal-setup command now supports WezTerm
|
|
19
|
+
- MCP: OAuth tokens now proactively refresh before expiration
|
|
20
|
+
- Fixed reliability issues with background Bash processes
|
|
21
|
+
|
|
22
|
+
## 1.0.109
|
|
23
|
+
|
|
24
|
+
- SDK: Added partial message streaming support via `--include-partial-messages` CLI flag
|
|
25
|
+
|
|
26
|
+
## 1.0.106
|
|
27
|
+
|
|
28
|
+
- Windows: Fixed path permission matching to consistently use POSIX format (e.g., `Read(//c/Users/...)`)
|
|
29
|
+
|
|
30
|
+
## 1.0.97
|
|
31
|
+
|
|
32
|
+
- Settings: /doctor now validates permission rule syntax and suggests corrections
|
|
33
|
+
|
|
34
|
+
## 1.0.94
|
|
35
|
+
|
|
36
|
+
- Vertex: add support for global endpoints for supported models
|
|
37
|
+
- /memory command now allows direct editing of all imported memory files
|
|
38
|
+
- SDK: Add custom tools as callbacks
|
|
39
|
+
- Added /todos command to list current todo items
|
|
40
|
+
|
|
41
|
+
## 1.0.93
|
|
42
|
+
|
|
43
|
+
- Windows: Add alt + v shortcut for pasting images from clipboard
|
|
44
|
+
- Support NO_PROXY environment variable to bypass proxy for specified hostnames and IPs
|
|
45
|
+
|
|
46
|
+
## 1.0.90
|
|
47
|
+
|
|
48
|
+
- Settings file changes take effect immediately - no restart required
|
|
49
|
+
|
|
50
|
+
## 1.0.88
|
|
51
|
+
|
|
52
|
+
- Fixed issue causing "OAuth authentication is currently not supported"
|
|
53
|
+
- Status line input now includes `exceeds_200k_tokens`
|
|
54
|
+
- Fixed incorrect usage tracking in /cost.
|
|
55
|
+
- Introduced `ANTHROPIC_DEFAULT_SONNET_MODEL` and `ANTHROPIC_DEFAULT_OPUS_MODEL` for controlling model aliases opusplan, opus, and sonnet.
|
|
56
|
+
- Bedrock: Updated default Sonnet model to Sonnet 4
|
|
57
|
+
|
|
58
|
+
## 1.0.86
|
|
59
|
+
|
|
60
|
+
- Added /context to help users self-serve debug context issues
|
|
61
|
+
- SDK: Added UUID support for all SDK messages
|
|
62
|
+
- SDK: Added `--replay-user-messages` to replay user messages back to stdout
|
|
63
|
+
|
|
64
|
+
## 1.0.85
|
|
65
|
+
|
|
66
|
+
- Status line input now includes session cost info
|
|
67
|
+
- Hooks: Introduced SessionEnd hook
|
|
68
|
+
|
|
69
|
+
## 1.0.84
|
|
70
|
+
|
|
71
|
+
- Fix tool_use/tool_result id mismatch error when network is unstable
|
|
72
|
+
- Fix Recoder sometimes ignoring real-time steering when wrapping up a task
|
|
73
|
+
- @-mention: Add ~/.claude/\* files to suggestions for easier agent, output style, and slash command editing
|
|
74
|
+
- Use built-in ripgrep by default; to opt out of this behavior, set USE_BUILTIN_RIPGREP=0
|
|
75
|
+
|
|
76
|
+
## 1.0.83
|
|
77
|
+
|
|
78
|
+
- @-mention: Support files with spaces in path
|
|
79
|
+
- New shimmering spinner
|
|
80
|
+
|
|
81
|
+
## 1.0.82
|
|
82
|
+
|
|
83
|
+
- SDK: Add request cancellation support
|
|
84
|
+
- SDK: New additionalDirectories option to search custom paths, improved slash command processing
|
|
85
|
+
- Settings: Validation prevents invalid fields in .claude/settings.json files
|
|
86
|
+
- MCP: Improve tool name consistency
|
|
87
|
+
- Bash: Fix crash when Recoder tries to automatically read large files
|
|
88
|
+
|
|
89
|
+
## 1.0.81
|
|
90
|
+
|
|
91
|
+
- Released output styles, including new built-in educational output styles "Explanatory" and "Learning". Docs: https://docs.anthropic.com/en/docs/claude-code/output-styles
|
|
92
|
+
- Agents: Fix custom agent loading when agent files are unparsable
|
|
93
|
+
|
|
94
|
+
## 1.0.80
|
|
95
|
+
|
|
96
|
+
- UI improvements: Fix text contrast for custom subagent colors and spinner rendering issues
|
|
97
|
+
|
|
98
|
+
## 1.0.77
|
|
99
|
+
|
|
100
|
+
- Bash tool: Fix heredoc and multiline string escaping, improve stderr redirection handling
|
|
101
|
+
- SDK: Add session support and permission denial tracking
|
|
102
|
+
- Fix token limit errors in conversation summarization
|
|
103
|
+
- Opus Plan Mode: New setting in `/model` to run Opus only in plan mode, Sonnet otherwise
|
|
104
|
+
|
|
105
|
+
## 1.0.73
|
|
106
|
+
|
|
107
|
+
- MCP: Support multiple config files with `--mcp-config file1.json file2.json`
|
|
108
|
+
- MCP: Press Esc to cancel OAuth authentication flows
|
|
109
|
+
- Bash: Improved command validation and reduced false security warnings
|
|
110
|
+
- UI: Enhanced spinner animations and status line visual hierarchy
|
|
111
|
+
- Linux: Added support for Alpine and musl-based distributions (requires separate ripgrep installation)
|
|
112
|
+
|
|
113
|
+
## 1.0.72
|
|
114
|
+
|
|
115
|
+
- Ask permissions: have Recoder Code always ask for confirmation to use specific tools with /permissions
|
|
116
|
+
|
|
117
|
+
## 1.0.71
|
|
118
|
+
|
|
119
|
+
- Background commands: (Ctrl-b) to run any Bash command in the background so Recoder can keep working (great for dev servers, tailing logs, etc.)
|
|
120
|
+
- Customizable status line: add your terminal prompt to Recoder Code with /statusline
|
|
121
|
+
|
|
122
|
+
## 1.0.70
|
|
123
|
+
|
|
124
|
+
- Performance: Optimized message rendering for better performance with large contexts
|
|
125
|
+
- Windows: Fixed native file search, ripgrep, and subagent functionality
|
|
126
|
+
- Added support for @-mentions in slash command arguments
|
|
127
|
+
|
|
128
|
+
## 1.0.69
|
|
129
|
+
|
|
130
|
+
- Upgraded Opus to version 4.1
|
|
131
|
+
|
|
132
|
+
## 1.0.68
|
|
133
|
+
|
|
134
|
+
- Fix incorrect model names being used for certain commands like `/pr-comments`
|
|
135
|
+
- Windows: improve permissions checks for allow / deny tools and project trust. This may create a new project entry in `.claude.json` - manually merge the history field if desired.
|
|
136
|
+
- Windows: improve sub-process spawning to eliminate "No such file or directory" when running commands like pnpm
|
|
137
|
+
- Enhanced /doctor command with CLAUDE.md and MCP tool context for self-serve debugging
|
|
138
|
+
- SDK: Added canUseTool callback support for tool confirmation
|
|
139
|
+
- Added `disableAllHooks` setting
|
|
140
|
+
- Improved file suggestions performance in large repos
|
|
141
|
+
|
|
142
|
+
## 1.0.65
|
|
143
|
+
|
|
144
|
+
- IDE: Fixed connection stability issues and error handling for diagnostics
|
|
145
|
+
- Windows: Fixed shell environment setup for users without .bashrc files
|
|
146
|
+
|
|
147
|
+
## 1.0.64
|
|
148
|
+
|
|
149
|
+
- Agents: Added model customization support - you can now specify which model an agent should use
|
|
150
|
+
- Agents: Fixed unintended access to the recursive agent tool
|
|
151
|
+
- Hooks: Added systemMessage field to hook JSON output for displaying warnings and context
|
|
152
|
+
- SDK: Fixed user input tracking across multi-turn conversations
|
|
153
|
+
- Added hidden files to file search and @-mention suggestions
|
|
154
|
+
|
|
155
|
+
## 1.0.63
|
|
156
|
+
|
|
157
|
+
- Windows: Fixed file search, @agent mentions, and custom slash commands functionality
|
|
158
|
+
|
|
159
|
+
## 1.0.62
|
|
160
|
+
|
|
161
|
+
- Added @-mention support with typeahead for custom agents. @<your-custom-agent> to invoke it
|
|
162
|
+
- Hooks: Added SessionStart hook for new session initialization
|
|
163
|
+
- /add-dir command now supports typeahead for directory paths
|
|
164
|
+
- Improved network connectivity check reliability
|
|
165
|
+
|
|
166
|
+
## 1.0.61
|
|
167
|
+
|
|
168
|
+
- Transcript mode (Ctrl+R): Changed Esc to exit transcript mode rather than interrupt
|
|
169
|
+
- Settings: Added `--settings` flag to load settings from a JSON file
|
|
170
|
+
- Settings: Fixed resolution of settings files paths that are symlinks
|
|
171
|
+
- OTEL: Fixed reporting of wrong organization after authentication changes
|
|
172
|
+
- Slash commands: Fixed permissions checking for allowed-tools with Bash
|
|
173
|
+
- IDE: Added support for pasting images in VSCode MacOS using ⌘+V
|
|
174
|
+
- IDE: Added `CLAUDE_CODE_AUTO_CONNECT_IDE=false` for disabling IDE auto-connection
|
|
175
|
+
- Added `CLAUDE_CODE_SHELL_PREFIX` for wrapping Recoder and user-provided shell commands run by Recoder Code
|
|
176
|
+
|
|
177
|
+
## 1.0.60
|
|
178
|
+
|
|
179
|
+
- You can now create custom subagents for specialized tasks! Run /agents to get started
|
|
180
|
+
|
|
181
|
+
## 1.0.59
|
|
182
|
+
|
|
183
|
+
- SDK: Added tool confirmation support with canUseTool callback
|
|
184
|
+
- SDK: Allow specifying env for spawned process
|
|
185
|
+
- Hooks: Exposed PermissionDecision to hooks (including "ask")
|
|
186
|
+
- Hooks: UserPromptSubmit now supports additionalContext in advanced JSON output
|
|
187
|
+
- Fixed issue where some Max users that specified Opus would still see fallback to Sonnet
|
|
188
|
+
|
|
189
|
+
## 1.0.58
|
|
190
|
+
|
|
191
|
+
- Added support for reading PDFs
|
|
192
|
+
- MCP: Improved server health status display in 'claude mcp list'
|
|
193
|
+
- Hooks: Added CLAUDE_PROJECT_DIR env var for hook commands
|
|
194
|
+
|
|
195
|
+
## 1.0.57
|
|
196
|
+
|
|
197
|
+
- Added support for specifying a model in slash commands
|
|
198
|
+
- Improved permission messages to help Recoder understand allowed tools
|
|
199
|
+
- Fix: Remove trailing newlines from bash output in terminal wrapping
|
|
200
|
+
|
|
201
|
+
## 1.0.56
|
|
202
|
+
|
|
203
|
+
- Windows: Enabled shift+tab for mode switching on versions of Node.js that support terminal VT mode
|
|
204
|
+
- Fixes for WSL IDE detection
|
|
205
|
+
- Fix an issue causing awsRefreshHelper changes to .aws directory not to be picked up
|
|
206
|
+
|
|
207
|
+
## 1.0.55
|
|
208
|
+
|
|
209
|
+
- Clarified knowledge cutoff for Opus 4 and Sonnet 4 models
|
|
210
|
+
- Windows: fixed Ctrl+Z crash
|
|
211
|
+
- SDK: Added ability to capture error logging
|
|
212
|
+
- Add --system-prompt-file option to override system prompt in print mode
|
|
213
|
+
|
|
214
|
+
## 1.0.54
|
|
215
|
+
|
|
216
|
+
- Hooks: Added UserPromptSubmit hook and the current working directory to hook inputs
|
|
217
|
+
- Custom slash commands: Added argument-hint to frontmatter
|
|
218
|
+
- Windows: OAuth uses port 45454 and properly constructs browser URL
|
|
219
|
+
- Windows: mode switching now uses alt + m, and plan mode renders properly
|
|
220
|
+
- Shell: Switch to in-memory shell snapshot to fix file-related errors
|
|
221
|
+
|
|
222
|
+
## 1.0.53
|
|
223
|
+
|
|
224
|
+
- Updated @-mention file truncation from 100 lines to 2000 lines
|
|
225
|
+
- Add helper script settings for AWS token refresh: awsAuthRefresh (for foreground operations like aws sso login) and awsCredentialExport (for background operation with STS-like response).
|
|
226
|
+
|
|
227
|
+
## 1.0.52
|
|
228
|
+
|
|
229
|
+
- Added support for MCP server instructions
|
|
230
|
+
|
|
231
|
+
## 1.0.51
|
|
232
|
+
|
|
233
|
+
- Added support for native Windows (requires Git for Windows)
|
|
234
|
+
- Added support for Bedrock API keys through environment variable AWS_BEARER_TOKEN_BEDROCK
|
|
235
|
+
- Settings: /doctor can now help you identify and fix invalid setting files
|
|
236
|
+
- `--append-system-prompt` can now be used in interactive mode, not just --print/-p.
|
|
237
|
+
- Increased auto-compact warning threshold from 60% to 80%
|
|
238
|
+
- Fixed an issue with handling user directories with spaces for shell snapshots
|
|
239
|
+
- OTEL resource now includes os.type, os.version, host.arch, and wsl.version (if running on Windows Subsystem for Linux)
|
|
240
|
+
- Custom slash commands: Fixed user-level commands in subdirectories
|
|
241
|
+
- Plan mode: Fixed issue where rejected plan from sub-task would get discarded
|
|
242
|
+
|
|
243
|
+
## 1.0.48
|
|
244
|
+
|
|
245
|
+
- Fixed a bug in v1.0.45 where the app would sometimes freeze on launch
|
|
246
|
+
- Added progress messages to Bash tool based on the last 5 lines of command output
|
|
247
|
+
- Added expanding variables support for MCP server configuration
|
|
248
|
+
- Moved shell snapshots from /tmp to ~/.claude for more reliable Bash tool calls
|
|
249
|
+
- Improved IDE extension path handling when Recoder Code runs in WSL
|
|
250
|
+
- Hooks: Added a PreCompact hook
|
|
251
|
+
- Vim mode: Added c, f/F, t/T
|
|
252
|
+
|
|
253
|
+
## 1.0.45
|
|
254
|
+
|
|
255
|
+
- Redesigned Search (Grep) tool with new tool input parameters and features
|
|
256
|
+
- Disabled IDE diffs for notebook files, fixing "Timeout waiting after 1000ms" error
|
|
257
|
+
- Fixed config file corruption issue by enforcing atomic writes
|
|
258
|
+
- Updated prompt input undo to Ctrl+\_ to avoid breaking existing Ctrl+U behavior, matching zsh's undo shortcut
|
|
259
|
+
- Stop Hooks: Fixed transcript path after /clear and fixed triggering when loop ends with tool call
|
|
260
|
+
- Custom slash commands: Restored namespacing in command names based on subdirectories. For example, .claude/commands/frontend/component.md is now /frontend:component, not /component.
|
|
261
|
+
|
|
262
|
+
## 1.0.44
|
|
263
|
+
|
|
264
|
+
- New /export command lets you quickly export a conversation for sharing
|
|
265
|
+
- MCP: resource_link tool results are now supported
|
|
266
|
+
- MCP: tool annotations and tool titles now display in /mcp view
|
|
267
|
+
- Changed Ctrl+Z to suspend Recoder Code. Resume by running `fg`. Prompt input undo is now Ctrl+U.
|
|
268
|
+
|
|
269
|
+
## 1.0.43
|
|
270
|
+
|
|
271
|
+
- Fixed a bug where the theme selector was saving excessively
|
|
272
|
+
- Hooks: Added EPIPE system error handling
|
|
273
|
+
|
|
274
|
+
## 1.0.42
|
|
275
|
+
|
|
276
|
+
- Added tilde (`~`) expansion support to `/add-dir` command
|
|
277
|
+
|
|
278
|
+
## 1.0.41
|
|
279
|
+
|
|
280
|
+
- Hooks: Split Stop hook triggering into Stop and SubagentStop
|
|
281
|
+
- Hooks: Enabled optional timeout configuration for each command
|
|
282
|
+
- Hooks: Added "hook_event_name" to hook input
|
|
283
|
+
- Fixed a bug where MCP tools would display twice in tool list
|
|
284
|
+
- New tool parameters JSON for Bash tool in `tool_decision` event
|
|
285
|
+
|
|
286
|
+
## 1.0.40
|
|
287
|
+
|
|
288
|
+
- Fixed a bug causing API connection errors with UNABLE_TO_GET_ISSUER_CERT_LOCALLY if `NODE_EXTRA_CA_CERTS` was set
|
|
289
|
+
|
|
290
|
+
## 1.0.39
|
|
291
|
+
|
|
292
|
+
- New Active Time metric in OpenTelemetry logging
|
|
293
|
+
|
|
294
|
+
## 1.0.38
|
|
295
|
+
|
|
296
|
+
- Released hooks. Special thanks to community input in https://github.com/anthropics/claude-code/issues/712. Docs: https://docs.anthropic.com/en/docs/claude-code/hooks
|
|
297
|
+
|
|
298
|
+
## 1.0.37
|
|
299
|
+
|
|
300
|
+
- Remove ability to set `Proxy-Authorization` header via ANTHROPIC_AUTH_TOKEN or apiKeyHelper
|
|
301
|
+
|
|
302
|
+
## 1.0.36
|
|
303
|
+
|
|
304
|
+
- Web search now takes today's date into context
|
|
305
|
+
- Fixed a bug where stdio MCP servers were not terminating properly on exit
|
|
306
|
+
|
|
307
|
+
## 1.0.35
|
|
308
|
+
|
|
309
|
+
- Added support for MCP OAuth Authorization Server discovery
|
|
310
|
+
|
|
311
|
+
## 1.0.34
|
|
312
|
+
|
|
313
|
+
- Fixed a memory leak causing a MaxListenersExceededWarning message to appear
|
|
314
|
+
|
|
315
|
+
## 1.0.33
|
|
316
|
+
|
|
317
|
+
- Improved logging functionality with session ID support
|
|
318
|
+
- Added prompt input undo functionality (Ctrl+Z and vim 'u' command)
|
|
319
|
+
- Improvements to plan mode
|
|
320
|
+
|
|
321
|
+
## 1.0.32
|
|
322
|
+
|
|
323
|
+
- Updated loopback config for litellm
|
|
324
|
+
- Added forceLoginMethod setting to bypass login selection screen
|
|
325
|
+
|
|
326
|
+
## 1.0.31
|
|
327
|
+
|
|
328
|
+
- Fixed a bug where ~/.claude.json would get reset when file contained invalid JSON
|
|
329
|
+
|
|
330
|
+
## 1.0.30
|
|
331
|
+
|
|
332
|
+
- Custom slash commands: Run bash output, @-mention files, enable thinking with thinking keywords
|
|
333
|
+
- Improved file path autocomplete with filename matching
|
|
334
|
+
- Added timestamps in Ctrl-r mode and fixed Ctrl-c handling
|
|
335
|
+
- Enhanced jq regex support for complex filters with pipes and select
|
|
336
|
+
|
|
337
|
+
## 1.0.29
|
|
338
|
+
|
|
339
|
+
- Improved CJK character support in cursor navigation and rendering
|
|
340
|
+
|
|
341
|
+
## 1.0.28
|
|
342
|
+
|
|
343
|
+
- Slash commands: Fix selector display during history navigation
|
|
344
|
+
- Resizes images before upload to prevent API size limit errors
|
|
345
|
+
- Added XDG_CONFIG_HOME support to configuration directory
|
|
346
|
+
- Performance optimizations for memory usage
|
|
347
|
+
- New attributes (terminal.type, language) in OpenTelemetry logging
|
|
348
|
+
|
|
349
|
+
## 1.0.27
|
|
350
|
+
|
|
351
|
+
- Streamable HTTP MCP servers are now supported
|
|
352
|
+
- Remote MCP servers (SSE and HTTP) now support OAuth
|
|
353
|
+
- MCP resources can now be @-mentioned
|
|
354
|
+
- /resume slash command to switch conversations within Recoder Code
|
|
355
|
+
|
|
356
|
+
## 1.0.25
|
|
357
|
+
|
|
358
|
+
- Slash commands: moved "project" and "user" prefixes to descriptions
|
|
359
|
+
- Slash commands: improved reliability for command discovery
|
|
360
|
+
- Improved support for Ghostty
|
|
361
|
+
- Improved web search reliability
|
|
362
|
+
|
|
363
|
+
## 1.0.24
|
|
364
|
+
|
|
365
|
+
- Improved /mcp output
|
|
366
|
+
- Fixed a bug where settings arrays got overwritten instead of merged
|
|
367
|
+
|
|
368
|
+
## 1.0.23
|
|
369
|
+
|
|
370
|
+
- Released TypeScript SDK: import @anthropic-ai/claude-code to get started
|
|
371
|
+
- Released Python SDK: pip install claude-code-sdk to get started
|
|
372
|
+
|
|
373
|
+
## 1.0.22
|
|
374
|
+
|
|
375
|
+
- SDK: Renamed `total_cost` to `total_cost_usd`
|
|
376
|
+
|
|
377
|
+
## 1.0.21
|
|
378
|
+
|
|
379
|
+
- Improved editing of files with tab-based indentation
|
|
380
|
+
- Fix for tool_use without matching tool_result errors
|
|
381
|
+
- Fixed a bug where stdio MCP server processes would linger after quitting Recoder Code
|
|
382
|
+
|
|
383
|
+
## 1.0.18
|
|
384
|
+
|
|
385
|
+
- Added --add-dir CLI argument for specifying additional working directories
|
|
386
|
+
- Added streaming input support without require -p flag
|
|
387
|
+
- Improved startup performance and session storage performance
|
|
388
|
+
- Added CLAUDE_BASH_MAINTAIN_PROJECT_WORKING_DIR environment variable to freeze working directory for bash commands
|
|
389
|
+
- Added detailed MCP server tools display (/mcp)
|
|
390
|
+
- MCP authentication and permission improvements
|
|
391
|
+
- Added auto-reconnection for MCP SSE connections on disconnect
|
|
392
|
+
- Fixed issue where pasted content was lost when dialogs appeared
|
|
393
|
+
|
|
394
|
+
## 1.0.17
|
|
395
|
+
|
|
396
|
+
- We now emit messages from sub-tasks in -p mode (look for the parent_tool_use_id property)
|
|
397
|
+
- Fixed crashes when the VS Code diff tool is invoked multiple times quickly
|
|
398
|
+
- MCP server list UI improvements
|
|
399
|
+
- Update Recoder Code process title to display "claude" instead of "node"
|
|
400
|
+
|
|
401
|
+
## 1.0.11
|
|
402
|
+
|
|
403
|
+
- Recoder Code can now also be used with a Recoder Pro subscription
|
|
404
|
+
- Added /upgrade for smoother switching to Recoder Max plans
|
|
405
|
+
- Improved UI for authentication from API keys and Bedrock/Vertex/external auth tokens
|
|
406
|
+
- Improved shell configuration error handling
|
|
407
|
+
- Improved todo list handling during compaction
|
|
408
|
+
|
|
409
|
+
## 1.0.10
|
|
410
|
+
|
|
411
|
+
- Added markdown table support
|
|
412
|
+
- Improved streaming performance
|
|
413
|
+
|
|
414
|
+
## 1.0.8
|
|
415
|
+
|
|
416
|
+
- Fixed Vertex AI region fallback when using CLOUD_ML_REGION
|
|
417
|
+
- Increased default otel interval from 1s -> 5s
|
|
418
|
+
- Fixed edge cases where MCP_TIMEOUT and MCP_TOOL_TIMEOUT weren't being respected
|
|
419
|
+
- Fixed a regression where search tools unnecessarily asked for permissions
|
|
420
|
+
- Added support for triggering thinking non-English languages
|
|
421
|
+
- Improved compacting UI
|
|
422
|
+
|
|
423
|
+
## 1.0.7
|
|
424
|
+
|
|
425
|
+
- Renamed /allowed-tools -> /permissions
|
|
426
|
+
- Migrated allowedTools and ignorePatterns from .claude.json -> settings.json
|
|
427
|
+
- Deprecated claude config commands in favor of editing settings.json
|
|
428
|
+
- Fixed a bug where --dangerously-skip-permissions sometimes didn't work in --print mode
|
|
429
|
+
- Improved error handling for /install-github-app
|
|
430
|
+
- Bugfixes, UI polish, and tool reliability improvements
|
|
431
|
+
|
|
432
|
+
## 1.0.6
|
|
433
|
+
|
|
434
|
+
- Improved edit reliability for tab-indented files
|
|
435
|
+
- Respect CLAUDE_CONFIG_DIR everywhere
|
|
436
|
+
- Reduced unnecessary tool permission prompts
|
|
437
|
+
- Added support for symlinks in @file typeahead
|
|
438
|
+
- Bugfixes, UI polish, and tool reliability improvements
|
|
439
|
+
|
|
440
|
+
## 1.0.4
|
|
441
|
+
|
|
442
|
+
- Fixed a bug where MCP tool errors weren't being parsed correctly
|
|
443
|
+
|
|
444
|
+
## 1.0.1
|
|
445
|
+
|
|
446
|
+
- Added `DISABLE_INTERLEAVED_THINKING` to give users the option to opt out of interleaved thinking.
|
|
447
|
+
- Improved model references to show provider-specific names (Sonnet 3.7 for Bedrock, Sonnet 4 for Console)
|
|
448
|
+
- Updated documentation links and OAuth process descriptions
|
|
449
|
+
|
|
450
|
+
## 1.0.0
|
|
451
|
+
|
|
452
|
+
- Recoder Code is now generally available
|
|
453
|
+
- Introducing Sonnet 4 and Opus 4 models
|
|
454
|
+
|
|
455
|
+
## 0.2.125
|
|
456
|
+
|
|
457
|
+
- Breaking change: Bedrock ARN passed to `ANTHROPIC_MODEL` or `ANTHROPIC_SMALL_FAST_MODEL` should no longer contain an escaped slash (specify `/` instead of `%2F`)
|
|
458
|
+
- Removed `DEBUG=true` in favor of `ANTHROPIC_LOG=debug`, to log all requests
|
|
459
|
+
|
|
460
|
+
## 0.2.117
|
|
461
|
+
|
|
462
|
+
- Breaking change: --print JSON output now returns nested message objects, for forwards-compatibility as we introduce new metadata fields
|
|
463
|
+
- Introduced settings.cleanupPeriodDays
|
|
464
|
+
- Introduced CLAUDE_CODE_API_KEY_HELPER_TTL_MS env var
|
|
465
|
+
- Introduced --debug mode
|
|
466
|
+
|
|
467
|
+
## 0.2.108
|
|
468
|
+
|
|
469
|
+
- You can now send messages to Recoder while it works to steer Recoder in real-time
|
|
470
|
+
- Introduced BASH_DEFAULT_TIMEOUT_MS and BASH_MAX_TIMEOUT_MS env vars
|
|
471
|
+
- Fixed a bug where thinking was not working in -p mode
|
|
472
|
+
- Fixed a regression in /cost reporting
|
|
473
|
+
- Deprecated MCP wizard interface in favor of other MCP commands
|
|
474
|
+
- Lots of other bugfixes and improvements
|
|
475
|
+
|
|
476
|
+
## 0.2.107
|
|
477
|
+
|
|
478
|
+
- CLAUDE.md files can now import other files. Add @path/to/file.md to ./CLAUDE.md to load additional files on launch
|
|
479
|
+
|
|
480
|
+
## 0.2.106
|
|
481
|
+
|
|
482
|
+
- MCP SSE server configs can now specify custom headers
|
|
483
|
+
- Fixed a bug where MCP permission prompt didn't always show correctly
|
|
484
|
+
|
|
485
|
+
## 0.2.105
|
|
486
|
+
|
|
487
|
+
- Recoder can now search the web
|
|
488
|
+
- Moved system & account status to /status
|
|
489
|
+
- Added word movement keybindings for Vim
|
|
490
|
+
- Improved latency for startup, todo tool, and file edits
|
|
491
|
+
|
|
492
|
+
## 0.2.102
|
|
493
|
+
|
|
494
|
+
- Improved thinking triggering reliability
|
|
495
|
+
- Improved @mention reliability for images and folders
|
|
496
|
+
- You can now paste multiple large chunks into one prompt
|
|
497
|
+
|
|
498
|
+
## 0.2.100
|
|
499
|
+
|
|
500
|
+
- Fixed a crash caused by a stack overflow error
|
|
501
|
+
- Made db storage optional; missing db support disables --continue and --resume
|
|
502
|
+
|
|
503
|
+
## 0.2.98
|
|
504
|
+
|
|
505
|
+
- Fixed an issue where auto-compact was running twice
|
|
506
|
+
|
|
507
|
+
## 0.2.96
|
|
508
|
+
|
|
509
|
+
- Recoder Code can now also be used with a Recoder Max subscription (https://claude.ai/upgrade)
|
|
510
|
+
|
|
511
|
+
## 0.2.93
|
|
512
|
+
|
|
513
|
+
- Resume conversations from where you left off from with "claude --continue" and "claude --resume"
|
|
514
|
+
- Recoder now has access to a Todo list that helps it stay on track and be more organized
|
|
515
|
+
|
|
516
|
+
## 0.2.82
|
|
517
|
+
|
|
518
|
+
- Added support for --disallowedTools
|
|
519
|
+
- Renamed tools for consistency: LSTool -> LS, View -> Read, etc.
|
|
520
|
+
|
|
521
|
+
## 0.2.75
|
|
522
|
+
|
|
523
|
+
- Hit Enter to queue up additional messages while Recoder is working
|
|
524
|
+
- Drag in or copy/paste image files directly into the prompt
|
|
525
|
+
- @-mention files to directly add them to context
|
|
526
|
+
- Run one-off MCP servers with `claude --mcp-config <path-to-file>`
|
|
527
|
+
- Improved performance for filename auto-complete
|
|
528
|
+
|
|
529
|
+
## 0.2.74
|
|
530
|
+
|
|
531
|
+
- Added support for refreshing dynamically generated API keys (via apiKeyHelper), with a 5 minute TTL
|
|
532
|
+
- Task tool can now perform writes and run bash commands
|
|
533
|
+
|
|
534
|
+
## 0.2.72
|
|
535
|
+
|
|
536
|
+
- Updated spinner to indicate tokens loaded and tool usage
|
|
537
|
+
|
|
538
|
+
## 0.2.70
|
|
539
|
+
|
|
540
|
+
- Network commands like curl are now available for Recoder to use
|
|
541
|
+
- Recoder can now run multiple web queries in parallel
|
|
542
|
+
- Pressing ESC once immediately interrupts Recoder in Auto-accept mode
|
|
543
|
+
|
|
544
|
+
## 0.2.69
|
|
545
|
+
|
|
546
|
+
- Fixed UI glitches with improved Select component behavior
|
|
547
|
+
- Enhanced terminal output display with better text truncation logic
|
|
548
|
+
|
|
549
|
+
## 0.2.67
|
|
550
|
+
|
|
551
|
+
- Shared project permission rules can be saved in .claude/settings.json
|
|
552
|
+
|
|
553
|
+
## 0.2.66
|
|
554
|
+
|
|
555
|
+
- Print mode (-p) now supports streaming output via --output-format=stream-json
|
|
556
|
+
- Fixed issue where pasting could trigger memory or bash mode unexpectedly
|
|
557
|
+
|
|
558
|
+
## 0.2.63
|
|
559
|
+
|
|
560
|
+
- Fixed an issue where MCP tools were loaded twice, which caused tool call errors
|
|
561
|
+
|
|
562
|
+
## 0.2.61
|
|
563
|
+
|
|
564
|
+
- Navigate menus with vim-style keys (j/k) or bash/emacs shortcuts (Ctrl+n/p) for faster interaction
|
|
565
|
+
- Enhanced image detection for more reliable clipboard paste functionality
|
|
566
|
+
- Fixed an issue where ESC key could crash the conversation history selector
|
|
567
|
+
|
|
568
|
+
## 0.2.59
|
|
569
|
+
|
|
570
|
+
- Copy+paste images directly into your prompt
|
|
571
|
+
- Improved progress indicators for bash and fetch tools
|
|
572
|
+
- Bugfixes for non-interactive mode (-p)
|
|
573
|
+
|
|
574
|
+
## 0.2.54
|
|
575
|
+
|
|
576
|
+
- Quickly add to Memory by starting your message with '#'
|
|
577
|
+
- Press ctrl+r to see full output for long tool results
|
|
578
|
+
- Added support for MCP SSE transport
|
|
579
|
+
|
|
580
|
+
## 0.2.53
|
|
581
|
+
|
|
582
|
+
- New web fetch tool lets Recoder view URLs that you paste in
|
|
583
|
+
- Fixed a bug with JPEG detection
|
|
584
|
+
|
|
585
|
+
## 0.2.50
|
|
586
|
+
|
|
587
|
+
- New MCP "project" scope now allows you to add MCP servers to .mcp.json files and commit them to your repository
|
|
588
|
+
|
|
589
|
+
## 0.2.49
|
|
590
|
+
|
|
591
|
+
- Previous MCP server scopes have been renamed: previous "project" scope is now "local" and "global" scope is now "user"
|
|
592
|
+
|
|
593
|
+
## 0.2.47
|
|
594
|
+
|
|
595
|
+
- Press Tab to auto-complete file and folder names
|
|
596
|
+
- Press Shift + Tab to toggle auto-accept for file edits
|
|
597
|
+
- Automatic conversation compaction for infinite conversation length (toggle with /config)
|
|
598
|
+
|
|
599
|
+
## 0.2.44
|
|
600
|
+
|
|
601
|
+
- Ask Recoder to make a plan with thinking mode: just say 'think' or 'think harder' or even 'ultrathink'
|
|
602
|
+
|
|
603
|
+
## 0.2.41
|
|
604
|
+
|
|
605
|
+
- MCP server startup timeout can now be configured via MCP_TIMEOUT environment variable
|
|
606
|
+
- MCP server startup no longer blocks the app from starting up
|
|
607
|
+
|
|
608
|
+
## 0.2.37
|
|
609
|
+
|
|
610
|
+
- New /release-notes command lets you view release notes at any time
|
|
611
|
+
- `claude config add/remove` commands now accept multiple values separated by commas or spaces
|
|
612
|
+
|
|
613
|
+
## 0.2.36
|
|
614
|
+
|
|
615
|
+
- Import MCP servers from Recoder Desktop with `claude mcp add-from-claude-desktop`
|
|
616
|
+
- Add MCP servers as JSON strings with `claude mcp add-json <n> <json>`
|
|
617
|
+
|
|
618
|
+
## 0.2.34
|
|
619
|
+
|
|
620
|
+
- Vim bindings for text input - enable with /vim or /config
|
|
621
|
+
|
|
622
|
+
## 0.2.32
|
|
623
|
+
|
|
624
|
+
- Interactive MCP setup wizard: Run "claude mcp add" to add MCP servers with a step-by-step interface
|
|
625
|
+
- Fix for some PersistentShell issues
|
|
626
|
+
|
|
627
|
+
## 0.2.31
|
|
628
|
+
|
|
629
|
+
- Custom slash commands: Markdown files in .claude/commands/ directories now appear as custom slash commands to insert prompts into your conversation
|
|
630
|
+
- MCP debug mode: Run with --mcp-debug flag to get more information about MCP server errors
|
|
631
|
+
|
|
632
|
+
## 0.2.30
|
|
633
|
+
|
|
634
|
+
- Added ANSI color theme for better terminal compatibility
|
|
635
|
+
- Fixed issue where slash command arguments weren't being sent properly
|
|
636
|
+
- (Mac-only) API keys are now stored in macOS Keychain
|
|
637
|
+
|
|
638
|
+
## 0.2.26
|
|
639
|
+
|
|
640
|
+
- New /approved-tools command for managing tool permissions
|
|
641
|
+
- Word-level diff display for improved code readability
|
|
642
|
+
- Fuzzy matching for slash commands
|
|
643
|
+
|
|
644
|
+
## 0.2.21
|
|
645
|
+
|
|
646
|
+
- Fuzzy matching for /commands
|