AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Suede Codex Fleet

skill-jasoncolapietro-suede-creator-skills-suede-codex-fleet · by JasonColapietro

The Suede Fable Fleet — orchestrate OpenAI Codex CLI workers from Claude: a high-end Claude orchestrator decomposes the job, writes self-contained briefs and an AGENTS.md voice/context contract, spawns parallel codex exec runs billed to your ChatGPT subscription, then reviews every output against acceptance criteria before anything ships. Use when a task is high-volume with a clear spec (bulk con…

No reviews yet
0 installs
27 views
0.0% view→install

Install

$ agentstack add skill-jasoncolapietro-suede-creator-skills-suede-codex-fleet

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jasoncolapietro-suede-creator-skills-suede-codex-fleet)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Suede Codex Fleet? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Suede Fable Fleet

The Suede Fable Fleet: a high-end Claude model is the admiral — it decomposes, briefs, and reviews — and parallel OpenAI Codex CLI workers are the fleet. The skill id and command stay suede-codex-fleet on purpose: GitHub search, skill marketplaces, and MCP catalogs match the terms people actually type — Codex CLI orchestration, codex exec, multi-agent worker fleet — not the brand name. Do not rename the folder or frontmatter name to match the brand.

When to use this skill instead of related skills

  • suede-codex-fleet (this skill): offload high-volume, well-specified generation to Codex CLI workers; Claude plans, briefs, and reviews
  • suede-agent-teams: multi-lane Claude agents coordinating one complex code change with gates and handoffs
  • suede-copy / johnny-suede-write: Claude writes the copy itself; right choice when volume is low and judgment density is high

Core principle: Claude tokens buy judgment, Codex tokens buy volume. Clear spec + high volume goes to Codex. Fuzzy spec or expensive-if-wrong stays with Claude. Nothing ships unreviewed.

Preflight (run before first spawn)

  1. which codex && codex --version — CLI present (validated against codex-cli 0.138.0).
  2. codex login status — must show logged in (your ChatGPT subscription pays for the run).
  3. Workspace has an AGENTS.md at its root. Codex auto-loads it; it carries voice, context, hard bans, and output conventions so briefs stay short. If missing, write it first — that is the highest-leverage file in the system.
  4. Workspace has briefs/ and out/ directories (create as needed).

The loop

  1. Decompose. Split the job into independent worker-sized tasks. Independent means: no worker needs another worker's output.
  2. Brief. One markdown file per task in briefs/. Codex never sees the Claude conversation, so each brief is self-contained: job, inputs (file paths), exact deliverable, acceptance criteria it must self-check, and the exact output path in out/.
  3. Spawn. One codex exec per brief, in parallel, in the background:
codex exec -C  --sandbox workspace-write --skip-git-repo-check \
  -o /out/-final-message.txt \
  "Read AGENTS.md at the workspace root, then execute the brief at briefs/.md exactly. Write the deliverable to the output file the brief names, run the brief's acceptance-criteria self-check, and state pass/fail per criterion in your final message."
  • -C sets the worker's root; --skip-git-repo-check is required outside git repos.
  • --sandbox workspace-write only. Never danger-full-access. Workers write files; they do not push, deploy, or touch secrets.
  • Leave the model default unless explicitly asked to override with -m.
  1. Review gate (Claude, mandatory). Read every out/ file. Check against the brief's acceptance criteria and the AGENTS.md hard bans. Worker self-checks are evidence, not verdicts. Fix small defects directly; do not respawn for a comma.
  2. Delta, don't regenerate. For real misses, send a one-line correction: codex exec resume "" (session id is printed at run start; resume --last is ambiguous with parallel runs), or respawn with the delta appended to the brief. Regenerating from scratch wastes the subscription and loses what was right.
  3. Ship. Claude assembles the reviewed survivors into the final deliverable. Report what was spawned, what passed, what got fixed.

Brief template

# Brief  — 

Read `AGENTS.md` in the workspace root first. This brief only adds the task.

## Job

## Inputs

## Deliverable

## Acceptance criteria (self-check before finishing)

## Output
Write to `out/.md`. 

Fleet workspaces

Keep a persistent workspace per recurring fleet job (a social-content fleet, a test-generation fleet, a refactor fleet) instead of rebuilding context every run. The workspace root holds the AGENTS.md contract, briefs/, and out/. When a brief produces output that passes review cleanly, keep it — proven briefs are the templates for the next run of the same shape.

Hard boundaries

  • Never ship worker output without the Claude review gate.
  • Workers never run git push, deploys, or credentialed commands; content and code-edit tasks only, inside the sandbox.
  • Secrets never go into briefs or AGENTS.md; workers get file paths, not tokens.
  • If a worker's output violates claim boundaries or hard bans, the fix is Claude's edit or a delta run, never "close enough".

Troubleshooting

  • codex exec refuses to start outside a repo: add --skip-git-repo-check.
  • Not logged in / usage errors: codex login status, then run codex login interactively.
  • Worker wrote nothing to out/: read the -o final-message file and the task output log; usually a sandbox denial or a brief pointing at a wrong path.
  • Parallel runs are independent processes; spawn each with its own background shell call and collect on completion.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.