packages/skills-catalog/catalog/bundled/quality/qa-acceptance/SKILL.md
Write acceptance criteria that a reviewer can run against the running app and decide pass or fail without asking the author. The criteria are the contract — automated tests cover correctness, QA covers feature-level behavior.
Each criterion is a single, independently-verifiable statement:
- **Given** <starting state>, **when** <action>, **then** <observable outcome>.
Example:
- **Given** a CSV export with 0 rows, **when** the user clicks Export, **then** the file downloads with only the header row and the UI shows "Exported 0 rows".
Avoid criteria that combine multiple whens or thens. Split them.
If a section is genuinely not applicable, write "N/A: <why>" — do not silently omit.
Each criterion needs evidence on the verification pass:
"Looks good to me" without evidence is not a pass.
Return the validation plan with three sections:
The author owns turning failures into either fixes or accepted deferrals.