Систематическая отладка и устранение багов
debugging
Debugging wizard is a Claude Code skill that systematically isolates and resolves bugs by parsing error messages, tracing execution through stack traces, and correlating log entries to pinpoint failure points. Reach for it when an app crashes with a cryptic traceback, when a bug only shows up in production and refuses to reproduce locally, when a recent change quietly broke something else, or when you need to track down exactly which commit introduced a regression. The skill follows a five-step loop — reproduce, isolate, hypothesize and test, fix, prevent — and loads reference guides for debugging tools, common bug patterns, binary search strategies, and git bisect workflows. It covers pdb (Python), Node.js inspector, delve (Go), and git bisect out of the box, and delivers a structured output: root cause, supporting evidence (stack trace, log, or test), the code fix, and a regression safeguard recommendation. The direction is root-cause analysis of existing failures, not authoring new test suites from scratch (that's test-master) or real-time observability (monitoring-expert). Works across languages and codebases; not a substitute for a live profiler in deeply concurrent or timing-sensitive scenarios.
- #debugging
- #error-analysis
- #stack-traces
- #root-cause
- #troubleshooting
- #bug-fix