From 01f15fdca90725cbe75695ea78686f85bb59c7aa Mon Sep 17 00:00:00 2001 From: Kieran Klaassen Date: Sun, 1 Mar 2026 15:26:27 -0800 Subject: [PATCH] feat: Update orchestration commands to reference ce:* instead of workflows:* Co-Authored-By: Claude Sonnet 4.6 --- plugins/compound-engineering/commands/deepen-plan.md | 12 ++++++------ plugins/compound-engineering/commands/lfg.md | 6 +++--- plugins/compound-engineering/commands/slfg.md | 6 +++--- plugins/compound-engineering/commands/test-xcode.md | 4 ++-- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/plugins/compound-engineering/commands/deepen-plan.md b/plugins/compound-engineering/commands/deepen-plan.md index a705476..604972e 100644 --- a/plugins/compound-engineering/commands/deepen-plan.md +++ b/plugins/compound-engineering/commands/deepen-plan.md @@ -10,7 +10,7 @@ argument-hint: "[path to plan file]" **Note: The current year is 2026.** Use this when searching for recent documentation and best practices. -This command takes an existing plan (from `/workflows:plan`) and enhances each section with parallel research agents. Each major element gets its own dedicated research sub-agent to find: +This command takes an existing plan (from `/ce:plan`) and enhances each section with parallel research agents. Each major element gets its own dedicated research sub-agent to find: - Best practices and industry patterns - Performance optimizations - UI/UX improvements (if applicable) @@ -145,13 +145,13 @@ Task general-purpose: "Use the security-patterns skill at ~/.claude/skills/secur ### 3. Discover and Apply Learnings/Solutions -Check for documented learnings from /workflows:compound. These are solved problems stored as markdown files. Spawn a sub-agent for each learning to check if it's relevant. +Check for documented learnings from /ce:compound. These are solved problems stored as markdown files. Spawn a sub-agent for each learning to check if it's relevant. **LEARNINGS LOCATION - Check these exact folders:** ``` -docs/solutions/ <-- PRIMARY: Project-level learnings (created by /workflows:compound) +docs/solutions/ <-- PRIMARY: Project-level learnings (created by /ce:compound) ├── performance-issues/ │ └── *.md ├── debugging-patterns/ @@ -370,7 +370,7 @@ Wait for ALL parallel agents to complete - skills, research agents, review agent **Collect outputs from ALL sources:** 1. **Skill-based sub-agents** - Each skill's full output (code examples, patterns, recommendations) -2. **Learnings/Solutions sub-agents** - Relevant documented learnings from /workflows:compound +2. **Learnings/Solutions sub-agents** - Relevant documented learnings from /ce:compound 3. **Research agents** - Best practices, documentation, real-world examples 4. **Review agents** - All feedback from every reviewer (architecture, security, performance, simplicity, etc.) 5. **Context7 queries** - Framework documentation and patterns @@ -481,14 +481,14 @@ After writing the enhanced plan, use the **AskUserQuestion tool** to present the **Options:** 1. **View diff** - Show what was added/changed 2. **Run `/technical_review`** - Get feedback from reviewers on enhanced plan -3. **Start `/workflows:work`** - Begin implementing this enhanced plan +3. **Start `/ce:work`** - Begin implementing this enhanced plan 4. **Deepen further** - Run another round of research on specific sections 5. **Revert** - Restore original plan (if backup exists) Based on selection: - **View diff** → Run `git diff [plan_path]` or show before/after - **`/technical_review`** → Call the /technical_review command with the plan file path -- **`/workflows:work`** → Call the /workflows:work command with the plan file path +- **`/ce:work`** → Call the /ce:work command with the plan file path - **Deepen further** → Ask which sections need more research, then re-run those agents - **Revert** → Restore from git or backup diff --git a/plugins/compound-engineering/commands/lfg.md b/plugins/compound-engineering/commands/lfg.md index 86f40e5..f057403 100644 --- a/plugins/compound-engineering/commands/lfg.md +++ b/plugins/compound-engineering/commands/lfg.md @@ -8,10 +8,10 @@ disable-model-invocation: true Run these slash commands in order. Do not do anything else. Do not stop between steps — complete every step through to the end. 1. **Optional:** If the `ralph-wiggum` skill is available, run `/ralph-wiggum:ralph-loop "finish all slash commands" --completion-promise "DONE"`. If not available or it fails, skip and continue to step 2 immediately. -2. `/workflows:plan $ARGUMENTS` +2. `/ce:plan $ARGUMENTS` 3. `/compound-engineering:deepen-plan` -4. `/workflows:work` -5. `/workflows:review` +4. `/ce:work` +5. `/ce:review` 6. `/compound-engineering:resolve_todo_parallel` 7. `/compound-engineering:test-browser` 8. `/compound-engineering:feature-video` diff --git a/plugins/compound-engineering/commands/slfg.md b/plugins/compound-engineering/commands/slfg.md index 050d24e..32d2e76 100644 --- a/plugins/compound-engineering/commands/slfg.md +++ b/plugins/compound-engineering/commands/slfg.md @@ -10,15 +10,15 @@ Swarm-enabled LFG. Run these steps in order, parallelizing where indicated. Do n ## Sequential Phase 1. **Optional:** If the `ralph-wiggum` skill is available, run `/ralph-wiggum:ralph-loop "finish all slash commands" --completion-promise "DONE"`. If not available or it fails, skip and continue to step 2 immediately. -2. `/workflows:plan $ARGUMENTS` +2. `/ce:plan $ARGUMENTS` 3. `/compound-engineering:deepen-plan` -4. `/workflows:work` — **Use swarm mode**: Make a Task list and launch an army of agent swarm subagents to build the plan +4. `/ce:work` — **Use swarm mode**: Make a Task list and launch an army of agent swarm subagents to build the plan ## Parallel Phase After work completes, launch steps 5 and 6 as **parallel swarm agents** (both only need code to be written): -5. `/workflows:review` — spawn as background Task agent +5. `/ce:review` — spawn as background Task agent 6. `/compound-engineering:test-browser` — spawn as background Task agent Wait for both to complete before continuing. diff --git a/plugins/compound-engineering/commands/test-xcode.md b/plugins/compound-engineering/commands/test-xcode.md index 82d5c8b..10cba1b 100644 --- a/plugins/compound-engineering/commands/test-xcode.md +++ b/plugins/compound-engineering/commands/test-xcode.md @@ -323,9 +323,9 @@ mcp__xcodebuildmcp__shutdown_simulator({ simulator_id: "[uuid]" }) /xcode-test current ``` -## Integration with /workflows:review +## Integration with /ce:review -When reviewing PRs that touch iOS code, the `/workflows:review` command can spawn this as a subagent: +When reviewing PRs that touch iOS code, the `/ce:review` command can spawn this as a subagent: ``` Task general-purpose("Run /xcode-test for scheme [name]. Build, install on simulator, test key screens, check for crashes.")