Claude Code Reference

v2.1.178 · 87 auto-discovered · Commands, shortcuts, hooks, Python/AWS tips.

Daily Workflow Examples

Morning: review overnight PRs

1.claude -p "list open PRs on this repo and summarize changes"
2.claude -c # continue to review specific PR
3./review 42 # deep review of PR #42

Feature: add a new API endpoint

1.claude --permission-mode plan
2."add a GET /api/users/{id}/activity endpoint"
3.# review plan → Shift+Tab to acceptEdits → Claude executes

Debug: production error

1.cat /var/log/app/error.log | claude -p "what caused this and how to fix"
2.claude -c # continue to implement the fix

Infra: update Terraform

1.claude -w infra-update # isolated worktree
2."add a new RDS read replica in eu-west-1"
3."run terraform plan and show me the diff"

CI/CD: automated review

1.git diff main | claude -p --max-turns 3 --max-budget-usd 1.00 "review for bugs"