codex-workflow

Solid

Run deterministic multi-step agent workflows in Codex - fan-out, parallel, schema-validated structured output - via the codex-workflow MCP orchestrator (run_workflow), with native in-chat fallbacks. Use when you want Claude-Code-Workflow-style orchestration in Codex: 'run a workflow', 'fan out subagents', 'review each file in parallel', 'orchestrate these steps'. Triggers: 'codex-workflow', 'run_workflow', 'orchestrate in codex'.

AI & Automation 2 stars 0 forks Updated today MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
16
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Codex Workflow Deterministic multi-agent orchestration in Codex - the analog of Claude Code's Workflow tool. Pick the right level for the job. ## Three levels (cheapest first) | Need | Use | Determinism | |---|---|---| | Ad-hoc "spawn one agent per X, summarize" in a chat | **native NL spawn** | low (model decides) | | Fixed fan-out over a worklist (one worker per row, schema'd) | **`spawn_agents_on_csv`** | medium | | Collision-free parallel *implementation* | **`worktree + codex exec &`** | high (isolated) | | Scripted multi-step pipeline with structured output you parse | **`run_workflow`** (the orchestrator MCP) | high | Reach for `run_workflow` when you'd otherwise hand-wire `codex exec` calls; reach for the native paths for quick in-session work. ## `run_workflow` - the orchestrator Installed as the `codex-workflow` MCP extension (`vd mcp install codex-workflow`). Call the `run_workflow` tool with a spec: ```jsonc { "steps": [ { "id": "scan", "prompt": "List changed files vs main.", "output_schema": {"type":"object","properties":{"files":{"type":"array"}}} }, { "id": "review", "prompt": "Review {file} for bugs.", "agent": "code-reviewer", "parallel_group": "g1" } ] } ``` - **v1 shape:** sequential steps + one `parallel_group` + per-step `output_schema`. NOT loops/conditionals (those are a later iteration - script them outside, or use multiple `run_workflow` calls). - `agent` (optional) names a `~/.codex/agents/*.toml` role; its `developer_instruc...

Details

Author
vanducng
Repository
vanducng/skills
Created
2 months ago
Last Updated
today
Language
Python
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

workflow-composer

Invoke when the user asks to build, generate, repair, or restructure a workflow for Claude Code's Workflow tool ("I want a workflow that…", "turn this process into a workflow", "set up a multi-agent pipeline"), to pick orchestration patterns, or to tune model/effort/agentType routing. Covers writing and debugging the single .js scripts where deterministic JavaScript drives fleets of fresh-context subagents (agent/parallel/pipeline/phase), via the @workflow-toolbox toolkit or the raw single-file path.

1 Updated today
home-dev-lab
Testing & QA Solid

waves-codex

WAVES - Workers, Aggregate, Verify, Extend - wave-based orchestration for Codex. Decompose a big goal into independent slices, verify coverage, spawn Codex subagents in parallel as a bounded wave, collect evidence-backed handoffs, verify important claims, synthesize one deliverable, and extend into another wave only when warranted. Bounded by design to avoid runaway token loops; invoke deliberately. Formerly parallel-orchestrate-codex; also fan out, parallelize, spin up multiple agents, orchestrate workers, multi-stream research, audit a repo, split disjoint implementation work.

117 Updated 1 weeks ago
RayFernando1337
AI & Automation Solid

workflows

Create and run reusable multi-agent pipelines. Bundle an orchestrator prompt with optional subagents, skills, and plugins into a named workflow invoked as `agents run <workflow-name>`. Triggers on: 'workflow', 'orchestrator', 'WORKFLOW.md', 'multi-agent pipeline', 'reusable agent task'.

11 Updated today
phnx-labs