What problem does it solve?
Go projects frequently suffer from hidden bugs and runtime issues that hinder development velocity. This skill provides a disciplined debugging methodology to systematically reproduce, measure, and root-cause failures in Go programs.
Core Features & Use Cases
- Structured decision tree for common Go issues (build failures, panics, timeouts, data races, memory leaks, and incorrect behavior).
- Golden Rules guidance: reproduce before you fix, measure, and change one hypothesis at a time.
- Quick references to in-depth diagnostic resources, such as compilation issues, common Go bugs, testing/debugging patterns, concurrency debugging, performance troubleshooting, and pprof/Delve tooling.
- Cross-skill connections to observability and performance patterns for end-to-end incident investigation.
Quick Start
Reproduce the issue with a minimal example and follow the Go Troubleshooting Guide's decision tree to identify and fix the root cause.