with one click
plan-reviewer
Review implementation plans, PR specifications, and feature documentation to ensure acceptance criteria are testable, validation is complete, and integration risks are surfaced before coding begins.
Menu
Review implementation plans, PR specifications, and feature documentation to ensure acceptance criteria are testable, validation is complete, and integration risks are surfaced before coding begins.
Play Snake. Trigger for /play:snake, play snake, snake game, let's play snake, or requests to launch the Snake game.
Play a quest completion celebration animation. Use when the user invokes /celebrate, asks to celebrate a quest, or when a quest reaches the complete/archived state.
Automated CI code review for GitHub PRs using OpenAI Codex. Validates PR descriptions, checks implementation alignment, enforces Quest architecture boundaries, and maps test coverage to acceptance criteria when PRs move to ready-for-review.
Review actual code implementations (Python, JavaScript, TypeScript, React) for correctness, maintainability, security hygiene, and adherence to project patterns. Use when reviewing pull requests to ensure code quality, proper error handling, adequate test coverage mapped to acceptance criteria, and alignment with architecture boundaries and review standards.
Generates commit messages by inspecting staged changes and repo history. Matches existing conventions (Conventional Commits or plain English), leads with intent, and appends the Quest co-author trailer. Use when the user asks for a commit message, help with git commit, or when reviewing staged changes for commit.
Implement an approved implementation plan step by step, producing small reviewable changes, mapping code/tests to acceptance criteria, and maintaining a lightweight decision log. Use when the plan/spec is already agreed and you want disciplined execution.
| name | plan-reviewer |
| description | Review implementation plans, PR specifications, and feature documentation to ensure acceptance criteria are testable, validation is complete, and integration risks are surfaced before coding begins. |
Before reviewing details, confirm the plan includes these minimum inputs. If any are missing, request edits to the plan rather than guessing.
Review implementation plans, PR specifications, and feature documentation before coding begins.
This skill focuses on:
It is designed to produce actionable deltas, not a perfect plan.
Use this skill when reviewing:
Do not use this skill for:
A plan review is “done” when:
Every acceptance criterion is testable
Each acceptance criterion maps to at least one validation step.
Validation is complete enough to start coding
Manual validation covers key scenarios, and automated tests are specified or explicitly deferred.
Integration points are explicit and validated
Anything the change touches has a corresponding verification step.
Open questions are documented
Any ambiguity is called out as a decision, not silently assumed.
Top risks are listed with mitigations
At least the top 3 risks are identified and tied to validation.
Once these five conditions are met, stop expanding.
For each acceptance criterion, check:
Common gaps to flag
Rule: Do not invent new product requirements.
Only make existing requirements testable, or flag them as ambiguous.
Manual validation should cover:
Manual validation steps should include:
Convert vague testing statements into explicit expectations:
Examples:
Naming guidance Use descriptive names, consistent with existing patterns:
test_create_resource_when_valid_returns_201()test_create_resource_when_missing_field_returns_400()test_service_retries_on_timeout_then_fails()List the systems touched by this change, then for each one specify:
Examples of integration points:
Outcome: a short “integration validation checklist” tied to the plan.
Use these checklists when the plan includes the relevant domain.
Verify:
Add validations:
Verify:
Add validations:
Verify:
Add validations:
Verify:
Add validations:
Verify:
Add validations:
For each major risk, record:
Example:
Keep this list short: top 3 to 5 risks.
Use this structure by default:
# Plan Review: [Feature Name]
## 1. Readiness Verdict
- Verdict: ✅ Ready to implement / 🟡 Ready after fixes / 🔴 Not ready
- Why: [1 to 3 bullets]
## 2. Open Questions To Resolve Before Coding (Decisions needed)
- [ ] Item 1
- [ ] Item 2
## 3. Open Requirements
### Must resolve before coding (blocking)
- Items where the acceptance criterion itself is missing, ambiguous, or untestable
### Resolve during implementation (non-blocking)
- Items where the WHAT is clear from the acceptance criteria but the exact HOW is an implementation detail
- Example: "a test seam is needed for year injection" is non-blocking if the AC already says "rejects non-2026 year before writes"
- Example: "which exact mock library to use" is non-blocking
## 4. Validation Plan Summary
### Manual
- Scenario: ...
- [ ] Item 1
- [ ] Item 2
...
- Scenario: ...
...
### Automated
- Unit: ...
- [ ] Item 1
- [ ] Item 2
...
- Integration: ...
- [ ] Item 1
- [ ] Item 2
...
- UI (if applicable): ...
- [ ] Item 1
- [ ] Item 2
...
## 5. Top Risks and Mitigations
- Risk: ...
- Impact: ...
- Likelihood: ...
- Mitigation: ...
If the reviewer requests a full deep dive, expand into:
Requirement: For each Acceptance Criterion, provide at least one explicit example test case when feasible. If a criterion cannot be reasonably automated, mark it as Deferred and include the reason and what manual validation will cover.
When a test approach requires codebase investigation to determine the mechanism (e.g., how to inject a test seam, which mock strategy to use), classify it as "resolve during implementation" rather than blocking — as long as the plan states the acceptance criterion the test must satisfy.