agent-comms
SendMessage recipient validation and worktreePath safety (CWE-59). TRIGGER when: validating a SendMessage `to:` recipient against the agent whitelist, or a…
Phase-based root cause investigation: reproduce, observe, hypothesize, bisect, verify. TRIGGER when: investigating a bug report, diagnosing unexpected behavior, or doing root cause analysis. SKIP: looking up a known error first (use sofa-search); writing the regression test (use
$ npx -y skills add komluk/scaffolding --skill systematic-debugging --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/systematic-debuggingContext preview
The summary Claude sees to decide when to auto-load this skill.
Phase-based root cause investigation: reproduce, observe, hypothesize, bisect, verify. TRIGGER when: investigating a bug report, diagnosing unexpected behavior, or doing root cause analysis. SKIP: looking up a known error first (use sofa-search); writing the regression test (use
name: systematic-debugging description: "Phase-based root cause investigation: reproduce, observe, hypothesize, bisect, verify. TRIGGER when: investigating a bug report, diagnosing unexpected behavior, or doing root cause analysis. SKIP: looking up a known error first (use sofa-search); writing the regression test (use testing-strategy); live-repro watcher (use watch-patterns)."
A repeatable root cause investigation procedure. A bug is not understood until it can be reproduced on demand and the causal chain is traced back to a fixable defect. This skill encodes the phase order and the discipline (one variable at a time, bisect instead of scan, verify by reverting) that keeps an investigation from turning into guesswork.
Apply this skill when:
Do NOT apply this skill for:
---
Work the phases in order. Do not skip ahead to a fix before phase 6.
| Phase | Action | Exit Criterion | |-------|--------|-----------------| | 1. Reproduce first | Establish a minimal, reliable repro before forming any hypothesis | Bug reproduces on demand, deterministically | | 2. Observe before theorizing | Read the actual error text, stack trace, and logs verbatim | Symptom described using only observed evidence, zero assumptions | | 3. Hypothesize | State one falsifiable hypothesis and the prediction that would confirm or refute it | Hypothesis has a concrete, testable prediction | | 4. Test one variable | Change exactly one thing, run the test, compare to the prediction | Prediction confirmed or refuted; refuted hypotheses are discarded, not recycled | | 5. Bisect the search space | Narrow via git bisect, binary search on input, or disabling half the config — not linear code reading | Candidate range halves each round | | 6. Trace backward | Walk the call stack from the crash site back to the original trigger | Triggering call/input identified, not just the frame that crashed | | 7. Root cause, not proximate cause | Keep asking "why" until the chain reaches something you can actually fix | Chain terminates at a fixable defect (bad state, wrong assumption, missing check) | | 8. Verify by reverting | Revert the fix and confirm the symptom returns; reapply and confirm it clears | Causation proven in both directions |
| Search space | Technique | |--------------|-----------| | Regression across commits | `git bisect` between known-good and known-bad revisions | | Large/complex input triggers failure | Binary search: halve the input, check which half still fails | | Behavior depends on config/flags | Disable half the flags/config, narrow to the culprit | | Unclear which layer owns the bug | Bisect the call stack: instrument the midpoint, check state there |
| Rule | Why | |------|-----| | One hypothesis at a time | Multiple simultaneous changes make it impossible to attribute the outcome | | Prediction must be falsifiable | An untestable hypothesis cannot be confirmed or ruled out | | Never pattern-match a remembered bug onto new symptoms | Confirmation bias skips the actual evidence in phase 2 | | A refuted hypothesis is discarded, not adjusted and reused | Adjusting mid-test invalidates the prior result |
---
| Anti-Pattern | Problem | Instead | |--------------|---------|---------| | Forming a hypothesis before reproducing | Guessing wastes cycles on an unconfirmed bug | Reproduce deterministically first | | Pattern-matching to a remembered similar bug | Misses the actual cause, confirmation bias | Read the actual error/stack/logs fresh (phase 2) | | Changing multiple things per test | Cannot attribute the result to any one change | Change exactly one variable per test | | Reading code top-to-bottom to find the defect | Slow, linear, scales poorly | Bisect the search space (phase 5) | | Stopping investigation at the crash site | Fixes the symptom, not the defect | Trace backward to the original trigger (phase 6) | | Declaring root cause without reverting the fix | Causation asserted, not proven | Revert, confirm symptom returns, reapply (phase 8) |
---
Spec-driven multi-agent orchestration for Claude Code — pure markdown, zero backend, runs on the stock runtime. 13 agents, 38 skills, 19 commands, 17 hooks, per-phase model tiers, opt-in lifecycle hooks, optional cross-device semantic memory.
Repo: komluk/scaffolding
SendMessage recipient validation and worktreePath safety (CWE-59). TRIGGER when: validating a SendMessage `to:` recipient against the agent whitelist, or a…
3-tier markdown memory protocol (shared/agent/conversation) for cross-session knowledge. TRIGGER when: reading or writing agent memory files, choosing which…
RESTful API design standards: resource naming, HTTP methods, status codes, pagination, versioning. TRIGGER when: designing new API endpoints, defining error…
Optimize Claude Code context-window usage for accuracy and cost. TRIGGER when: hitting context limits, structuring prompts for an agent, or trimming what gets…
Schema design, index strategy, migration safety, and query analysis. TRIGGER when: designing tables or indexes, writing a migration, or diagnosing a slow…