Skill Documentation

July 23, 2026 · View on GitHub

End-user-facing documentation for compound-engineering plugin skills. Each page covers the skill's high-level purpose, novel mechanics, use cases, and chain position relative to other skills.

For runtime behavior and contributor reference, the SKILL.md in each skill's source folder under skills/ is authoritative.

Checkout-local defaults shared across skills are documented in Compound Engineering configuration.


The compound-engineering core loop

   [/ce-ideate]       (optional) "What's worth exploring?"


┌─→ /ce-brainstorm    "What does this need to be?"
│       │
│       ▼
│   /ce-plan          "What's needed to accomplish this?"
│       │
│       ▼
│   /ce-work          "Build it."
│       │
│       ▼
└── /ce-compound      "Capture what we learned."

/ce-compound is the closer that makes the loop compound: it writes learnings into docs/solutions/, which the next iteration's /ce-brainstorm and /ce-plan read as grounding — that return arrow is the whole point. /ce-ideate is an optional prelude for when you don't yet know what to work on. Everything else in this catalog is either an anchor around the loop or an on-demand tool used when a specific need arises — not a step you walk through every time.


The Core Loop

The steps of every engineering iteration. /ce-ideate runs only when you need to find a direction first; the other four run in order per piece of work.

SkillDescription
/ce-ideateOptional first step — discover strong, qualified directions worth exploring with six conceptual frames, warrant requirement, adversarial filtering
/ce-brainstormDefine what something should become — collaborative dialogue, named gap lenses, requirements-only unified plan
/ce-planBound execution with guardrails — enrich unified plans with U-IDs, test scenarios, automatic confidence check; WHAT decisions, not HOW code
/ce-workExecute against implementation-ready plan guardrails — figure out the HOW with code in front of you, ship through quality gates
/ce-compoundClose the loop by capturing what you learned into docs/solutions/ so the next iteration starts smarter — bug track + knowledge track

Around the Loop

Skills that anchor, feed, or maintain the loop without being steps inside it.

SkillDescription
/ce-strategyCreate or maintain STRATEGY.md — the upstream anchor read by ce-ideate, ce-brainstorm, and ce-plan as grounding
/ce-product-pulseOuter feedback loop — single-page time-windowed report on usage, performance, errors, followups; saved to docs/pulse-reports/ as a timeline
/ce-sweepRecurring feedback sweep — ingest Slack/GitHub items (email experimental) since per-source cursors, acknowledge at source, analyze recordings, verify fixes merged, and reconcile an /lfg-ready rolling plan
/ce-compound-refreshMaintain docs/solutions/ over time — five outcomes (Keep / Update / Consolidate / Replace / Delete), Interactive + Autofix modes

On-Demand

Invoked when a specific need arises — not part of any chain.

SkillDescription
/ce-povForm a decisive, project-grounded POV as an adoption verdict, holistic document take, or position on supplied approaches — optional named/oracle panel with a blind initial round, bounded evidence-based reconciliation, and a user-extensible checkpoint
/ce-explainTurn a concept, a diff, an idea, or a window of your own recent work into a dense, self-contained visual document built to keep — evidence-grounded recaps, capability-detected destination ask, optional opt-in check-in (predict-then-reveal for diffs, corrected exercises)
/ce-debugFind root causes systematically — causal chain gate, predictions, post-fix polish/review, PR handoff
/ce-code-reviewStructured code review with skill-local reviewer personas, confidence-gated findings, four modes
/ce-doc-reviewReview requirements or plan documents using skill-local reviewer personas — coherence, feasibility, product-lens, design-lens, security-lens, scope-guardian, adversarial
/ce-simplify-codeRefine recently changed code — reuse, quality, and efficiency review; behavior preservation verified
/ce-optimizeMetric-driven iterative optimization loops — three-tier evaluation, parallel experiments, persistence discipline

Research & Context

SkillDescription
/ce-riffrec-feedback-analysisTurn raw Riffrec recordings into structured feedback — quick bug or extensive analysis with ce-brainstorm handoff

Git Workflow

SkillDescription
/ce-commitCreate a single, well-crafted git commit — convention-aware, sensitive-file-safe, file-level logical splitting
/ce-commit-push-prGo from working changes to an open PR with adaptive descriptions, related-reference handling, three modes (full workflow / description update / description-only generation), and a concept-teaching section for anything the change newly introduces
/ce-babysit-prWatch an open PR and keep it moving toward merge — react to incoming review comments (via /ce-resolve-pr-feedback) and CI failures (via /ce-debug) as each arrives, comments-first, with a crash-safe resumable tick, continuous or checkpoint mode per harness, and a settle window that avoids premature "ready to merge"
/ce-worktreeEnsure work happens in an isolated git worktree — detect existing isolation, prefer the harness's native worktree tool, fall back to plain git

Autonomous Pipeline

SkillDescription
/lfgRun the full hands-off engineering pipeline through a green PR, then conditionally recommend an opt-in fresh-session handoff for the next separately planned area

Frontend Design

SkillDescription
/ce-polishConversational UX polish — start dev server, open browser, iterate together; auto-detects 8 frameworks (manual invocation only)

Collaboration

SkillDescription
/ce-proofPublish, view, comment on, and edit markdown via Proof, Every's collaborative editor — hosted v3 web API with owner credential lifecycle

Workflow Utilities

SkillDescription
/ce-promoteDraft user-facing announcement copy for a shipped feature (X, changelog, LinkedIn, email) — voice-matched via the optional Spiral CLI, a lite layer of editorial & social expertise without it, drafts only
/ce-resolve-pr-feedbackEvaluate, fix, and reply to PR review feedback in parallel — including nitpicks
/ce-dogfoodHands-off diff-scoped browser QA of the active branch — maps flows, autonomously fixes small breakages with regression tests and commits, writes a durable report (manual invocation only)
/ce-test-browserEnd-to-end browser tests using a host-native browser with agent-browser fallback
/ce-test-xcodeBuild and test iOS apps on simulator using XcodeBuildMCP — screenshots, logs, human verification
/ce-setupDiagnose optional tool capabilities and bootstrap safe project-local config
/ce-handoffCreate a session handoff at the default temp store or a requested destination, then discover or orient from a selected source — no automatic continuation

See also

For the top-level install and usage guide, see README.md. Each skill's authoritative runtime spec is in skills/<skill>/SKILL.md.