← ClaudeAtlas

parallel-orchestrate-codexlisted

Decompose a large, multi-part goal into independent slices, verify coverage before fan-out, spawn Codex subagents in parallel, collect evidence-backed handoffs, verify important claims, synthesize one deliverable, and launch follow-up waves as needed. Use when the user asks to fan out, parallelize, spin up multiple agents, delegate to subagents, orchestrate workers, analyze large datasets, run multi-stream research, audit a repo, or split disjoint implementation work.
RayFernando1337/rayfernando-skills · ★ 24 · Testing & QA · score 81
Install: claude install-skill RayFernando1337/rayfernando-skills
# Parallel Orchestrate (Codex subagents) Use this skill when a task is too broad for one clean linear pass but can be split into independent slices. You are the manager: discover the problem shape, stage and verify coverage, decompose it, spawn bounded Codex workers, collect one structured handoff from each worker, verify important claims, and synthesize the final deliverable. Current Codex docs checked on 2026-06-14: Codex subagents are enabled by default in current releases, built-in roles include `default`, `worker`, and `explorer`, custom agents live in `~/.codex/agents/` or `.codex/agents/`, and subagent limits live under `[agents]` in `config.toml`. `spawn_agents_on_csv` is documented as experimental; use it when it is exposed in the active Codex surface, and fall back to normal subagent waves when it is not. No current Codex doc confirms a general-purpose claim-verifier or critic hook; use a verifier subagent, CSV verification pass, tests, validators, or `codex exec --output-schema` instead. Read these references when using the skill: - `references/handoff-format.md` for the exact worker handoff contract. - `references/verification.md` for verification gates and verifier-worker playbooks. - `references/examples.md` for decomposition recipes. - `references/recommended-config.md` for Codex config and custom agent snippets. - `references/adaptation-notes.md` for Cursor-to-Codex translation notes. ## When to Use - The user explicitly asks to use multiple agents, su