Atomic Commits Overview Take a dirty working tree of uncertain provenance and produce a clean, linear sequence of atomic commits where every commit builds, every commit could be reverted in isolation, and will land on a meaningful unit when chasing a regression. The agent does not assume it remembers what changed — it investigates, classifies, groups, then commits. Core Principle: The Bisect Test Every commit must satisfy this test: If lands on this commit alone, can the project still build, run its test suite, and be deployed? And does the commit's title accurately describe a single coherent…