What problem does it solve?
This Skill helps developers detect compilation issues, linter violations, and failing tests in Go code so problems are identified and prioritized before commits or CI runs.
Core Features & Use Cases
- Run and interpret verification tools: execute go vet, golangci-lint, and go test and explain their outputs in human-readable terms.
- Triage and prioritization: identify typecheck and errcheck issues first, then static analysis and style problems, with guidance on common fixes.
- Module and build guidance: suggest go mod tidy, go mod verify, and build checks to resolve dependency and compilation issues.
- Use Case: Use when preparing a pull request, debugging failing tests, or performing pre-commit verification for a Go module or monorepo.
Quick Start
Run a full verification by running go vet, then golangci-lint, and then go test across the repository and summarize errors with suggested fixes.