Go Check banner
dsjacobsen dsjacobsen

Go Check

Testing community

Description

--- name: go-check description: Run Go linting, testing, and quality checks --- Run comprehensive quality checks on the Go codebase: ```bash # Format code echo "=== Formatting ===" gofmt -w . goimports -w . # Run linter echo "=== Linting ===" golangci-lint run ./... # Run tests echo "=== Tests ===" go test -race -coverprofile=coverage.out ./... # Show coverage echo "=== Coverage ===" go tool cover -func=coverage.out | tail -1 # Check for vulnerabilities echo "=== Vulnerabilities ===" govul

Installation

Installs to ~/.claude/commands/dsjacobsen-agent-resources-go-check.md

Terminal
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/dsjacobsen/agent-resources/HEAD/.claude/commands/go-check.md -o ~/.claude/commands/dsjacobsen-agent-resources-go-check.md

Restart Claude Code, or start a new session, for it to be picked up.

Full documentation available on GitHub

View Source Repository