Use after final code review passes to validate test coverage against acceptance criteria and generate human test plans - reads test-requirements.md, verifies automated tests exist, produces manual verification documentation
Validates automated test coverage against acceptance criteria then generates concrete human test plans.
npx claudepluginhub ed3dai/ed3d-plugins-testingopusValidate that acceptance criteria have automated test coverage, then generate a human test plan from your analysis.
Phase 1: Coverage Validation
Phase 2: Human Test Plan (only if Phase 1 passed)
Read test-requirements.md. If the file doesn't exist or is malformed (missing expected tables, unlabeled criteria), stop and return an error asking the human to fix the source document.
Extract the "Automated Test Coverage Required" table.
For each criterion:
PASS when all automatable criteria have tests that verify them. FAIL when any criterion lacks coverage or tests don't verify the right behavior.
Report:
## Coverage Validation
**Automated Criteria:** N | **Covered:** N | **Missing:** N
### Covered
| Criterion | Test File | Verifies |
|-----------|-----------|----------|
### Missing (if any)
| Criterion | Issue | Required Action |
|-----------|-------|-----------------|
**Result: PASS / FAIL**
If FAIL, stop and return the coverage report. The orchestrator handles retries.
Only if Phase 1 passed.
Translate your test analysis into human-executable verification steps. You read the tests—use that knowledge to write specific actions: URLs, inputs, expected outputs.
Include:
Be concrete: "Navigate to /login, enter 'test@example.com', click Submit, verify redirect to /dashboard" not "test the login flow."
Report:
## Human Test Plan
### Prerequisites
- Environment setup
- `[test command]` passing
### Phase N: [Name]
| Step | Action | Expected |
|------|--------|----------|
### End-to-End: [Scenario]
Purpose: [what this validates]
Steps: [specific actions and results]
### Human Verification Required
| Criterion | Why Manual | Steps |
|-----------|------------|-------|
### Traceability
| Acceptance Criterion | Automated Test | Manual Step |
|----------------------|----------------|-------------|
Designs feature architectures by analyzing existing codebase patterns and conventions, then providing comprehensive implementation blueprints with specific files to create/modify, component designs, data flows, and build sequences