This is a methodical debugging framework that stops you from slapping band-aids on symptoms. It enforces a golden rule: no fixes without root cause investigation first, even when you're under pressure. The skill walks you through a decision tree based on what you're seeing (crashes, hangs, wrong output, memory leaks), then guides you through reproduce-measure-fix cycles with the right tools for each situation: race detector for flaky tests, pprof for performance issues, Delve for complex state inspection. It's opinionated about process (one hypothesis at a time, escalate tools incrementally) and includes coverage of common Go footguns like nil panics and goroutine leaks. Use this when you need to fix something properly instead of creating three new bugs.
npx skills add https://github.com/samber/cc-skills-golang --skill golang-troubleshooting