npx claudepluginhub zate/cc-plugins --plugin devloopThis skill is limited to using the following tools:
Execute plan tasks via fresh-context subagents. **You are the orchestrator.**
Orchestrates parallel execution of tasks from markdown plans using rolling pool of up to 12 Sparky subagents, with context packs to prevent filename conflicts.
Orchestrates execution of implementation plans with independent tasks by dispatching implementers and reviewers, tracking granular progress per task and phase.
Share bugs, ideas, or general feedback.
Execute plan tasks via fresh-context subagents. You are the orchestrator.
Bash hygiene: prefer quiet flags to minimize output (npm install --silent, git status -sb, pipe long output through | tail -n 20).
Run check-plan-complete.sh .devloop/plan.md.
/devloop:plan) and STOP.--max-tasks N: Max tasks before pausing.--dry-run: List pending tasks and STOP.Extract max 100 lines from CLAUDE.md (code style, patterns) and plan's Overview/Considerations. Store as shared context.
Read all - [ ] tasks from plan.md. Group them:
[parallel:X] markers → batch together[depends:N.M] → schedule after dependency completesRun gather-task-context.sh or Grep/Glob for relevant files (max 20 per task).
Parse [model:X] from the task line:
[model:haiku]: Spawn with model: "haiku"[model:sonnet] or no annotation: Spawn with model: "sonnet" (default)For a parallel batch, spawn all workers simultaneously (multiple Agent calls in a single message):
Agent:
subagent_type: "devloop:swarm-worker" # or devloop:haiku-worker for [model:haiku]
model: "haiku" # or "sonnet" per annotation
prompt: |
Task: [description]
Phase: [phase name]
Context: [relevant files and conventions]
Instructions: Implement this task. Do NOT modify plan.md or commit.
git diff --stat and worker summary for each completed task.[x] in plan.md and update native task.auto_commit: true and phase complete, commit changes.--max-tasks reached.[depends:N.M] — if a just-completed task unblocks dependent tasks, add them to the next batch.When all [x], AskUserQuestion: Ship it, Archive, or Review.
If worker fails, AskUserQuestion:
[!], continue.Now: Check plan state and begin swarm.