Commands are slash commands you invoke in your conversation with Claude. They orchestrate complex workflows by spawning agents, running skills, and coordinating multi-step processes.Invocation:
/ce:plan Add user authentication/ce:work docs/plans/2026-03-03-feat-auth-plan.md/ce:review
These commands use the ce: prefix to unambiguously identify them as compound-engineering commands. This distinguishes them from Claude’s built-in /plan and /review commands.
Why ce:? The namespace (short for compound-engineering) makes it immediately clear these commands belong to this plugin and provides a distinct workflow separate from Claude’s defaults.
Command
Description
Usage Example
/ce:brainstorm
Explore requirements and approaches before planning
/ce:brainstorm user authentication system
/ce:plan
Create implementation plans
/ce:plan Fix checkout race condition
/ce:work
Execute work items systematically
/ce:work docs/plans/2026-03-03-feat-auth-plan.md
/ce:review
Run comprehensive code reviews
/ce:review
/ce:compound
Document solved problems to compound team knowledge
/ce:brainstorm - Answer WHAT to build through collaborative dialogue
/ce:plan - Answer HOW to build it with detailed planning
/ce:work - Execute the plan with systematic implementation
/ce:review - Review the implementation with multiple specialized agents
/ce:compound - Document the solution for future reference
Example: Full workflow from idea to documentation
# Step 1: Explore the idea/ce:brainstorm API rate limiting for our SaaS product# Claude asks questions, you collaborate on approach# Brainstorm saved to docs/brainstorms/2026-03-03-api-rate-limiting-brainstorm.md# Step 2: Create detailed plan/ce:plan # Auto-detects recent brainstorm# Research agents gather context, plan saved to docs/plans/2026-03-03-feat-api-rate-limiting-plan.md# Step 3: Implement the plan/ce:work docs/plans/2026-03-03-feat-api-rate-limiting-plan.md# Code is written, tests are created, commits are made# Step 4: Review the implementation/ce:review# Security, performance, Rails reviewers all provide feedback# Address feedback, iterate# Step 5: Document the solution/ce:compound# Solution saved to docs/solutions/performance-issues/api-rate-limiting.md# Available for future reference via learnings-researcher agent
# 🚀 Weekly Change Log: March 3, 2026## 🌟 New Features- Added OAuth2 authentication support (#456)- Implemented API rate limiting with Redis (#457)## 🐛 Bug Fixes- Fixed race condition in checkout flow (#458)- Resolved N+1 queries in briefs index (#459)## 🙌 Shoutouts@alice for the OAuth2 implementation@bob for performance improvements## 🎉 Fun Fact of the DayWe reduced API response time by 60% this week!