EveryInc/compound-engineering-plugin: Official Compound Engineering plugin for Claude Code, Codex, Cursor, and more

github.com · clipped 2026-06-15

Preview clipped from the web into my Obsidian — read the full piece at the source.

Compound Engineering

AI skills and agents that make each unit of engineering work easier than the last.

Philosophy

Each unit of engineering work should make subsequent units easier — not harder.

Traditional development accumulates technical debt. Every feature adds complexity. Every bug fix leaves behind a little more local knowledge that someone has to rediscover later. The codebase gets larger, the context gets harder to hold, and the next change becomes slower.

Compound engineering inverts this. 80% is in planning and review, 20% is in execution:

The point is not ceremony. The point is leverage. A good brainstorm makes the plan sharper. A good plan makes execution smaller. A good review catches the pattern, not just the bug. A good compound note means the next agent does not have to learn the same lesson from scratch.

Learn more

Workflow

/ce-strategy is upstream of the loop — it captures the product’s target problem, approach, persona, metrics, and tracks as a short durable anchor at STRATEGY.md. Ideate, brainstorm, and plan read it as grounding when present, so strategy choices flow into feature conception, prioritization, and spec.

The core loop is: brainstorm the requirements, plan the implementation, work through the plan, review the result, compound the learning, then repeat with better context.

Use /ce-ideate before the loop when you want the agent to generate and critique bigger ideas before choosing one to brainstorm. It produces a ranked ideation artifact, not requirements, plans, or code.

SkillPurpose
/ce-strategyCreate or maintain STRATEGY.md — the product’s target problem, approach, persona, key metrics, and tracks. Read as grounding by ideate, brainstorm, and plan
/ce-ideateOptional big-picture ideation: generate and critically evaluate grounded ideas, then route the strongest one into brainstorming
/ce-brainstormInteractive Q&A to think through a feature or problem and write a right-sized requirements doc before planning
/ce-planTurn feature ideas into detailed implementation plans
/ce-workExecute plans with worktrees and task tracking
/ce-debugSystematically reproduce failures, trace root cause, and implement fixes
/ce-code-reviewMulti-agent code review before merging
/ce-compoundDocument learnings to make future work easier
/ce-product-pulseGenerate a single-page, time-windowed pulse report on usage, performance, errors, and followups. Saves to docs/pulse-reports/

/ce-product-pulse is the read-side companion — a time-windowed report on what users actually experienced and how the product performed over a given window (24h, 7d, etc.), saved to docs/pulse-reports/ so past pulses form a browseable timeline of user outcomes. The next strategy update and the next brainstorm get real signal to anchor to.

Each cycle compounds: brainstorms sharpen plans, plans inform future plans, reviews catch more issues, patterns get documented.

Quick Example

A typical cycle starts by turning a rough idea into a requirements doc, then planning from that doc before handing execution to /ce-work:

/ce-brainstorm "make background job retries safer"
/ce-plan docs/brainstorms/background-job-retry-safety-requirements.md
/ce-work
/ce-code-review
/ce-compound

For a focused bug investigation:

/ce-debug "the checkout webhook sometimes creates duplicate invoices"
/ce-code-review
/ce-compound

Getting Started

After installing, run /ce-setup in any project. It checks your environment, installs missing tools, and bootstraps project config.

The compound-engineering plugin currently ships 37 skills and 51 agents. See the full component reference for the complete inventory.


Install

Claude Code

/plugin marketplace add EveryInc/compound-engineering-plugin
/plugin install compound-engineering

Cursor

In Cursor Agent chat, install from the plugin marketplace:

/add-plugin compound-engineering

Or search for “compound engineering” in the plugin marketplace.

Codex

Read the full version at the source →