원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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).
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