Systematic Debugging References
Detailed debugging strategies and common error patterns.
Quick Navigation
| Reference | Purpose | Read When |
|---|---|---|
| debugging-strategies.md | Techniques per technology | Debugging React, Node.js, TypeScript |
| common-mistakes.md | Error patterns and root causes | Encountering a specific error type |
Reading Strategy
For Quick Debugging
- Read main SKILL.md — follow the systematic process
For Technology-Specific Issues
- debugging-strategies.md — React, Node.js, TypeScript, API debugging
For Common Errors
- common-mistakes.md — “I’ve seen this error before” patterns
File Descriptions
debugging-strategies.md
Technology-specific debugging techniques
- React component debugging (state, hooks, rendering)
- Node.js debugging (async, streams, event loop)
- TypeScript error interpretation
- API debugging (network, auth, serialization)
common-mistakes.md
Frequently encountered error patterns and root causes
- JavaScript/TypeScript common errors
- React anti-patterns and fixes
- Async/await pitfalls
- Configuration mistakes
Cross-Reference Map
- debugging-strategies.md → Technology-specific techniques; pairs with SKILL.md’s systematic process
- common-mistakes.md → Error pattern catalog; use after isolating the component in SKILL.md’s process
- Related skills: unit-testing, typescript