mirror of
https://github.com/anthropics/claude-code.git
synced 2026-04-18 01:13:17 +00:00
Compare commits
10 Commits
boris/pumg
...
audit-read
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
68d5416f4a | ||
|
|
d38bde5087 | ||
|
|
970fff49e2 | ||
|
|
2d0fcacc05 | ||
|
|
1fe9e369a7 | ||
|
|
b95fa46499 | ||
|
|
7a05427a4b | ||
|
|
84b97165dd | ||
|
|
07dcea57ee | ||
|
|
b42fd9928c |
40
CHANGELOG.md
40
CHANGELOG.md
@@ -1,5 +1,45 @@
|
||||
# Changelog
|
||||
|
||||
## 2.0.37
|
||||
|
||||
- Fixed how idleness is computed for notifications
|
||||
- Hooks: Added matcher values for Notification hook events
|
||||
- Output Styles: Added `keep-coding-instructions` option to frontmatter
|
||||
|
||||
## 2.0.36
|
||||
|
||||
- Fixed: DISABLE_AUTOUPDATER environment variable now properly disables package manager update notifications
|
||||
- Fixed queued messages being incorrectly executed as bash commands
|
||||
- Fixed input being lost when typing while a queued message is processed
|
||||
|
||||
## 2.0.35
|
||||
|
||||
- Improve fuzzy search results when searching commands
|
||||
- Improved VS Code extension to respect `chat.fontSize` and `chat.fontFamily` settings throughout the entire UI, and apply font changes immediately without requiring reload
|
||||
- Added `CLAUDE_CODE_EXIT_AFTER_STOP_DELAY` environment variable to automatically exit SDK mode after a specified idle duration, useful for automated workflows and scripts
|
||||
- Migrated `ignorePatterns` from project config to deny permissions in the localSettings.
|
||||
- Fixed messages returning null `stop_reason` and `stop_sequence` values
|
||||
- Fixed menu navigation getting stuck on items with empty string or other falsy values (e.g., in the `/hooks` menu)
|
||||
|
||||
## 2.0.34
|
||||
|
||||
- VSCode Extension: Added setting to configure the initial permission mode for new conversations
|
||||
- Improved file path suggestion performance with native Rust-based fuzzy finder
|
||||
- Fixed infinite token refresh loop that caused MCP servers with OAuth (e.g., Slack) to hang during connection
|
||||
- Fixed memory crash when reading or writing large files (especially base64-encoded images)
|
||||
|
||||
## 2.0.33
|
||||
|
||||
- Native binary installs now launch quicker.
|
||||
- Fixed `claude doctor` incorrectly detecting Homebrew vs npm-global installations by properly resolving symlinks
|
||||
- Fixed `claude mcp serve` exposing tools with incompatible outputSchemas
|
||||
|
||||
## 2.0.32
|
||||
|
||||
- Un-deprecate output styles based on community feedback
|
||||
- Added `companyAnnouncements` setting for displaying announcements on startup
|
||||
- Fixed hook progress messages not updating correctly during PostToolUse hook execution
|
||||
|
||||
## 2.0.31
|
||||
|
||||
- Windows: native installation uses shift+tab as shortcut for mode switching, instead of alt+m
|
||||
|
||||
13
README.md
13
README.md
@@ -22,7 +22,18 @@ npm install -g @anthropic-ai/claude-code
|
||||
|
||||
## Plugins
|
||||
|
||||
This repository includes several Claude Code plugins that extend functionality with custom commands and agents. See the [plugins directory](./plugins/README.md) for detailed documentation on available plugins.
|
||||
This repository includes 8 official Claude Code plugins that extend functionality with custom commands and agents:
|
||||
|
||||
- **[agent-sdk-dev](./plugins/agent-sdk-dev/)** - Development tools for Claude Agent SDK applications
|
||||
- **[code-review](./plugins/code-review/)** - Automated pull request code review
|
||||
- **[commit-commands](./plugins/commit-commands/)** - Git workflow automation
|
||||
- **[explanatory-output-style](./plugins/explanatory-output-style/)** - Enhanced explanatory communication style
|
||||
- **[feature-dev](./plugins/feature-dev/)** - Comprehensive feature development workflow
|
||||
- **[learning-output-style](./plugins/learning-output-style/)** - Educational and learning-focused output
|
||||
- **[pr-review-toolkit](./plugins/pr-review-toolkit/)** - Advanced PR review tools
|
||||
- **[security-guidance](./plugins/security-guidance/)** - Security-focused development guidance
|
||||
|
||||
See the [plugins directory](./plugins/README.md) for detailed documentation on available plugins.
|
||||
|
||||
## Reporting Bugs
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ Examples of false positives, for steps 4 and 5:
|
||||
- Pre-existing issues
|
||||
- Something that looks like a bug but is not actually a bug
|
||||
- Pedantic nitpicks that a senior engineer wouldn't call out
|
||||
- Issues that a linter will catch (no need to run the linter to verify)
|
||||
- Issues that a linter, typechecker, or test runner will catch (eg. failing tests, lint errors, type errors). Do not run these to verify; assume that they will be run as part of CI.
|
||||
- General code quality issues (eg. lack of test coverage, general security issues), unless explicitly required in CLAUDE.md
|
||||
- Issues that are called out in CLAUDE.md, but explicitly silenced in the code (eg. due to a lint ignore comment)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user