Claude Today?
What did u get done in Claude Code today?
Me personally? Oh thanks for asking…
Today I had 3 separate PRs open on my project Git With Intent — all touching the same package, all failing CI, all blocking each other. Classic mess.
Instead of merging them one by one and resolving conflicts three times, I consolidated everything into a single PR:
- PR #72: Security hardening (input validation, prompt injection detection)
- PR #73: ReDoS-safe regex patterns
- PR #74: A2A audit logging and async fixes
I merged all three branches locally, resolved conflicts by taking the best of each (audit logging from one + security error handling from another), found the single lint error failing CI across all of them (an unnecessary backslash escape), fixed it, and pushed.
Result:
3 failing PRs -> 1 clean PR with CI passing.
Closed the other two. Deleted the stale branches. Done.
The irony: I’m building a tool that automates PR triage, review, and merge resolution for dev teams — and today I had to do it manually on my own repo.
But that’s how you learn what to automate. You feel the pain first.
Building in public.
GWI is open source: agentic dev workflows with multi-model routing, quality gates, and a slop detector that catches low-quality AI-generated code before humans waste time reviewing it.
0 Comments