Agent skill
go-linting
Go static analysis. Routes to specific tools.
Install this agent skill to your Project
npx add-skill https://github.com/JamesPrial/claudefiles/tree/main/skills/golang/linting
SKILL.md
Linting
Route by Tool
- go vet warnings → see vet/
- staticcheck issues → see staticcheck/
- golangci-lint setup → see golangci/
Quick Check
- go vet ./... passes
- go fmt applied
- No unchecked errors
Common Workflow
go fmt ./...
go vet ./...
staticcheck ./...
Install Tools
go install honnef.co/go/tools/cmd/staticcheck@latest
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
plugin-packager
Package claudefiles components into a valid Claude Code plugin
plugin-packager-validation
Plugin validation errors and fixes
plugin-packager-subset
Package language-specific subsets of claudefiles
plugin-packager-hooks
Handle hook scripts and paths for plugin packaging
go-concurrency
Go concurrency patterns. Routes to specific patterns.
go-sync-primitives
sync.WaitGroup and sync.Mutex patterns
Didn't find tool you were looking for?