[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

@@ -1,6 +1,6 @@
{
"name": "compound-engineering",
"version": "2.9.0",
"version": "2.9.1",
"description": "AI-powered development tools. 24 agents, 19 commands, 11 skills, 2 MCP servers for code review, research, design, and workflow automation.",
"author": {
"name": "Kieran Klaassen",

View File

@@ -5,6 +5,12 @@ All notable changes to the compound-engineering plugin will be documented in thi
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [2.9.1] - 2025-12-04
### Changed
- **`/plan` command** - Reordered post-generation options: Review first, Work locally second, Work on remote third (using `&` for background execution). Removed "Rework" as separate option since "Other" handles custom changes.
## [2.9.0] - 2025-12-02
### Changed

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