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
Execute:
<ARG> or default ./...--html: Generate coverage.html and report pathgo test -coverprofile=coverage.out -covermode=atomic <pattern>Parse: Extract per-package coverage from coverage.out
Format:
## COVERAGE REPORT
| Package | Coverage | Target | Status |
|----------------|----------|--------|--------|
| pkg/domain | 87.2% | 80% | PASS |
| pkg/service | 72.1% | 80% | FAIL |
**Overall:** 83.4% | **Target:** 80% | **Status:** PASS
Report:
coverage.html"Edge cases:
<pattern>"GO_COVER_TARGET or default 80%