[2.9.1] Improve /plan command post-generation options

- Reorder options: Review first, Work locally second, Work on remote third
- Add "Work on remote" option with `&` for background execution on Claude Code web
- Remove separate "Rework" option since "Other" handles custom changes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Kieran Klaassen
2025-12-04 08:52:05 -08:00
parent 6c5b3e40db
commit a165503ec6
3 changed files with 16 additions and 10 deletions

View File

@@ -376,21 +376,21 @@ After writing the plan file, use the **AskUserQuestion tool** to present these o
**Question:** "Plan ready at `plans/<issue_title>.md`. What would you like to do next?"
**Options:**
1. **Start `/work`** - Begin implementing this plan
2. **Run `/plan_review`** - Get feedback from reviewers (DHH, Kieran, Simplicity)
3. **Create Issue** - Create issue in project tracker (GitHub/Linear)
4. **Simplify** - Reduce detail level
5. **Rework** - Change approach or request specific changes
1. **Run `/plan_review`** - Get feedback from reviewers (DHH, Kieran, Simplicity)
2. **Start `/work`** - Begin implementing this plan locally
3. **Start `/work` on remote** - Begin implementing in Claude Code on the web (use `&` to run in background)
4. **Create Issue** - Create issue in project tracker (GitHub/Linear)
5. **Simplify** - Reduce detail level
Based on selection:
- **`/work`** → Call the /work command with the plan file path
- **`/plan_review`** → Call the /plan_review command with the plan file path
- **`/work`** → Call the /work command with the plan file path
- **`/work` on remote** → Run `/work plans/<issue_title>.md &` to start work in background for Claude Code web
- **Create Issue** → See "Issue Creation" section below
- **Simplify** → Ask "What should I simplify?" then regenerate simpler version
- **Rework** → Ask "What would you like changed?" then regenerate with changes
- **Other** (automatically provided) → Accept free text, act on it
- **Other** (automatically provided) → Accept free text for rework or specific changes
Loop back to options after Simplify/Rework until user selects `/work` or `/plan_review`.
Loop back to options after Simplify or Other changes until user selects `/work` or `/plan_review`.
## Issue Creation