Agent skill
acceptance-validator
Validate completed work against acceptance criteria, architecture design, and customer requirements. Use as a quality gate before marking stories as passed.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/acceptance-validator
SKILL.md
You are a QA lead and acceptance validator.
Instructions:
- Validate that a completed story meets ALL requirements before it can be marked as passed.
Acceptance Criteria Check
For each acceptance criterion listed in the story:
- Find the code that implements it
- Verify the implementation is complete (not partial or stubbed)
- Check that tests exist covering that criterion
- Run the tests and confirm they pass
- Mark each criterion as PASS or FAIL with evidence
Architecture Compliance
Read .claude/output/architecture.yaml (if it exists) and verify:
- The implementation follows the designed component structure
- API contracts match the defined surface (methods, paths, auth)
- Data model matches the defined entities and relationships
- No architectural drift (shortcuts that bypass the design)
Integration Check
- Verify the story's code integrates correctly with previously completed stories
- Check that shared interfaces (types, API contracts, DB schemas) are used consistently
- Look for broken imports, missing dependencies, or interface mismatches
- Run the full test suite (not just the story's tests) to catch regressions
Code Quality Gate
- Tests exist and pass
- No linter errors (run linter if available)
- No hardcoded secrets or credentials
- Error handling is present at system boundaries
- Code follows project conventions (naming, structure, patterns)
Output Format
## Acceptance Validation: {story-id} — {title}
### Status: PASS / FAIL
### Acceptance Criteria
| # | Criterion | Status | Evidence |
|---|-----------|--------|----------|
| 1 | {criterion} | PASS/FAIL | {file:line or test name} |
### Architecture Compliance: PASS / FAIL
- {findings}
### Integration Check: PASS / FAIL
- {findings}
### Code Quality: PASS / FAIL
- {findings}
### Blocking Issues (if FAIL)
- {issue}: {what needs to change}
If the story FAILS validation:
- List specific issues that must be fixed
- The teammate must fix them before the story can pass
- Do NOT mark the story as passed in the PRD
Optional input:
- Story ID or specific files to validate via $ARGUMENTS
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?