How to split a coding agent run into clean commits
Turn one large agent diff into focused commits with git add -p: sort the changes, stage by hunk, check each commit, and remove what doesn't belong.
Read articleThe Diffward blog
Practical notes on agent-written code, unexpected changes, and the decisions that happen after a run.
Turn one large agent diff into focused commits with git add -p: sort the changes, stage by hunk, check each commit, and remove what doesn't belong.
Read articleA practical review of agent-written permission checks: protected entry points, ownership, safe defaults, tests for refusal, and unrelated security changes.
Read articleHow to review agent changes to .env files, keys, and credentials, spot indirect exposure, and respond if a real secret was committed.
Read articlePassing tests only prove the tests that ran. How to find deleted, skipped, and loosened tests in an agent's diff, and decide what to do about each one.
Read articleWhat to check when an agent adds or upgrades a package: whether it's needed, the manifest and lockfile, install scripts, and how to keep the change reviewable.
Read articleA practical review of one agent-written migration: check for data loss, app compatibility, locks and deploy order, rollback options, and changes the request never asked for.
Read articleA practical review order for agent-written changes: confirm the request, find unexpected files, inspect risky hunks, and decide what to keep.
Read articleA checklist for reviewing workflow, test matrix, and build changes that appear during an unrelated coding task.
Read articleHow to avoid losing your own work when a coding agent edits files you have also touched.
Read article