Debugging strategies
Skill KraitDev/skiLL.Md/skills/dev-tools/debugging-strategies
skiLL.Md is a structured, open-source collection of reusable, self-contained markdown modules that describe how to perform specific software engineering tasks.
npx -y skills add KraitDev/skiLL.Md --skill debugging-strategiesAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
When isolating and fixing unpredictable or complex software bugs.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
6.9 KB, as published. Nobody here has run it
Debugging Strategies
Purpose
"Guess and check" programming wastes hours. This skill replaces randomness with the scientific method: reproduce the bug reliably, isolate the failing component via binary search, formulate testable hypotheses, and apply minimal fixes. The goal is deterministic bug resolution, not random fixes that seem to work.
When to use
- Investigating a defect reported in production
- Facing a failing test with no obvious root cause
- Understanding unfamiliar or undocumented legacy code
- Debugging intermittent failures (flaky tests)
When NOT to use
- Performance optimization (use Caching Strategies or Database Query Optimization)
- Code review (use Code Review Guidelines)
- Architecture decisions (different concern)
Inputs required
- Failing code, test, or end-to-end scenario
- Ability to reproduce the failure
- Source code and execution environment
Workflow
- Reproduce the Bug: Consistently replicate the failure state. If you CANNOT reproduce it, STOP (get more details). Write a failing test.
- Isolate the Subsystem: Use binary search (comment out code halves, use
git bisect, add logging) to locate the exact module causing the issue - Formulate Hypothesis: Propose WHY the failure is happening based on logs, stack traces, and code inspection
- Test Hypothesis: Add targeted logging or step through debugger to verify assumptions about state/variables at runtime
- Apply Minimal Fix: Change ONLY what's necessary to make the test pass (single line if possible)
- Verify Fix: Confirm the failing test now passes, and no other tests break
- Add Regression Test: Ensure this bug never reoccurs
Rules
- MUST establish a reproducible test BEFORE changing code
- MUST only change one variable or line at a time during hypothesis testing
- MUST NOT apply multiple changes simultaneously (makes diagnosis impossible)
- MUST use binary search for isolation (comment out halves, not random guessing)
- MUST formulate a hypothesis before adding logging or changes
- MUST keep the fix minimal (change only what caused the bug)
Anti-patterns
- Shotgun Debugging: Randomly changing configuration or code until things "seem to work"
- Blaming the Compiler: Assuming the language/framework is broken before checking your code
- Adding Debug Code: Adding excessive logging everywhere instead of targeted logging
- Not Isolating: Staring at code trying to reason about it instead of actually testing
- Fixing Symptoms: "Fixing" the error message instead of fixing the root cause
- Multiple Changes: Changing 5 things at once, then one works, but you don't know which
Failure conditions
- Bug cannot be reproduced
- Test passes but bug still exists in production
- No hypothesis formed before debugging
- Fix applied without verification test
- Multiple changes applied simultaneously
Validation checklist
- Failing test or scenario created and reproducible
- Bug can be consistently reproduced every time
- Subsystem isolated (know which file/function is failing)
- Hypothesis is specific (not "something is wrong")
- Targeted logging/breakpoints confirm hypothesis
- Fix is minimal (only necessary changes)
- Failing test now passes
- No other tests broken
- Regression test added
- Root cause documented in code comments or commit
Output format
- Failing test: Automated test that reproduces the bug
- Minimal fix: Code change addressing root cause only
- Regression test: Test ensuring bug never reoccurs
- Documentation: Comment explaining root cause and why fix works
Security considerations
- Debug logging MUST NOT leak sensitive data (credentials, PII)
- Breakpoint debugging MUST NOT be left in production code
- Temporary logging MUST be removed before commit
- Hypothesis testing MUST NOT modify production data
Agent execution notes
- Agent MAY: Add failing tests, add targeted logging, apply minimal fixes, use git bisect
- Agent MUST NEVER: Make multiple changes simultaneously, apply fixes without tests, leave debug code
- Agent MUST ASK: Before running expensive operations, before modifying production-like data
- Agent MUST VALIDATE: Failing test reproduces bug, fix is minimal, regression test present
Example
❌ Anti-pattern (Shotgun debugging, multiple changes, no hypothesis):
// User reports: "Login sometimes fails"
// Response: randomly change stuff
// Change 1: Remove cache (wild guess)
Cache.clear();
// Change 2: Increase timeout (wild guess)
timeout = 5000;
// Change 3: Retry login (wild guess)
retry();
// Change 4: Restart server
process.restart();
// "It works now!" - but which change fixed it?
✅ Correct pattern (Systematic, hypothesis-driven, minimal fix):
// User reports: "Login sometimes fails with 'Session token invalid'"
// 1. Create failing test
test('login should succeed with valid credentials', async () => {
const user = await login('[email protected]', 'password');
expect(user).toBeDefined();
});
// 2. Run test 10 times - fails randomly - good, reproducible
for (let i = 0; i < 10; i++) {
npm test; // Run failing test
}
// 3. Isolate subsystem with logging
function validateToken(token) {
console.log('Token:', token, 'Expires:', token.expiresAt, 'Now:', Date.now());
if (token.expiresAt < Date.now()) {
throw new Error('Token expired');
}
}
// 4. Hypothesis: Token generation race condition in parallel requests
// 5. Test: Run login twice simultaneously
Promise.all([login(...), login(...)]);
// Confirm: Second request gets token from first request but with different expiresAt
// 6. Minimal fix: Add mutex to token generation
const mutex = new Mutex();
async function generateToken() {
return mutex.runExclusive(async () => {
return createToken();
});
}
// 7. Verify: Failing test now passes 100 times
// 8. Add regression test
test('concurrent logins should not fail', async () => {
const results = await Promise.all([
login('[email protected]', 'password'),
login('[email protected]', 'password')
]);
expect(results.every(r => r)).toBe(true);
});