coverage-review
Run every Monday (or manually when test suite feels stale).
STEP 1 — COVERAGE ANALYSIS
Run: npm run coverage Run: npx playwright test --reporter=json
STEP 2 — FIND GAPS
Identify:
- Any function in src/ with 0% test coverage
- Any screen in docs/SCREENS.md with no corresponding E2E test
- Any error state in the wireframes with no test
- Any P1 or P2 feature from the PRD with no E2E test
- Any route that has never appeared in a Playwright test
STEP 3 — FILL GAPS
For each gap found: write a test. No implementation changes.
More from ajaywadhara/agentic-sdlc-plugin
test-ui
Interactive browser testing via Playwright MCP. Navigates the live app, tests every screen, flow, and viewport — then generates permanent .spec.ts test files.
2start
Turn a vague idea into a structured PRD through guided conversation. The agent asks questions — you just talk.
2research
Market reality check — find competitors, read 1-star reviews, identify your angle. Run after /start.
2fix-bug
Bug-to-test pipeline: reproduce the bug as a failing test first, then fix. The regression test lives forever.
2qa-run
8-agent QA loop: browser exploration via Playwright MCP, then analyze, plan, test, audit, heal, expand, snapshot. Quality gate score >= 85 to pass.
2build
TDD feature build loop: spec (RED) → implement (GREEN) → refactor. Pass the feature name as argument.
2