reviewlisted
Install: claude install-skill valasubramanian-kr/wallet-web-developer
# Plan Review Skill
## Purpose
The `/review` skill provides a human-in-the-loop feedback mechanism after the implementation plan is generated. It allows stakeholders to:
- Provide review comments on the proposed plan
- Ask clarifying questions about the implementation approach
- Approve the plan and proceed to coding
This skill bridges the gap between automated planning and implementation, ensuring human oversight of critical technical decisions.
## Usage
```
/review [optional: review comments or questions]
```
**Examples**:
```
/review
# Interactive mode: asks for review comments, questions, or approval
/review Can we use React Query instead of manual state management?
# Direct question mode: processes the question and updates the plan
/review The error handling approach should include retry logic for network failures
# Direct feedback mode: incorporates feedback into the plan
```
# Instructions
## Prerequisites
1. Verify that the implementation plan exists:
- Read the file at `workflow/jira-to-github/<JIRA-NUMBER>/implementation-plan.md`
- If the file doesn't exist, inform the user to run `/plan` first
2. Read the current JIRA issue for context:
- Read the file at `workflow/jira-to-github/<JIRA-NUMBER>/current-issue.md`
## Review Process
### Step 1: Determine Review Mode
**If user provided input (review comments or questions)**:
- Parse the input to determine if it's:
- Review comments (suggestions for changes)
- Questions (seeking clarification)