diff --git a/plugins/compound-engineering/.claude-plugin/plugin.json b/plugins/compound-engineering/.claude-plugin/plugin.json index b105c39..d79f990 100644 --- a/plugins/compound-engineering/.claude-plugin/plugin.json +++ b/plugins/compound-engineering/.claude-plugin/plugin.json @@ -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", diff --git a/plugins/compound-engineering/CHANGELOG.md b/plugins/compound-engineering/CHANGELOG.md index 6bb31a6..3922e34 100644 --- a/plugins/compound-engineering/CHANGELOG.md +++ b/plugins/compound-engineering/CHANGELOG.md @@ -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 diff --git a/plugins/compound-engineering/commands/workflows/plan.md b/plugins/compound-engineering/commands/workflows/plan.md index 452408a..fa2a1f7 100644 --- a/plugins/compound-engineering/commands/workflows/plan.md +++ b/plugins/compound-engineering/commands/workflows/plan.md @@ -376,21 +376,21 @@ After writing the plan file, use the **AskUserQuestion tool** to present these o **Question:** "Plan ready at `plans/.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/.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