Agent skill
go-vet
Fix go vet warnings
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/go-vet
SKILL.md
go vet
Built-in static analyzer that catches common mistakes.
Usage
go vet ./...
go vet ./pkg/...
Common Warnings
Printf Format Mismatch
// Bad
fmt.Printf("%d", "string")
// Good
fmt.Printf("%s", "string")
Unreachable Code
// Bad
return value
fmt.Println("never runs")
// Good
fmt.Println("runs")
return value
Composite Literal Uses Unkeyed Fields
// Bad
Person{"Alice", 30}
// Good
Person{Name: "Alice", Age: 30}
Nil Dereference
// Bad
var p *int
fmt.Println(*p)
// Good
if p != nil {
fmt.Println(*p)
}
Suspicious Mutex Usage
// Bad - mutex copied
func process(mu sync.Mutex) {
mu.Lock()
}
// Good - pass pointer
func process(mu *sync.Mutex) {
mu.Lock()
}
Lost Context
// Bad
ctx := context.TODO()
// Good
ctx := context.Background()
// or accept ctx as parameter
Fix All Issues
go vet ./... 2>&1 | tee vet.log
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?