with one click
go-cover
Generate Go test coverage report with package breakdown.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Generate Go test coverage report with package breakdown.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Fetch PR review comments, triage against codebase, apply fixes, generate reply report.
Verify answers by checking sources, contradictions, and confidence level.
Run, discover, or review Makefile targets. Use for build automation.
Extract readable web content, removing navigation/ads to save tokens.
Fetch Jira tickets as clean markdown using native ADF format.
5-element persona framework template for creating Claude Code agents
| name | go-cover |
| description | Generate Go test coverage report with package breakdown. |
| argument-hint | package-pattern |
| allowed-tools | Bash |
| model | haiku |
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%