/security-review is a built-in slash command in Claude Code that performs a
security review of pending changes on the current branch.
/security-review
Run this command in your Claude Code session to have Claude analyze your uncommitted changes for security vulnerabilities.
# Make your changes
git status # verify pending changes
# Run security review in Claude Code
/security-review
# Address any findings, then commit
git add .
git commit -m "Add secure user input handling"
💡 This command only reviews uncommitted changes. For a full codebase audit,
use /security-audit instead.
🎉 Happy coding!