What I have Claude Code do every day
Nothing headline-worthy. Just the things that come up five times a day and that I can’t be bothered to do myself.
5 real cases
1. Generating PR descriptions
gh pr view --json title,body,commits | \
claude "based on the diff and commits, draft a PR description with summary + test plan"
What it saves isn’t the time. It’s the stalling on “how do I even word this”.
2. Rolling up the CHANGELOG
Before every release:
git log v1.4.0..HEAD --oneline | \
claude "group these commits into categories: feat / fix / chore, output in changelog format"
3. Stack trace → what to do next
Throw the production Sentry alert at Claude and ask for three things:
- Which file is probably at fault
- The likely root cause
- What order to check things in
Beats 80% of the “I bet it’s X” blind debugging.
4. Long-doc summary + Q&A
Taking over a new project with a 5,000-word README. I have Claude summarize it first, then I ask things like “can I just git clone this and run it?”
5. Annotating unfamiliar code
claude "annotate this file with comments explaining what each function does and why" < legacy.py
I diff the result afterwards. AI-written comments are often half right, half wrong, but the 50% that’s right already saves me from reading 100% of the file.
One principle
Let the AI do the draft work, keep the decision work for yourself. The AI fills the blank page to 80%. You fix the last 20% and sign off.