ワンクリックで
coverage-check
Run test coverage check and report per-package breakdown highlighting packages below the 72% gate and 80% new-code target
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run test coverage check and report per-package breakdown highlighting packages below the 72% gate and 80% new-code target
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Scaffold a new YAML test fixture and register its path constant in testutil/test_constants.go
Run gremlins mutation testing on a specified Go package, following the same pattern as make test-mutation
Scaffold a new documentation theme following the project's theme registration pattern from CLAUDE.md
Run all project security scans (make security) and summarize findings by tool and severity
SOC 職業分類に基づく
| name | coverage-check |
| description | Run test coverage check and report per-package breakdown highlighting packages below the 72% gate and 80% new-code target |
Run the following in the project root:
make test-coverage-check — verifies overall coverage meets the 72.0% gate. Report PASS or FAIL.
go test -coverprofile=coverage.out -covermode=atomic ./... followed by go tool cover -func=coverage.out
Parse the output and produce a sorted table with two threshold columns:
make test-coverage-check**/*.go)| Package | Coverage | Gate (72%) | Target (80%) |
|---|---|---|---|
| ./internal/wizard | 61.2% | FAIL | FAIL (gap: 18.8pp) |
| ./internal | 74.1% | PASS | FAIL (gap: 5.9pp) |
Show the overall total: line at the bottom.
List all packages below 72% (gate failures) with their gap in percentage points.
List all packages below 80% (target misses) separately.
State clearly: PASS (≥72% overall) or FAIL (<72% overall).