agentsclimarketplace

Nyquist

Skill ngocsangyem/MeowKit/.claude/skills/nyquist

Production ready. AI Agent Workflow System for Claude Code

Install
npx -y skills add ngocsangyem/MeowKit --skill nyquist

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 15 stars15 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Test-to-requirement coverage mapping. Reads plan acceptance criteria and test files, produces a coverage gap report showing which requirements have no tests. Use during Phase 2 (Test) or Phase 4 (Review) to verify test completeness. Named after the Nyquist sampling theorem — sufficient test coverage prevents aliased (missed) requirements. NOT for running tests (see mk:testing); NOT for structural code review (see mk:review).

SKILL.md

3.4 KB, 620 tokens by cl100k_base, as published. Nobody here has run it

Nyquist — Test-to-Requirement Coverage Mapping

Maps plan acceptance criteria to test files. Identifies coverage gaps where requirements exist but no corresponding test validates them.

When to Use

  • Phase 2 (Test): After tester writes initial tests, verify all acceptance criteria are covered
  • Phase 4 (Review): As part of test coverage dimension, verify no gaps
  • User says "check test coverage", "are all requirements tested", "coverage gaps"
  • Before Gate 2: verify implementation matches plan

Workflow

  1. Load plan — Read tasks/plans/YYMMDD-name/plan.md, extract acceptance criteria
  2. Scan tests — Glob for test files (**/*.test.*, **/*.spec.*, **/test_*.*)
  3. Map criteria → tests — For each acceptance criterion, search test descriptions/names for matching keywords
  4. Identify gaps — Criteria with no matching test = coverage gap
  5. Produce report — Structured output with mapping table and gap list

Output Format

## 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]

Matching Strategy

  • Keyword matching: Extract key nouns/verbs from acceptance criteria, search in test describe/it/test strings
  • File path matching: If criterion mentions "auth", search in **/auth*test*
  • Fuzzy matching: If exact match fails, check for semantic equivalents (e.g., "login" ≈ "authenticate")
  • Manual override: If no match found, ask user to confirm the gap is real (not a naming mismatch)

Gotchas

<!-- Populate from real failures. Do not predict. -->

What This Skill Does NOT Do

  • Does NOT write tests — that's the tester agent's job
  • Does NOT modify plan files — read-only analysis
  • Does NOT replace manual review of test quality — only checks existence, not correctness
  • Does NOT run tests — only reads test file contents

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,984. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.