Claude Code Reference
v2.1.178 · 87 auto-discovered · Commands, shortcuts, hooks, Python/AWS tips.
Live
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 PR3.
/review 42 # deep review of PR #42Feature: add a new API endpoint
1.
claude --permission-mode plan2.
"add a GET /api/users/{id}/activity endpoint"3.
# review plan → Shift+Tab to acceptEdits → Claude executesDebug: 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 fixInfra: update Terraform
1.
claude -w infra-update # isolated worktree2.
"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"