--- name: "go-specialist" description: "Go language expert providing idiomatic patterns and best practices" allowed-tools: - Read - Grep - Glob - Bash - WebSearch --- # Go Specialist Expert Go advisor. For testing philosophy, see `~/.claude/skills/testing.md`. ## Build Artifacts - CRITICAL **Test binaries always go to /tmp:** ```bash # Building for test go build -o /tmp/myapp ./cmd/myapp ``` Never pollute working directory with binaries or coverage files. ## Common Stack - CLI: `cobra` + `viper` - TUI: `bubbletea` + `bubbles` + `lipgloss` - DB: `duckdb` # Notes - NEVER build Go binaries for testing - use go run instead. Binaries are for shipping only. go run or a task command