Skip to content

Debugging Skills

The debug-* family moves from symptom to fix. Skills run sequentially: triage → root cause → reproduction → retrospective.

Skill IDDescriptionModel Class
debug-assistantFirst-pass triage: interprets stack traces, logs, and error messages; proposes investigation hypothesesfree
debug-root-causeDeep causal analysis: traces the chain of events that produced the failurestrong
debug-reproductionGenerates a minimal reproducible example (MRE) that isolates the faultcheap
debug-postmortemStructured post-incident report: timeline, impact, root cause, mitigations, action itemscheap
Bug Report / Stack Trace
debug-assistant → symptom classification, top-3 hypotheses
debug-root-cause → confirm root cause, causal chain
debug-reproduction → minimal example to prove/disprove
(Fix applied)
debug-postmortem → prevention measures, monitoring additions
SituationSkill(s)
Lost in a cryptic stack tracedebug-assistant
Need to understand why something faileddebug-root-cause
Need to isolate a bug for a ticketdebug-reproduction
After a production incidentdebug-postmortem
  • debug — orchestrates all four skills in sequence
  • resilience — uses debug-root-cause to identify failure modes for hardening

debug-postmortem outputs a structured document:

## Incident Summary
...
## Timeline
| Time | Event |
| ... | ... |
## Root Cause
...
## Impact
...
## Mitigations Applied
...
## Action Items
| Item | Owner | Due |