원클릭으로
check-coverage
Analyze test coverage and identify untested code paths
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyze test coverage and identify untested code paths
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | check-coverage |
| description | Analyze test coverage and identify untested code paths |
| allowed-tools | Read, Bash, Grep, Glob |
Analyze test coverage and identify gaps.
BASHUNIT_COVERAGE=true ./bashunit tests/
For each file in src/:
# List all public functions
grep "^function bashunit::" src/module.sh
# Find tests referencing each function
grep -r "function_name" tests/
Priority 1: Public API functions (export -f) with no tests
Priority 2: Error handling paths (return 1, exit 1) not tested
Priority 3: Complex conditionals without branch coverage
Output a markdown report with:
Push branch and create a GitHub PR with concise, issue-linked description
Run pre-release validation and execute the release process
Walk over all open GitHub issues that are unassigned or assigned to the current user, and process each one via the /gh-issue skill, sequentially.
Add new assertion function with comprehensive tests following TDD
Debug and fix failing tests systematically
Run comprehensive pre-release validation checklist