plugins/verifying-acceptance-criteria/skills/verifying-acceptance-criteria/SKILL.md
Compares implementation evidence against acceptance criteria and shows what is met, partial, missing, or untestable. Use when checking feature readiness, preparing QA sign-off, or turning criteria into a concrete verification matrix without inventing missing behavior.
npx skillsauth add jaktestowac/awesome-copilot-for-testers verifying-acceptance-criteriaInstall 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.
Use this skill when readiness depends on evidence rather than optimism. It helps compare the stated contract of a feature with what the implementation actually proves today.
Untestable, not invented behavior.Collect:
If either side is missing, ask for it before continuing.
Convert the input into atomic criteria with stable IDs such as AC-001, AC-002, and AC-003.
If a criterion mixes multiple expectations, split it.
If a criterion is vague, keep it but mark it as a likely Untestable candidate until evidence proves otherwise.
Use these verdicts:
| Status | Meaning | | --- | --- | | Met | The implementation clearly satisfies the criterion | | Partial | Some of the criterion is implemented, but not all of it | | Not Met | No convincing evidence of implementation exists | | Untestable | The criterion is too vague or ambiguous to verify honestly |
For every criterion, capture:
Group the result into:
Do not collapse these into a single optimistic conclusion. If there are meaningful gaps, call them out plainly.
Depending on what the matrix shows:
Use ./resources/ac-verification-template.md when possible.
./resources/ac-verification-template.md - structure for the verification matrix and readiness summaryanalyzing-regression-scope - when change impact needs tactical retest planningdesigning-functional-tests - when unmet criteria need new scenarios or manual casesrequirements-test-coverage-mapper - when full traceability across test levels is requiredreporting-bugs - when a failed criterion should become a defect ticketThis skill is complete when:
testing
Tests the customization assets themselves - skills, prompts, custom agents, instructions - the way a product is tested: activation cases that check an asset fires when it should and stays quiet when it should not, output-contract cases, safety cases, collision cases between assets competing for the same trigger, a weighted rubric scored blind, and a baseline-versus-candidate gate before an edit ships. Use when a skill is edited and nobody knows whether behaviour changed, when two skills fight over the same request, when a description is being tuned for discoverability, when a collection has grown past manual spot-checking, or when the request mentions skill evals, prompt regression, or "does this skill actually work".
development
Shapes QA output for the person who has to act on it: result and blocker in the first two lines, one decision per report, findings ordered by what they cost, the long artifact in a file and the decisions in the message, and magnitude stated in units the reader can count. Use when a report is accurate but nobody acts on it, when a finding set is too long to read under time pressure, when the same findings must be retold for a developer, a release manager, and an on-call engineer, or when the request mentions "too long", "make this readable", "just tell me what to do", "so what", or "summarize this for stakeholders". Pairs with unslop-answers, which makes the same report honest.
testing
Verifies that the lines and branches a change actually touched are executed by tests, using LCOV or Cobertura diff coverage instead of whole-repo percentages, and escalates uncovered high-risk changes into a blocking finding. Use when a pull request needs a coverage gate that unrelated tests cannot satisfy, when total coverage looks healthy but the diff is untested, when wiring diff coverage into CI, or when someone claims a change is covered because the suite is green.
development
Cuts AI tells from test code: tests that pass without proving anything, tautological assertions, mock-only tests, hardcoded waits, coverage theater, vague names, swallowed errors, retries used as fixes. Use whenever test code is written, changed, or reviewed, including tests produced as a side effect of a feature task, and when the request mentions "review these tests", "are these tests any good", "this test always passes", "this suite is flaky", or "clean up these tests". Must always apply to test code.