cc-fleet Workflow Orchestration
Author a JS script that orchestrates multi-phase, resumable runs across many cc-fleet provider subagents, off the main context.
AutomationAdvanced★ 206⑂ 27AI score 8/10Last updated: Aug 19, 2026
What it does
- Lets you write one JavaScript script that fans out many provider subagent leaves and sequences them as fan-out → barrier → synthesis, per-item pipelines, or loop-until-dry flows.
- The orchestration runs in a separate cc-fleet process, off your main session context, so scheduling costs almost no tokens; a content-hash journal makes runs resumable with
--resumeafter a kill. - Documents the full script API (
meta,agent(),parallel(),pipeline(),phase(),budget,log()) plus option semantics forschema,profile,max_turns,isolation,timeout, and the determinism lockdown (noDate,Math.random,setTimeout,require). - Adds operational playbooks: preflight
doctorchecks, a provider ask ladder, chunkedwaitpolling, and anerror_codedispatch table for leaf failures.
Who it's for
- Existing cc-fleet users running several LLM providers in parallel.
- Developers automating large audits or analyses where phases depend on each other, not just flat batches.
- Anyone running long batches that must survive a crash and resume cheaply.
Examples
- Map endpoints per module → draft a checklist per map via a no-barrier pipeline → loop for uncovered risks → one
provider: "claude"opus node to rank severity. - Parallel multi-file edits with
isolation: "worktree"so leaves never collide in the same repo. - Recover a killed run:
cc-fleet workflow run audit.js --resume "$RUN"replays journaled leaves and only re-executes what didn't finish.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/ethanhq/cc-fleet/HEAD/codex-plugin/skills/workflow/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the codex-plugin/skills/workflow folder from the GitHub repo ethanhq/cc-fleet into my ~/.claude/skills/workflow/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/ethanhq/cc-fleet.git /tmp/cc-fleet && mkdir -p ~/.claude/skills && cp -r /tmp/cc-fleet/codex-plugin/skills/workflow /tmp/cc-fleet/codex-plugin/skills/cc-fleet-shared ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Make sure the Claude Code CLI (
claude, ideally ≥ 2.1.88) and cc-fleet are installed and logged in on the machine where your shell runs. - Clone the repo:
git clone https://github.com/ethanhq/cc-fleet.git /tmp/cc-fleet - Copy the skill folders:
mkdir -p ~/.claude/skills && cp -r /tmp/cc-fleet/codex-plugin/skills/workflow /tmp/cc-fleet/codex-plugin/skills/cc-fleet-shared ~/.claude/skills/ - Copy
cc-fleet-sharedtoo — SKILL.md loads../cc-fleet-shared/*.mdas load-bearing content. - Run
cc-fleet doctor --jsonand verify the claude-binary and fingerprint checks pass (other check failures are not blockers). - Restart Claude Code and ask for something like "run a multi-phase cc-fleet workflow to audit these modules" to trigger it.
View source on GitHub ↗License: Apache-2.0