vibe-acceptance-gate
Validates completed work against defined acceptance criteria. Use after completing a task that has specific success criteria defined in issues, specs, or task descriptions.
vibe-acceptance-gate
Don't claim "done" until you've checked against the criteria that define "done."
When to Use This Skill
- After completing a task that has acceptance criteria
- Before marking an issue/ticket as resolved
- When the user asks "is this done?"
- After implementing a spec with defined requirements
When NOT to Use This Skill
- Exploratory work with no defined criteria
- Research tasks (use
vibe-reflect-and-compoundinstead) - When criteria haven't been defined yet (define them first)
Steps
-
Find the criteria — Look in:
- Issue/ticket description (MUST/SHOULD requirements)
- Spec document (acceptance criteria section)
- Task description (success conditions)
- User's original request (implicit criteria)
-
Validate each criterion — For each one:
- Run the relevant test, command, or check
- Record PASS (met), FAIL (not met), or PARTIAL (partially met)
- Capture evidence (test output, code reference)
-
Report results:
| # | Criterion | Status | Evidence |
|---|---|---|---|
| 1 | [criterion text] | PASS/FAIL/PARTIAL | [evidence] |
- Gate decision:
- All PASS → Task complete
- Any FAIL on MUST criteria → Task NOT complete, list remaining work
- PARTIAL only → Report what's missing, ask user if acceptable
Output Format
Acceptance Gate: [Task Name]
Result: PASS / FAIL / PARTIAL Criteria Met: X/Y (Z%)
| # | Criterion | Status | Evidence |
|---|---|---|---|
| 1 | ... | ✓/✗/◐ | ... |
Remaining Work (if FAIL)
- [What needs to be done]