.claude/skills/review-tests/SKILL.md
Comprehensive test review using parallel test-reviewer agents.
npx skillsauth add leogodin217/leos_claude_starter review-testsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Orchestrate a comprehensive test review using parallel test-reviewer agents.
Find all test files:
Glob: **/test_*.py, **/*_test.py
Map each test file to its source:
tests/test_foo.py → src/.../foo.pysrc/.../tests/test_bar.py → src/.../bar.pyReport: "Found N test files covering M source modules"
Group tests for parallel review. Options:
Default: By module (all tests for a source module → one agent)
For each group, launch test-reviewer agent:
Task(
subagent_type="test-reviewer",
prompt="Review tests.\n\ntest_path: {paths}\nsource_path: {paths}",
run_in_background=true
)
Launch ALL agents in a single message for true parallelism.
Wait for all agents to complete. Gather structured output.
Combine findings across all agents:
# Test Review Summary
## Overall
- Files reviewed: N
- Tests reviewed: N
- Remove: N | Improve: N | Add: N | Keep: N
## By Priority
### High (Remove - tests with no value)
[List across all files]
### Medium (Add - important gaps)
[List across all files]
### Low (Improve - existing tests to refine)
[List across all files]
## By Module
[Findings grouped by source module]
Based on findings, recommend:
development
Spec-fidelity verification tracing requirements through code.
development
Analyze Claude Code session transcripts — search, summarize, list, or inspect how a session went.
testing
Course designer mode for creating exercises, configs, and QA criteria.
testing
System architect mode for designing interfaces, contracts, and architecture decisions.