npx claudepluginhub otaviof/gosmith --plugin gosmithThis skill is limited to using the following tools:
1. **Validate**: Check `go.mod` exists in cwd or parent dirs
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
Validate: Check go.mod exists in cwd or parent dirs
Detect automation: Check for Makefile with targets: build, test, vet, lint
Dispatch:
--quick: Build + vet only (skip tests)--full: Build + test + vet + lint + staticcheckExecute:
make build test vet (or available targets)go build ./... && go test ./... && go vet ./...time commandAggregate: Collect exit codes, durations, error summaries
Format:
## GO CHECK RESULTS
| Step | Status | Duration |
|-------|--------|----------|
| build | PASS | 2.1s |
| test | PASS | 4.3s |
| vet | PASS | 0.8s |
**Overall:** PASS
Report:
Edge cases:
--full without lint tools: Warn "staticcheck not found, skipping"