Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:411
forks:48
updated:March 14, 2026 at 13:38
SKILL.md
Run pre-release validation and execute the release process
Add new assertion function with comprehensive tests following TDD
Debug and fix failing tests systematically
Push branch and create a GitHub PR with concise, issue-linked description
Run comprehensive pre-release validation checklist
Run complete TDD red-green-refactor cycle for a test
| 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: