원클릭으로
coverage-check
Check backend code coverage and flag packages below 80%
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check backend code coverage and flag packages below 80%
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Scaffold a new Architecture Decision Record
Scaffold a new rule (static, live, or catalog) with tests and registration
Regenerate docs from code (rules, API, README)
Split working tree changes into logical git commits and push
| name | coverage-check |
| description | Check backend code coverage and flag packages below 80% |
| disable-model-invocation | true |
Check backend code coverage across all packages and report any that fall below the 80% threshold required by CLAUDE.md.
Run all tests with coverage from the backend/ directory:
go test ./... -coverprofile=cover.out
Extract per-package coverage and flag any package below 80%:
go tool cover -func=cover.out | tail -1
Report a summary table showing each package and its coverage percentage. Highlight any package below 80% as a problem. Exclude packages with [no test files] or 0.0% coverage for cmd/ packages (these are acceptable).
If all packages are above 80%, confirm the threshold is met. If any are below, suggest which functions lack coverage and what tests could be added.