Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

cc-fleet Workflow Orchestration

Author a JS script that orchestrates multi-phase, resumable runs across many cc-fleet provider subagents, off the main context.

AutomationAdvanced20627AI 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 --resume after a kill.
  • Documents the full script API (meta, agent(), parallel(), pipeline(), phase(), budget, log()) plus option semantics for schema, profile, max_turns, isolation, timeout, and the determinism lockdown (no Date, Math.random, setTimeout, require).
  • Adds operational playbooks: preflight doctor checks, a provider ask ladder, chunked wait polling, and an error_code dispatch 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

  1. 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.
  2. Parallel multi-file edits with isolation: "worktree" so leaves never collide in the same repo.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. 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.
  2. Clone the repo: git clone https://github.com/ethanhq/cc-fleet.git /tmp/cc-fleet
  3. 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/
  4. Copy cc-fleet-shared too — SKILL.md loads ../cc-fleet-shared/*.md as load-bearing content.
  5. Run cc-fleet doctor --json and verify the claude-binary and fingerprint checks pass (other check failures are not blockers).
  6. 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 GitHubLicense: Apache-2.0