Workflow
๐ข Run Claude Code's โ๏ธ Dynamic Workflows, ๐ฅ Agent Teams & โก Subagents on any third-party model โ DeepSeek ยท GLM ยท Kimi ยท Qwen โฆ or your Codex subscription. No Anthropic subscription needed. ๏ฝ ๐ข ่ฎฉ Claude Code ็ โ๏ธ Dynamic Workflowใ๐ฅ Agent Teamใโก Subagent ็จไธไปปๆ็ฌฌไธๆนๆจกๅ โ DeepSeek ยท GLM ยท Kimi ยท Qwenโฆโฆ ๆไฝ ็ Codex ่ฎข้ ,ๆ ้ Claude ่ฎข้
npx -y skills add ethanhq/cc-fleet --skill workflowAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Orchestrate a MULTI-PHASE, dependent, or resumable run over many cc-fleet PROVIDER subagents from a JS script, off the main context (`cc-fleet workflow`). Use for fan-outโbarrierโsynthesis, per-item pipelines, loop-until-dry, or a run that must survive a kill and `--resume` from its journal. Trigger ONLY to run a cc-fleet provider workflow. NOT a flat fan-out of independent tasks (that is /cc-fleet:subagent โ cheaper, no script); NOT trivial single-shot work; NOT for editing or researching cc-fleet's own workflow code.
SKILL.md
24.9 KB, as published. Nobody here has run it
workflow โ multi-phase JS orchestration over provider subagents
Wrong lane? A flat one-shot fan-out of independent tasks โ /cc-fleet:subagent.
When this skill cites cc-fleet-shared/<file>.md, read the file at ../cc-fleet-shared/<file>.md relative to this SKILL.md โ the cited content is load-bearing, not optional background.
Execution environment โ check before running anything. Confirm this shell runs on the machine where cc-fleet is installed. In a remote or split-host agent session the shell can run on a separate machine with its own filesystem and PATH, so
cc-fleet: command not foundor a wrong working directory can indicate that the shell is running on the wrong machine, not that cc-fleet is broken โ route commands through a host-executing bridge and pass host paths for the files you reference, and stop cleanly if no such bridge exists. (Different-machine case only; for the same-machine codex sandbox โ a cleandoctorbut network-blocked leaves โ see Approval & sandbox below.)
A workflow is a JavaScript script that fans out provider cc-fleet subagent leaves and runs in a cc-fleet process, OFF the main session's context. You write the script; cc-fleet workflow run executes it. The orchestration plan lives in script variables (CPU, ~0 of your tokens) โ you are invoked only when authoring the script, not on every scheduling decision. The API mirrors the native Claude Code Workflow tool โ write the script exactly as you would a native workflow; the only addition is the provider option on agent().
Preflight (once per session)
On the first workflow run in a session, run cc-fleet doctor --json (your shell tool) and read the per-check results. The ONLY hard stops are the claude binary check and the fingerprint check โ cc-fleet drives the claude CLI as the leaf worker engine, so if either fails no leaf can run: stop and tell the user to install or fix Claude Code. Do not stop on the "providers reachable" check โ it aggregates every enabled provider, so one unrelated provider (especially a daemon-backed codex / openai-*, whose loopback proxy is only up during a spawn) flips the run to exit 1 while your target provider is fine. tmux checks are optional โ workflow needs no tmux.
Approval & sandbox (non-bypass codex)
Each leaf is a network-using claude -p child (โ the provider API), and the run writes its script (/tmp) and a journal. On a codex that is not in full-bypass mode, expect โ and pre-explain to the user โ two things, neither a cc-fleet bug:
- Approval prompts are normal. A non-bypass approval policy asks the user to approve each
cc-fleet โฆcall (workflow run, every chunkedwait); approving is expected; to reduce the prompts the user can lower the approval friction (--ask-for-approval) or run codex bypassed. - A sandbox can block every leaf. A workspace-write sandbox disables network by default, so each leaf fails looking like
PROVIDER_UNREACHABLE/ a timeout while the real cause is the sandbox, not the provider. Heuristic:cc-fleet doctoris locally clean but all leaves are "unreachable" โ the sandbox is blocking egress โ approve the escalation, have the user enable network for the workspace-write sandbox, or run codex bypassed.
When to use it
- Multi-phase or dynamic orchestration over many provider subagents: fan-out + barrier, per-item pipeline, loop-until-dry, branch-on-result, with a board run-tree.
- A single flat batch of independent one-shots is not a workflow โ that's /cc-fleet:subagent. Don't write a script for it.
The provider ask ladder (ask at most once per task)
- The user named a provider or model โ use it.
- Else run
cc-fleet default --json: if it returns a provider (source "configured" or "auto"), use it and STATE it in your kickoff line (e.g. "using glm (default)"). - Else (several providers, none default) ask the user ONCE which to use โ list the enabled providers from
cc-fleet list --json(name + default_model + the one-line note in cc-fleet-shared/providers.md). After they pick, runcc-fleet default <chosen>so you never ask again. (cc-fleet default <p>is user-layer; only run it to FILL a blank default, never with --force.) - A mid-task provider failure (insufficient balance / rate limit / auth) โ STOP, tell the user what happened, propose the next provider, and WAIT for their confirmation. Never switch providers silently.
Model tier within a provider: fan-out / leaf work โ omit --model (or --model fast); judge / synthesis / sustained work โ --model strong. The provider's roster decides the actual model โ see cc-fleet-shared/providers.md.
In a script, agent()'s opts.provider is optional: omitted, the leaf uses the run's default provider, resolved ONCE at launch and recorded with the run โ so --resume stays stable even if the default changes later. A script meant to be shared or reproducible should still pin provider explicitly.
The script API (mirrors the native Workflow tool)
const meta = {name, description, whenToUse?, model?, phases?: [{title, detail?}]}โ a top-level pure literal (no calls/vars/spreads; the nativeexport const metaform is also accepted).name+descriptionare required;modelis the default for agents that omit it. Read statically before the run โ the board shows the named, phase-skeletoned run immediately.agent(prompt, opts) โ Promise<string|object>โ runs ONE provider subagent leaf.opts.provideris optional (omitted โ the run's default provider, above);provider: "claude"runs the officialclaudeCLI on the user's OWN Claude Code login (subscription OAuth) instead of a configured provider โ a literalmodelid (opus/sonnet/a full id, omitted โ claude's login default, typically the costliest tier so name one), no roster keywords, no key material. The rest are optional:model,schema,label,phase,timeout(seconds),max_budget_usd,max_turns,isolation: "worktree",profile("slim" default / "slim-ro" / "full"),tools,skills,mcp. An unknown option key throws (typos fail loudly). On a leaf failure the promise rejects โ an un-caught top-levelawait agent()aborts the run; insideparallel/pipelinea failed element degrades tonull. Leaf failures classify like subagent failures โ dispatch table in "Leaf failures" below.schema(a plain object) goes to the claude child via--json-schema: claude injects a forcedStructuredOutputtool and enforces that it is CALLED (the native mechanism โ no JSON instruction is added to the prompt); the promise resolves with the parsed structured payload. The three rules:- a validation failure โ or a result envelope without a structured payload โ FAILS the leaf; there is NO automatic retry;
- the forced
StructuredOutputcall costs turns โ give a schema'd leafmax_turnsโฅ 3 (a budget of 1 starves it); - needs claude โฅ 2.1.88 (the slim-profile floor); an older claude fails the leaf with a classified usage error.
Client-side validation backstops with a recursive JSON-Schema subset:
type(object/array/string/number/integer/boolean/null;integeraccepts5.0),required, nestedproperties, arrayitems, scalarenum, stringpattern(RE2 best-effort โ the wire enforces the authoritative ECMA regex) /format(email/uri/uuid/date/date-time),additionalProperties,allOf/anyOf/oneOf, and intra-document$ref(#/โฆpointers; an external URI is unsupported and fails).
isolation: "worktree"runs the leaf with cwd = a fresh git worktree (torn down after), so parallel file-editing leaves don't collide (requires a git repo).profile:"slim"(the default; write-capable) /"slim-ro"(read-only research) /"full"(ONLY to compare against a full session or diagnose a suspected slim regression). Writes files โslim, read-only โslim-ro.tools,skills(defaulttrue) andmcprefine a slim leaf, are rejected withprofile: "full", andtoolsREPLACES the whole set, never appends. Tool whitelists / per-profilemcpdefaults / the pre-2.1.88 fail-open downgrade: cc-fleet-shared/providers.md. The run journal folds the effective profile + tools, so a--resumere-runs a leaf whose shape changed.max_turnsโ size it generously for read-heavy work: a multi-file / git-inspecting leaf spends ~1 turn per file read or command, so give it 30โ50 (or omit it); a small cap (8/10) starves it and the leaf failsSUBAGENT_MAX_TURNSmid-run (budget ~$0.3โ0.9 for such a leaf). A schema'd leaf additionally needs โฅ 3 just for the forcedStructuredOutputcall (above).
- Background = an unawaited promise. There is no
run_in_background/wait(): start a leaf withconst p = agent(...), keep working,await plater (Promise.allfor a batch). Every leaf โ awaited or not โ is pool-bounded, journaled at completion, and the run only finalizes after all of them settle. A leaf that rejects with nobody ever handling it fails the run (a silently dropped failure is still a failure); fire-and-forget tolerance is an explicitp.catch(() => null). parallel(thunks) โ Promise<array>โ run each 0-arg thunk concurrently; BARRIER (settles once all finish),nullwhere an element failed:await parallel([() => agent("a", {provider: "glm"}), () => agent("b", {provider: "glm"})]). Concurrent execs stay ~pool size even for a huge list (excess queues).pipeline(items, ...stages) โ Promise<array>โ push each item through all stages independently with NO inter-stage barrier (item A can be in stage 3 while B is in stage 1). Each stage is(prev, item, index) => โฆ(sync or async; its return value is awaited). A failing stage drops that item tonulland skips its remaining stages. DEFAULT topipelineoverparallelโ only useparallelwhen a stage genuinely needs ALL prior results together.workflow(path, args?) โ Promiseโ run another.jsinline on the same engine (shared pool/journal/budget), one level deep only; resolves with the child's top-levelreturnvalue.budgetโ two parallel cap surfaces. USD:budget.total(the--budget-usdcap in USD, ornull),budget.spent(),budget.remaining()(Infinitywhen uncapped) โ USD floats (an Anthropic list-price estimate). Tokens:budget.tokens_total(the--budget-tokenscap, ornull),budget.tokens_spent(),budget.tokens_remaining()โ ints (input+output, cache-read excluded).agent()throws once either cap is reached; awhile (budget.remaining() > N)loop scales depth to the cap. (Native'sbudget.totalis a token target; here it is USD โ--budget-usdis the cross-provider cap since providers price tokens differently โ and tokens are the separatetokens_*surface.) Aprovider: "claude"leaf spends the lead session's own subscription window, not a metered provider โ use it for one or two synthesis / judgement nodes, never a wide fan-out. Its usage still flows into the run's token / USD surfaces, but the USD is claude's notional list-price (a subscription is not metered per token);max_budget_usd/--budget-usdstill gate against that notional figure.phase(title, detail?)โ name the current phase (tags subsequent agents lacking an explicitphase; the detail shows on the board row).log(msg)โ a narrator line (board live log + stderr);console.log/info/warn/error/debugalias onto it (non-strings render as JSON, Errors by message).argsโ the parsed--args-json '<json>'value (or theworkflow(child, args)value);undefinedwhen none was given.
What a workflow script can NOT use (determinism โ the journal depends on it)
Date/Math.random()throw;eval/Function/ dynamic code are removed; there is nosetTimeout/require/fs/ ESMimportโ pass timestamps or randomness in viaargs.- Plain script statements only (the body runs inside an async wrapper, so top-level
awaitandreturnwork); async generators (async function*) are not supported.
Running it
RUN=$(cc-fleet workflow run audit.js) # detached; prints ONLY the bare run id
cc-fleet workflow status "$RUN" --json # manifest + every tagged leaf (runโphaseโagent)
cc-fleet workflow list --json # all runs, newest first
cc-fleet workflow stop "$RUN" # reap a running run (engine + in-flight leaves)
cc-fleet workflow stop "$RUN" --leaf <job|label> # hold ONE agent in place (run keeps going); --phase <title> holds a phase
cc-fleet workflow restart "$RUN" --leaf <job|label> # re-run a held/running agent in place; --phase <title> a phase;
# on a FINISHED run: keyed re-run (whole run, --leaf, or --phase)
cc-fleet workflow wait "$RUN" --timeout 3m --json # block silently until the run settles ("Waiting on a run" below)
# or watch the board's Dynamic Workflows view: live log, token/cost columns, prompt/answer drill-in.
# x/r there are level-scoped: run row = the run, Phases pane = the phase, agent pane = the leaf
# (a held agent shows โถ until you restart it). --foreground runs inline (debug).
# `held` in status output = parked by the control plane: an operator paused it (board
# x, stop --leaf/--phase) or a restart was refused (budget gate); a restart in flight
# may show it briefly. Not an error/retry/backoff โ the run waits on it indefinitely.
# If held persists across polls, resume it with restart --leaf/--phase or tell the
# user it is parked; never wait it out.
# --max-concurrency N overrides the default pool (min(16, cores-2));
# --budget-usd N caps total spend; --no-persist-io disables the prompt/answer drill-in.
The run is detached so it outlives this call and your session stays responsive.
A codex-launched run is grouped on the board under your Codex launcher (a codex <thread> header, not (no session)) โ still give each leaf a label (the script opt; --label on a bare cc-fleet subagent) and the run a clear meta.name so you can pick yours out within that group.
Where to write the script. For a one-off research / analysis run, write the script to /tmp/cc-fleet-<name>.js โ do NOT add it to the user's repo unless they ask to keep the workflow. For read-only research, give the leaves profile: "slim-ro" and write the prompts so the leaves do not edit files.
Waiting on a run: block in chunks (codex has no background wake)
codex has no background-task wake, so you await a run by blocking the shell in bounded chunks โ codex tolerates a long blocking command, and chunked blocking is the await. Keep the run id and re-issue wait until the run settles:
RUN=$(cc-fleet workflow run audit.js) # KEEP $RUN for the whole run's life
cc-fleet workflow wait "$RUN" --timeout 2m --json # one chunk; re-issue while still running
wait returns the moment the run settles OR the window elapses. While the run is still progressing it exits 124 with wait_outcome timeout (a heartbeat, not a verdict) โ re-issue the SAME wait "$RUN" for the next chunk. Always keep $RUN: a timed-out wait loses nothing, a fresh wait "$RUN" just resumes blocking and the run carries on detached. Never spawn an agent to poll, and never tight-loop status โ wait is the blocking primitive.
If the codex shell yields with "Process running with session id โฆ", that backgrounded wait is STILL the live wait โ do NOT issue a second wait "$RUN" (a needless concurrent wait); let it return. Size each --timeout chunk SHORTER than your shell's foreground window so the command returns cleanly rather than being backgrounded. (Omitting --timeout / passing --timeout 0 blocks in one shot until the run settles โ use only when you mean to block to the very end and will reattach to the yielded session; the chunked pattern is the default.)
Make the FIRST chunk short (2โ3m โ a provider auth/balance failure surfaces on the first leaf call), then 10โ15m per re-issue. Dispatch each returned chunk on wait_outcome (+ exit code):
terminal(exit 0 done/stopped ยท exit 1 failed) โ fetch the detail withcc-fleet workflow status "$RUN" --json(it carriesrun_errorand the per-leafjobs[]; the wait envelope deliberately omits them) and report. To read a leaf's actual ANSWER (status/wait omit answers), usecc-fleet workflow result "$RUN" --label <leaf> --jsonโ so label the leaves whose output you'll want.engine_gone(exit 1) โ the detached engine died without finalizing; proposecc-fleet workflow run audit.js --resume "$RUN"(the journal replays the finished leaves).parked(exit 3) โ every remaining leaf is held. FIRST re-checkcc-fleet workflow status "$RUN" --json: leaves running/queued again means it was a transient (the engine was between leaves) โ re-issuewait. Still parked โ name the envelope'sheldleaves to the user and proposecc-fleet workflow restart "$RUN" --leaf <job|label>; never wait it out.timeout(exit 124) โ still running. Comparecounts/spent_usd/spent_tokenswith the previous chunk: progress โ one short progress line and re-issue with a longer--timeout(10โ15m); zero delta over several chunks โ inspect (workflow status; is one long leaf still inside its owntimeout?) and escalate only on a real anomaly, else re-issue.
After a session restart, re-issue wait for every running run from cc-fleet workflow list --json.
For a human live view: cc-fleet workflow watch "$RUN" streams the run's events as text and cc-fleet watch streams the whole fleet; the board's Dynamic Workflows view has the rich drill-in. Both print only canonical status โ never a provider reply.
Leaf failures โ dispatch on error_code (do not parse prose)
A failed leaf's structured error_code is in workflow status --json (jobs[]); an in-script catch receives a plain Error message (e.g. agent(provider): KEY_INVALID: โฆ), so read the code from status --json rather than parsing the message for control flow. Same vocabulary as a one-shot subagent (the full table with context lives in /cc-fleet:subagent); the dispatch:
error_code | What you do |
|---|---|
INSUFFICIENT_BALANCE / KEY_INVALID / RATE_LIMITED | STOP โ provider ask ladder, step 4 (never switch silently). KEY_INVALID โ the user rotates the key; RATE_LIMITED โ brief wait, one retry. |
NO_DEFAULT_PROVIDER / DEFAULT_PROVIDER_DISABLED / DEFAULT_PROVIDER_UNKNOWN / DEFAULT_PROVIDER_RESERVED | No usable default for a provider-less agent() (RESERVED = default_provider hand-set to claude, explicit-only โ the user unsets/re-pins) โ apply the provider ask ladder, then re-run. |
MODEL_NOT_FOUND | cc-fleet refresh <provider>, or drop the leaf's model to use the provider default. |
SUBAGENT_TIMEOUT | Raise the leaf's timeout or split the task; a leaf with no timeout defaults to 300s. |
SUBAGENT_OUTPUT_TOO_LARGE | The leaf's output exceeded the byte cap โ have it write to a file and answer concisely; a blind retry overflows again. |
SUBAGENT_STOPPED | An operator stopped it (stop --leaf / run stop) โ terminal, NOT a failure; never auto-retry. |
SUBAGENT_MAX_TURNS | A leaf hit the --max-turns cap. |
SUBAGENT_FAILED / PROVIDER_API_ERROR | Inspect (workflow status); restart --leaf once, or propose a provider switch (ask first). A provider: "claude" leaf on a logged-out machine fails here (the error preview names the login problem, no dedicated code) โ tell the user to log in to Claude Code interactively. |
FINGERPRINT_MISSING / FINGERPRINT_STALE | MISSING = a corrupt ~/.config/cc-fleet/fingerprint.json (rare): cc-fleet doctor --json confirms; remove that file to fall back to the bundled recipe, then retry. STALE = no claude binary โ fix Claude Code / PATH. |
CODEX_PROXY_UNAVAILABLE / CODEX_CLOUDFLARE_BLOCKED | cc-fleet codex login / free the port; a Cloudflare block โ switch network, don't rotate credentials. |
UNKNOWN_PROVIDER / PROVIDER_DISABLED / CONFIG_LOAD_FAILED | Config problem โ cc-fleet list --json, cc-fleet add / edit --enable; CONFIG_LOAD_FAILED โ cc-fleet doctor. |
PROVIDER_RESERVED | A providers.toml row is named claude (reserved for the native leaf) โ the user renames or removes it. |
SUBAGENT_BAD_ARGS | Bad leaf options โ fix the script, re-run. |
Resume (content-hash journal)
Each run records a content-hash journal of its completed leaves. Re-run the same script under an existing run id to replay:
cc-fleet workflow run audit.js --resume "$RUN" # journaled leaves return cached (no provider exec); only un-run leaves run
A leaf is keyed by its determinant (provider + model + prompt + schema + slim shape), so an unchanged re-run is ~100% cache hits, a leaf whose prompt you edited (and anything downstream of its output) re-runs, and a run that was killed resumes by replaying what finished before the kill. The determinism lockdown makes this exact: with no clock/PRNG, the same script+args produce the same keys. A failed leaf is never journaled, so resume re-runs it.
Non-goals (state plainly, don't oversell)
- No pause. A running
claude -pcan't be cleanly suspended; useworkflow stop(reaps the run) +run --resume(cheap restart via the journal) instead. - Client-side
schemavalidation is a JSON-Schema subset โ the list above, not the full spec (an external$refURI is unsupported and fails; an unknownformatis an annotation, not enforced). claude enforces thatStructuredOutputis called; this backstop checks what it was filled with, and a failure is terminal (no retry). - Key-safety is unchanged: the provider key flows only via
apiKeyHelper; prompts go to the leaf via stdin, never argv; the journal/events/board carry no key.
Worked example โ research sweep (fan-out โ pipeline โ loop)
const meta = {
name: "api audit",
description: "map endpoints, draft checks, then probe for gaps",
phases: [{title: "map"}, {title: "build"}, {title: "probe"}],
};
phase("map");
const maps = (await parallel(
args.map((m) => () => agent("List exported endpoints in module " + m,
{provider: "deepseek", label: "map:" + m}))
)).filter(Boolean); // e.g. --args-json '["auth","billing","users"]'
phase("build");
// pipeline (no barrier): each map flows straight into its own checklist draft
const checklists = await pipeline(
maps,
(prev, item, i) => agent("Draft an audit checklist for these endpoints:\n" + prev,
{provider: "glm", label: "build:" + i}),
);
phase("probe");
const gaps = [];
while (gaps.length < 10) { // loop-until-dry (the runtime hard-caps 1000 leaves/run)
const g = await agent("Given these checklists, name ONE uncovered risk, or reply NONE:\n"
+ checklists.join("\n"), {provider: "kimi"});
if (g.trim() === "NONE") break;
gaps.push(g);
}
// one final synthesis node on your OWN subscription โ a single judgement leaf, not a fan-out
const verdict = await agent("Rank these gaps by severity and name the top three:\n"
+ gaps.join("\n"), {provider: "claude", model: "opus", label: "verdict"});
log(`done: ${maps.length} maps, ${checklists.length} checklists, ${gaps.length} gaps`);
return { maps, checklists, gaps, verdict };
One run, three phases, a barriered fan-out, a no-barrier pipeline, a bounded loop-until-dry, and a single claude synthesis node โ all sequenced by the script in a cc-fleet process, off your context. The script's top-level return value is NOT persisted or retrievable โ to read the run's output, fetch a labeled leaf's answer with cc-fleet workflow result "$RUN" --label verdict --json.
Anti-patterns
- A script for a single flat independent batch โ /cc-fleet:subagent.
Date.now()/setTimeoutโ unavailable (determinism); pass timestamps viaargs.- Trusting
schemaas deep validation, or treating a plainagent()result as JSON withoutschema. - Unbounded ambition: the runtime hard-caps 1000
agent()calls/run, pools concurrency atmin(16, cores-2), and caps a singleparallel/pipelinelist at 100,000 elements. - Switching providers silently after a balance / rate-limit / auth failure โ stop, tell the user, wait for their pick (provider ask ladder, step 4).