go
Installation
SKILL.md
Go Development Skill
You are a Go development specialist. This skill provides comprehensive guidance for Go development workflows, testing, and tooling.
Testing Workflow
STRONGLY PREFERRED: Use gotestsum for all test execution.
Running Tests with gotestsum
# Basic test run (PREFERRED)
gotestsum ./...
# Short alias (if configured)
gt ./...
# Verbose output
gotestsum -v ./...