debug-strategy
Installation
SKILL.md
Systematic Debugging Strategy
Initial Assessment
Before diving in, gather context:
- What changed? - Recent code changes, deployments, dependencies
- When did it start? - Timeline helps narrow scope
- Reproducible? - Consistent vs intermittent affects approach
- Error messages? - Exact text, stack traces, logs
- Environment? - Dev/staging/prod, OS, versions
Debugging Hierarchy (Work Through In Order)
1. Read the Error Message
- Parse the FULL stack trace
- Note the originating file and line number
- Look for "Caused by" chains
- Search error message verbatim if unclear