From super-agent-skills
Executes multi-stream parallel feature development across isolated worktrees. Use when writing-plans detects 2+ independent work streams in the plan and the user chooses compound execution at the handoff.
How this skill is triggered — by the user, by Claude, or both
Slash command
/super-agent-skills:compound-engineeringThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Execute independent work streams in parallel across isolated worktrees, then integrate the results.
Execute independent work streams in parallel across isolated worktrees, then integrate the results.
Prerequisite: super-agent-skills:writing-plans has already written the plan, detected independent streams, and the user chose compound execution. You receive the stream grouping (which tasks belong to which stream) and integration points (shared types, API contracts).
Announce at start: "I'm using compound-engineering to orchestrate parallel work streams."
Verify the stream grouping from writing-plans:
For each stream:
super-agent-skills:using-git-worktreessuper-agent-skills:subagent-driven-development in each worktree with the stream's tasks from the planmain branch
├── worktree: feature/sharing-backend ← Stream A executing
├── worktree: feature/sharing-frontend ← Stream B executing
└── worktree: feature/sharing-notifs ← Stream C executing
After all streams complete:
Invoke super-agent-skills:requesting-code-review on the combined result. The chain then continues normally: requesting-code-review → user prompt → wrap-up or ship.
After integration:
npx claudepluginhub p/oscarqjh-super-agent-skills-plugins-super-agent-skillsGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.