← ClaudeAtlas

debug-by-bisectionlisted

Find the cause of a regression by systematically halving the search space (git bisect, feature flags, input reduction).
duliangkuan/cc-clone · ★ 0 · Code & Development · score 66
Install: claude install-skill duliangkuan/cc-clone
# Debug by Bisection 1. Establish a reliable repro (a command that fails deterministically). 2. Find a known-good point in the past. 3. Bisect: git bisect between good and bad, or binary-search the input/config. 4. At each step, keep the repro identical. Change one variable only. 5. Stop when one commit/flag/input flips pass→fail. That's the cause.