From mk
Maps plan acceptance criteria to test files and produces a coverage gap report showing which requirements have no tests. Use during Phase 2 (Test) or Phase 4 (Review).
How this skill is triggered — by the user, by Claude, or both
Slash command
/mk:nyquistWhen to use
Use during Phase 2 or Phase 4 to map test coverage to plan acceptance criteria — finds aliased (missed) requirements. NOT for running tests (see mk:testing) or structural code review (see mk:review).
This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Maps plan acceptance criteria to test files. Identifies coverage gaps where
Maps plan acceptance criteria to test files. Identifies coverage gaps where requirements exist but no corresponding test validates them.
tasks/plans/YYMMDD-name/plan.md, extract acceptance criteria**/*.test.*, **/*.spec.*, **/test_*.*)## Nyquist Coverage Report: [Plan Name]
### Requirement-to-Test Mapping
| # | Acceptance Criterion | Test File | Test Name | Status |
|---|---------------------|-----------|-----------|--------|
| 1 | [criterion text] | src/auth.test.ts | "should authenticate user" | COVERED |
| 2 | [criterion text] | — | — | GAP |
| 3 | [criterion text] | src/api.test.ts | "returns 404 for missing" | COVERED |
### Coverage Summary
- **Total criteria:** N
- **Covered:** N (N%)
- **Gaps:** N
### Gap Details
1. **[criterion text]** — No test found. Suggested test: [brief description]
2. **[criterion text]** — No test found. Suggested test: [brief description]
### Recommendation
[PASS — all criteria covered | WARN — N gaps found, suggest adding tests]
describe/it/test strings**/auth*test*npx claudepluginhub ngocsangyem/meowkit --plugin mkValidates test coverage against requirements by mapping requirements to tests, classifying gaps, and writing new tests. Never modifies implementation code.
Analyzes code for test coverage gaps and edge cases, then produces a standalone test plan. Does not write test code or refine existing plans.
Reviews test sufficiency and identifies coverage gaps using Codex MCP. Supports file, directory, description, or git-diff input. Includes AC traceability mode for mapping acceptance criteria to test evidence.