with one click
check-coverage
Analyze test coverage and identify untested code paths
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
Analyze test coverage and identify untested code paths
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
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
| 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: