Agent skill
check-prd
Verify PRD completion against its success criteria
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/check-prd
SKILL.md
Check PRD Skill
Verify that a PRD's success criteria are met and all tasks are complete.
Arguments
The user provides a PRD number or path. If not given, ask which PRD to check.
Workflow
- Read PRD: Load the full document
- Check Section 2 (Success Criteria): Verify each criterion
- Check Section 6 (Implementation Plan): Verify all tasks are done
- Run verifications: Execute verification commands for each task
- Report results: Pass/fail per criterion with evidence
- Recommend: Suggest stage transition if all criteria pass
Success Criteria Verification
For each success criterion in the table:
- Read the Measurement column — understand how to verify
- Read the Target column — understand what "pass" means
- Run appropriate verification:
- Code existence: Use Glob/Grep to find the code
- Test passing: Run the test command
- Build success: Run
bun turbo build - Type safety: Run
bun turbo type-check - Lint clean: Run
bun turbo lint - Manual check: Inspect the relevant files
Task Completion Check
For each task in Section 6:
- Check if the expected files/changes exist
- Run the task's verification command (from annotations)
- Mark as PASS or FAIL
Output Format
## PRD Check: PRD-NNN — Title
### Success Criteria
| # | Criterion | Target | Result | Evidence |
| --- | ----------- | ------------ | --------- | -------------- |
| 1 | Description | Target value | PASS/FAIL | What was found |
| 2 | ... | ... | ... | ... |
### Task Completion
| Task # | Description | Status | Verification |
| ------ | ----------- | --------- | ---------------------- |
| 1 | Task name | PASS/FAIL | Command output summary |
| 2 | ... | ... | ... |
### Overall: PASS / FAIL
**Recommendation**: [Move to completed / Fix issues listed above]
After Checking
- If all criteria pass: Suggest
/move-prd PRD-NNN completed - If some fail: List specific failures and what needs to be done
- If PRD is already in
completed/: Confirm it's still valid
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?