npx claudepluginhub otaviof/gosmith --plugin gosmithThis skill is limited to using the following tools:
1. **Validate**:
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:
go.mod existsgo list -m github.com/onsi/ginkgo/v2 (latest: v2.28.1)ginkgo CLI: which ginkgo or suggest go install github.com/onsi/ginkgo/v2/ginkgo@latestParse args:
--focus=PATTERN: Run specs matching pattern (-focus=PATTERN)--label=LABEL: Filter by label (-label-filter=LABEL)--parallel or -p: Enable parallel execution--race: Enable race detector--cover: Generate coverage profile./...Execute:
test, test-e2e, ginkgo targets firstginkgo run [flags] ./...-v for verbose, --poll-progress-after=30s for stuck test visibilityReport:
ginkgo.By() contextBy() step before hangEdge cases:
*_suite_test.go files found"go install github.com/onsi/ginkgo/v2/ginkgo@latest"--flake-attempts=2 for retriesPatterns: For test authoring best practices, see best-practices.md