بنقرة واحدة
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 المهني
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: