con un clic
review-tests
Comprehensive test review using parallel test-reviewer agents.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Comprehensive test review using parallel test-reviewer agents.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Create, list, and resolve review issues. Critical issues get individual files for research; warnings and gaps go to a quick-fix checklist.
Analyze Claude Code session transcripts — search, summarize, list, or inspect how a session went.
Design architecture docs for new features, refactors, or redesigns. Produces implementation-ready docs with complete file impact analysis.
Review architecture documents against code implementation and principles.
Orchestrate sequential documentation audits with checkpointing and resumption.
Guide sprint planning from scope assessment to spec artifacts.
| name | review-tests |
| description | Comprehensive test review using parallel test-reviewer agents. |
| disable-model-invocation | true |
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: