Claude docs changes for May 24th, 2026 [diff]
Executive Summary
- The
/code-reviewcommand can now be run locally in any Claude Code session without installing the GitHub App, replacing the previously documentedcode-reviewplugin approach - Shell aliases and functions defined in startup files (
~/.zshrc,~/.bashrc,~/.profile) are now documented as available to the Bash tool in every command - Sandbox documentation updated: linked git worktrees allow writes to the main repository's shared
.gitdirectory (excepthooks/andconfig)
Claude Code changes
Changed documents
Code Review [Source]
- Added note that the
/code-reviewcommand can be run locally in a terminal session without installing the GitHub App; it reports correctness bugs and can post inline PR comments with--comment. Also notes the command was previously named/simplifybefore v2.1.147. [line 23] [Source] - Updated "See also" section: replaced the "Plugins" link (with
code-reviewplugin) with a "Commands" link pointing to the/code-reviewcommand for local diff checking before pushing. [line 260] [Source]
Sandboxing [Source]
- Documented git worktree sandbox behavior: when the working directory is a linked git worktree, the sandbox allows writes to the main repository's shared
.gitdirectory so commands likegit commitcan update refs and the index; writes tohooks/andconfiginside that directory remain denied. [line 177] [Source]
Tools Reference [Source]
- Added documentation that shell aliases and functions defined in startup files are available in Bash tool commands: Claude Code sources
~/.zshrc,~/.bashrc, or~/.profileat session start and applies captured aliases, functions, and shell options to every Bash command. [line 109] [Source]
API changes
No significant changes today.