mirror of
https://github.com/anthropics/claude-code.git
synced 2026-05-01 10:22:45 +00:00
Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e9a9efc121 | ||
|
|
10e6348e77 | ||
|
|
e431f5b496 | ||
|
|
052a1317c0 | ||
|
|
a6a8045031 | ||
|
|
74cc597eb5 | ||
|
|
923d727492 | ||
|
|
fb3a947cb5 | ||
|
|
2961ddcafe | ||
|
|
fd8f3801b9 | ||
|
|
26315247e7 | ||
|
|
5a91286a82 | ||
|
|
3196f36cee | ||
|
|
7d22b6e167 | ||
|
|
19a829ba68 | ||
|
|
18979efb8d | ||
|
|
f77acdf149 | ||
|
|
c13cf781ef | ||
|
|
cc70d3ab50 | ||
|
|
250b257c4e | ||
|
|
dec754edc9 |
5
.github/workflows/claude-dedupe-issues.yml
vendored
5
.github/workflows/claude-dedupe-issues.yml
vendored
@@ -17,16 +17,19 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
issues: write
|
issues: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Run Claude Code slash command
|
- name: Run Claude Code slash command
|
||||||
uses: anthropics/claude-code-base-action@v1
|
uses: anthropics/claude-code-action@v1
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
allowed_non_write_users: "*"
|
||||||
prompt: "/dedupe ${{ github.repository }}/issues/${{ github.event.issue.number || inputs.issue_number }}"
|
prompt: "/dedupe ${{ github.repository }}/issues/${{ github.event.issue.number || inputs.issue_number }}"
|
||||||
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||||
claude_args: "--model claude-sonnet-4-5-20250929"
|
claude_args: "--model claude-sonnet-4-5-20250929"
|
||||||
|
|||||||
69
.github/workflows/claude-issue-triage.yml
vendored
69
.github/workflows/claude-issue-triage.yml
vendored
@@ -11,15 +11,45 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
issues: write
|
issues: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Create triage prompt
|
- name: Setup GitHub MCP Server
|
||||||
run: |
|
run: |
|
||||||
mkdir -p /tmp/claude-prompts
|
mkdir -p /tmp/mcp-config
|
||||||
cat > /tmp/claude-prompts/triage-prompt.txt << 'EOF'
|
cat > /tmp/mcp-config/mcp-servers.json << 'EOF'
|
||||||
|
{
|
||||||
|
"mcpServers": {
|
||||||
|
"github": {
|
||||||
|
"command": "docker",
|
||||||
|
"args": [
|
||||||
|
"run",
|
||||||
|
"-i",
|
||||||
|
"--rm",
|
||||||
|
"-e",
|
||||||
|
"GITHUB_PERSONAL_ACCESS_TOKEN",
|
||||||
|
"ghcr.io/github/github-mcp-server:sha-7aced2b"
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"GITHUB_PERSONAL_ACCESS_TOKEN": "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
|
||||||
|
- name: Run Claude Code for Issue Triage
|
||||||
|
timeout-minutes: 5
|
||||||
|
uses: anthropics/claude-code-action@v1
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
allowed_non_write_users: "*"
|
||||||
|
prompt: |
|
||||||
You're an issue triage assistant for GitHub issues. Your task is to analyze the issue and select appropriate labels from the provided list.
|
You're an issue triage assistant for GitHub issues. Your task is to analyze the issue and select appropriate labels from the provided list.
|
||||||
|
|
||||||
IMPORTANT: Don't post any comments or messages to the issue. Your only action should be to apply labels.
|
IMPORTANT: Don't post any comments or messages to the issue. Your only action should be to apply labels.
|
||||||
@@ -68,39 +98,6 @@ jobs:
|
|||||||
- DO NOT post any comments to the issue
|
- DO NOT post any comments to the issue
|
||||||
- Your ONLY action should be to apply labels using mcp__github__update_issue
|
- Your ONLY action should be to apply labels using mcp__github__update_issue
|
||||||
- It's okay to not add any labels if none are clearly applicable
|
- It's okay to not add any labels if none are clearly applicable
|
||||||
EOF
|
|
||||||
|
|
||||||
- name: Setup GitHub MCP Server
|
|
||||||
run: |
|
|
||||||
mkdir -p /tmp/mcp-config
|
|
||||||
cat > /tmp/mcp-config/mcp-servers.json << 'EOF'
|
|
||||||
{
|
|
||||||
"mcpServers": {
|
|
||||||
"github": {
|
|
||||||
"command": "docker",
|
|
||||||
"args": [
|
|
||||||
"run",
|
|
||||||
"-i",
|
|
||||||
"--rm",
|
|
||||||
"-e",
|
|
||||||
"GITHUB_PERSONAL_ACCESS_TOKEN",
|
|
||||||
"ghcr.io/github/github-mcp-server:sha-7aced2b"
|
|
||||||
],
|
|
||||||
"env": {
|
|
||||||
"GITHUB_PERSONAL_ACCESS_TOKEN": "${{ secrets.GITHUB_TOKEN }}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
- name: Run Claude Code for Issue Triage
|
|
||||||
timeout-minutes: 5
|
|
||||||
uses: anthropics/claude-code-base-action@v1
|
|
||||||
env:
|
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
prompt_file: /tmp/claude-prompts/triage-prompt.txt
|
|
||||||
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||||
claude_args: |
|
claude_args: |
|
||||||
--model claude-sonnet-4-5-20250929
|
--model claude-sonnet-4-5-20250929
|
||||||
|
|||||||
69
.github/workflows/oncall-triage.yml
vendored
69
.github/workflows/oncall-triage.yml
vendored
@@ -16,15 +16,45 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
issues: write
|
issues: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Create oncall triage prompt
|
- name: Setup GitHub MCP Server
|
||||||
run: |
|
run: |
|
||||||
mkdir -p /tmp/claude-prompts
|
mkdir -p /tmp/mcp-config
|
||||||
cat > /tmp/claude-prompts/oncall-triage-prompt.txt << 'EOF'
|
cat > /tmp/mcp-config/mcp-servers.json << 'EOF'
|
||||||
|
{
|
||||||
|
"mcpServers": {
|
||||||
|
"github": {
|
||||||
|
"command": "docker",
|
||||||
|
"args": [
|
||||||
|
"run",
|
||||||
|
"-i",
|
||||||
|
"--rm",
|
||||||
|
"-e",
|
||||||
|
"GITHUB_PERSONAL_ACCESS_TOKEN",
|
||||||
|
"ghcr.io/github/github-mcp-server:sha-7aced2b"
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"GITHUB_PERSONAL_ACCESS_TOKEN": "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
|
||||||
|
- name: Run Claude Code for Oncall Triage
|
||||||
|
timeout-minutes: 10
|
||||||
|
uses: anthropics/claude-code-action@v1
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
allowed_non_write_users: "*"
|
||||||
|
prompt: |
|
||||||
You're an oncall triage assistant for GitHub issues. Your task is to identify critical issues that require immediate oncall attention.
|
You're an oncall triage assistant for GitHub issues. Your task is to identify critical issues that require immediate oncall attention.
|
||||||
|
|
||||||
Important: Don't post any comments or messages to the issues. Your only action should be to apply the "oncall" label to qualifying issues.
|
Important: Don't post any comments or messages to the issues. Your only action should be to apply the "oncall" label to qualifying issues.
|
||||||
@@ -82,39 +112,6 @@ jobs:
|
|||||||
- Close calls: List any issues that almost qualified but didn't quite meet the criteria (e.g., borderline blocking, had workarounds)
|
- Close calls: List any issues that almost qualified but didn't quite meet the criteria (e.g., borderline blocking, had workarounds)
|
||||||
- If no issues qualified, state that clearly
|
- If no issues qualified, state that clearly
|
||||||
- Format the summary clearly for easy reading
|
- Format the summary clearly for easy reading
|
||||||
EOF
|
|
||||||
|
|
||||||
- name: Setup GitHub MCP Server
|
|
||||||
run: |
|
|
||||||
mkdir -p /tmp/mcp-config
|
|
||||||
cat > /tmp/mcp-config/mcp-servers.json << 'EOF'
|
|
||||||
{
|
|
||||||
"mcpServers": {
|
|
||||||
"github": {
|
|
||||||
"command": "docker",
|
|
||||||
"args": [
|
|
||||||
"run",
|
|
||||||
"-i",
|
|
||||||
"--rm",
|
|
||||||
"-e",
|
|
||||||
"GITHUB_PERSONAL_ACCESS_TOKEN",
|
|
||||||
"ghcr.io/github/github-mcp-server:sha-7aced2b"
|
|
||||||
],
|
|
||||||
"env": {
|
|
||||||
"GITHUB_PERSONAL_ACCESS_TOKEN": "${{ secrets.GITHUB_TOKEN }}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
- name: Run Claude Code for Oncall Triage
|
|
||||||
timeout-minutes: 10
|
|
||||||
uses: anthropics/claude-code-base-action@v1
|
|
||||||
env:
|
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
prompt_file: /tmp/claude-prompts/oncall-triage-prompt.txt
|
|
||||||
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||||
claude_args: |
|
claude_args: |
|
||||||
--mcp-config /tmp/mcp-config/mcp-servers.json
|
--mcp-config /tmp/mcp-config/mcp-servers.json
|
||||||
|
|||||||
91
CHANGELOG.md
91
CHANGELOG.md
@@ -1,5 +1,96 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.1.19
|
||||||
|
|
||||||
|
- Added env var `CLAUDE_CODE_ENABLE_TASKS`, set to `false` to keep the old system temporarily
|
||||||
|
- Added shorthand `$0`, `$1`, etc. for accessing individual arguments in custom commands
|
||||||
|
- Fixed crashes on processors without AVX instruction support
|
||||||
|
- Fixed dangling Claude Code processes when terminal is closed by catching EIO errors from `process.exit()` and using SIGKILL as fallback
|
||||||
|
- Fixed `/rename` and `/tag` not updating the correct session when resuming from a different directory (e.g., git worktrees)
|
||||||
|
- Fixed resuming sessions by custom title not working when run from a different directory
|
||||||
|
- Fixed pasted text content being lost when using prompt stash (Ctrl+S) and restore
|
||||||
|
- Fixed agent list displaying "Sonnet (default)" instead of "Inherit (default)" for agents without an explicit model setting
|
||||||
|
- Fixed backgrounded hook commands not returning early, potentially causing the session to wait on a process that was intentionally backgrounded
|
||||||
|
- Fixed file write preview omitting empty lines
|
||||||
|
- Changed skills without additional permissions or hooks to be allowed without requiring approval
|
||||||
|
- Changed indexed argument syntax from `$ARGUMENTS.0` to `$ARGUMENTS[0]` (bracket syntax)
|
||||||
|
- [SDK] Added replay of `queued_command` attachment messages as `SDKUserMessageReplay` events when `replayUserMessages` is enabled
|
||||||
|
- [VSCode] Enabled session forking and rewind functionality for all users
|
||||||
|
|
||||||
|
## 2.1.18
|
||||||
|
|
||||||
|
- Added customizable keyboard shortcuts. Configure keybindings per context, create chord sequences, and personalize your workflow. Run `/keybindings` to get started. Learn more at https://code.claude.com/docs/en/keybindings
|
||||||
|
|
||||||
|
## 2.1.17
|
||||||
|
|
||||||
|
- Fixed crashes on processors without AVX instruction support
|
||||||
|
|
||||||
|
## 2.1.16
|
||||||
|
|
||||||
|
- Added new task management system, including new capabilities like dependency tracking
|
||||||
|
- [VSCode] Added native plugin management support
|
||||||
|
- [VSCode] Added ability for OAuth users to browse and resume remote Claude sessions from the Sessions dialog
|
||||||
|
- Fixed out-of-memory crashes when resuming sessions with heavy subagent usage
|
||||||
|
- Fixed an issue where the "context remaining" warning was not hidden after running `/compact`
|
||||||
|
- Fixed session titles on the resume screen not respecting the user's language setting
|
||||||
|
- [IDE] Fixed a race condition on Windows where the Claude Code sidebar view container would not appear on start
|
||||||
|
|
||||||
|
## 2.1.15
|
||||||
|
|
||||||
|
- Added deprecation notification for npm installations - run `claude install` or see https://docs.anthropic.com/en/docs/claude-code/getting-started for more options
|
||||||
|
- Improved UI rendering performance with React Compiler
|
||||||
|
- Fixed the "Context left until auto-compact" warning not disappearing after running `/compact`
|
||||||
|
- Fixed MCP stdio server timeout not killing child process, which could cause UI freezes
|
||||||
|
|
||||||
|
## 2.1.14
|
||||||
|
|
||||||
|
- Added history-based autocomplete in bash mode (`!`) - type a partial command and press Tab to complete from your bash command history
|
||||||
|
- Added search to installed plugins list - type to filter by name or description
|
||||||
|
- Added support for pinning plugins to specific git commit SHAs, allowing marketplace entries to install exact versions
|
||||||
|
- Fixed a regression where the context window blocking limit was calculated too aggressively, blocking users at ~65% context usage instead of the intended ~98%
|
||||||
|
- Fixed memory issues that could cause crashes when running parallel subagents
|
||||||
|
- Fixed memory leak in long-running sessions where stream resources were not cleaned up after shell commands completed
|
||||||
|
- Fixed `@` symbol incorrectly triggering file autocomplete suggestions in bash mode
|
||||||
|
- Fixed `@`-mention menu folder click behavior to navigate into directories instead of selecting them
|
||||||
|
- Fixed `/feedback` command generating invalid GitHub issue URLs when description is very long
|
||||||
|
- Fixed `/context` command to show the same token count and percentage as the status line in verbose mode
|
||||||
|
- Fixed an issue where `/config`, `/context`, `/model`, and `/todos` command overlays could close unexpectedly
|
||||||
|
- Fixed slash command autocomplete selecting wrong command when typing similar commands (e.g., `/context` vs `/compact`)
|
||||||
|
- Fixed inconsistent back navigation in plugin marketplace when only one marketplace is configured
|
||||||
|
- Fixed iTerm2 progress bar not clearing properly on exit, preventing lingering indicators and bell sounds
|
||||||
|
- Improved backspace to delete pasted text as a single token instead of one character at a time
|
||||||
|
- [VSCode] Added `/usage` command to display current plan usage
|
||||||
|
|
||||||
|
## 2.1.12
|
||||||
|
|
||||||
|
- Fixed message rendering bug
|
||||||
|
|
||||||
|
## 2.1.11
|
||||||
|
|
||||||
|
- Fixed excessive MCP connection requests for HTTP/SSE transports
|
||||||
|
|
||||||
|
## 2.1.10
|
||||||
|
|
||||||
|
- Added new `Setup` hook event that can be triggered via `--init`, `--init-only`, or `--maintenance` CLI flags for repository setup and maintenance operations
|
||||||
|
- Added keyboard shortcut 'c' to copy OAuth URL when browser doesn't open automatically during login
|
||||||
|
- Fixed a crash when running bash commands containing heredocs with JavaScript template literals like `${index + 1}`
|
||||||
|
- Improved startup to capture keystrokes typed before the REPL is fully ready
|
||||||
|
- Improved file suggestions to show as removable attachments instead of inserting text when accepted
|
||||||
|
- [VSCode] Added install count display to plugin listings
|
||||||
|
- [VSCode] Added trust warning when installing plugins
|
||||||
|
|
||||||
|
## 2.1.9
|
||||||
|
|
||||||
|
- Added `auto:N` syntax for configuring the MCP tool search auto-enable threshold, where N is the context window percentage (0-100)
|
||||||
|
- Added `plansDirectory` setting to customize where plan files are stored
|
||||||
|
- Added external editor support (Ctrl+G) in AskUserQuestion "Other" input field
|
||||||
|
- Added session URL attribution to commits and PRs created from web sessions
|
||||||
|
- Added support for `PreToolUse` hooks to return `additionalContext` to the model
|
||||||
|
- Added `${CLAUDE_SESSION_ID}` string substitution for skills to access the current session ID
|
||||||
|
- Fixed long sessions with parallel tool calls failing with an API error about orphan tool_result blocks
|
||||||
|
- Fixed MCP server reconnection hanging when cached connection promise never resolves
|
||||||
|
- Fixed Ctrl+Z suspend not working in terminals using Kitty keyboard protocol (Ghostty, iTerm2, kitty, WezTerm)
|
||||||
|
|
||||||
## 2.1.7
|
## 2.1.7
|
||||||
|
|
||||||
- Added `showTurnDuration` setting to hide turn duration messages (e.g., "Cooked for 1m 6s")
|
- Added `showTurnDuration` setting to hide turn duration messages (e.g., "Cooked for 1m 6s")
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ description: Code review a pull request
|
|||||||
Provide a code review for the given pull request.
|
Provide a code review for the given pull request.
|
||||||
|
|
||||||
**Agent assumptions (applies to all agents and subagents):**
|
**Agent assumptions (applies to all agents and subagents):**
|
||||||
- All tools are functional and will work without error. Do not test tools or make exploratory calls.
|
- All tools are functional and will work without error. Do not test tools or make exploratory calls. Make sure this is clear to every subagent that is launched.
|
||||||
- Only call a tool if it is required to complete the task. Every tool call should have a clear purpose.
|
- Only call a tool if it is required to complete the task. Every tool call should have a clear purpose.
|
||||||
|
|
||||||
To do this, follow these steps precisely:
|
To do this, follow these steps precisely:
|
||||||
@@ -61,10 +61,13 @@ Note: Still review Claude generated PR's.
|
|||||||
If NO issues were found, post a summary comment using `gh pr comment` (if `--comment` argument is provided):
|
If NO issues were found, post a summary comment using `gh pr comment` (if `--comment` argument is provided):
|
||||||
"No issues found. Checked for bugs and CLAUDE.md compliance."
|
"No issues found. Checked for bugs and CLAUDE.md compliance."
|
||||||
|
|
||||||
8. Post inline comments for each issue using `mcp__github_inline_comment__create_inline_comment`. For each comment:
|
8. Create a list of all comments that you plan on leaving. This is only for you to make sure you are comfortable with the comments. Do not post this list anywhere.
|
||||||
|
|
||||||
|
9. Post inline comments for each issue using `mcp__github_inline_comment__create_inline_comment`. For each comment:
|
||||||
- Provide a brief description of the issue
|
- Provide a brief description of the issue
|
||||||
- For small, self-contained fixes, include a committable suggestion block
|
- For small, self-contained fixes, include a committable suggestion block
|
||||||
- For larger fixes (6+ lines, structural changes, or changes spanning multiple locations), describe the issue and suggested fix without a suggestion block
|
- For larger fixes (6+ lines, structural changes, or changes spanning multiple locations), describe the issue and suggested fix without a suggestion block
|
||||||
|
- Never post a committable suggestion UNLESS committing the suggestion fixes the issue entirely. If follow up steps are required, do not leave a committable suggestion.
|
||||||
|
|
||||||
**IMPORTANT: Only post ONE comment per unique issue. Do not post duplicate comments.**
|
**IMPORTANT: Only post ONE comment per unique issue. Do not post duplicate comments.**
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user