skills/test-verify/SKILL.md
Run and analyze test results against acceptance criteria. Use when verifying implementation completeness.
npx skillsauth add the-own-lab/Claude-company-of-one test-verifyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Run tests and verify implementation against acceptance criteria.
Read acceptance criteria from REQUIREMENTS.md — Know exactly what must be true before running anything.
Run full test suite — Execute all tests, not just the new ones. Catch regressions.
Map test results to acceptance criteria — For each acceptance criterion, identify which test(s) verify it. Flag any criterion without a corresponding test.
Test edge cases not covered by existing tests — Use the edge case checklist below to identify gaps and write additional tests.
Produce structured report — Use the report format below.
One paragraph: what was tested, how many tests ran, how many passed/failed.
| # | Acceptance Criterion | Test(s) | Result |
| --- | ------------------------ | ---------------- | ----------- |
| 1 | Description of criterion | test_name_here | PASS / FAIL |
List of edge cases tested and their results.
Any bugs, regressions, or concerns discovered during verification.
PASS — All acceptance criteria verified, no critical issues. FAIL — List which criteria failed and why.
documentation
Update BRIEF.md sections during a command run. Any skill that produces a brief-persisted artifact calls this to write it back.
development
Post-code check: run tests + confirm TODO acceptance items map to passing tests; applies a security lens but is not a separate scan.
documentation
Command post-step: write CHANGELOG + TODO once per command run. One call, not per-skill doc writes.
content-media
Author REQUIREMENTS.md + DESIGN.md + TODO.md for a feature. The three files are one contract; they ship together.