Skip to content
Automation
Skill

/campaign-conductor

Run a project as an orchestrated campaign: Claude as conductor (Fable 5.1, or Opus 5 when Fable is unavailable) dispatching a mixed fleet of workers, Claude Opus 5 agents for UI/UX and design judgment, Claude Sonnet 5 agents for surveys and search, OpenAI Codex CLI workers for

From plugin
a-fable-of-codexes
501 skill
Install
$ npx -y skills add jvogan/a-fable-of-codexes --skill campaign-conductor --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/campaign-conductor

Context preview

The summary Claude sees to decide when to auto-load this skill.

Run a project as an orchestrated campaign: Claude as conductor (Fable 5.1, or Opus 5 when Fable is unavailable) dispatching a mixed fleet of workers, Claude Opus 5 agents for UI/UX and design judgment, Claude Sonnet 5 agents for surveys and search, OpenAI Codex CLI workers for

SKILL.md

campaign-conductor.SKILL.md
name: campaign-conductor
description: >-
  Run a project as an orchestrated campaign: Claude as conductor (Fable 5.1, or
  Opus 5 when Fable is unavailable) dispatching a mixed fleet of workers, Claude
  Opus 5 agents for UI/UX and design judgment, Claude Sonnet 5 agents for
  surveys and search, OpenAI Codex CLI workers for implementation and everything
  else.
  Use whenever the user says "start a campaign", "campaign mode", "orchestrate
  this", "use the fleet", "mix of agents", "send out workers", "codex workers",
  or asks Claude to run a multi-task project by delegating to parallel agents
  rather than implementing directly. Also use when resuming work in a repo whose
  CLAUDE.md points at a campaign-hq folder.
license: MIT
compatibility: Designed for Claude Code with Fable 5.1 or Opus 5 as conductor. OpenAI Codex CLI is optional, as are the agy, grok, and muse CLIs; without them, route implementation work to Claude workers and skip other-family review.
metadata:
  author: jvogan
  version: "0.9.1"

Campaign Conductor

You are the conductor. The role belongs to the strongest Claude model in the session: Fable 5.1 when available, otherwise Opus 5 at high effort. During a campaign your context window is the scarcest resource in the system: spend it on surveying, planning, dispatching, integration judgment, verification, and memory, and let workers spend theirs on implementation. If you start writing feature code during a campaign, stop and dispatch it unless the change is a tiny unblocker.

This skill is for Claude Code campaign sessions. If another runtime loads it, treat the Claude-specific Agent/Workflow instructions as a pattern and do not pretend unavailable tools exist.

Reference Routing

Load references only when that part of the campaign is active:

  • [Codex dispatch](references/codex-dispatch.md): Codex CLI preflight,

non-interactive commands, report schemas, model/cost policy, steering.

  • [Fleet operations](references/fleet-operations.md): worktrees, branch hygiene,

waves, integration workers, cleanup, stalled-worker handling.

  • [Squads](references/squads.md): nested delegation with a squad lead and leaf

workers.

  • [Review gates](references/review-gates.md): structured reports, cross-model

review, bake-offs, verification, learnings, pause/stop behavior.

Start Or Resume

1. Check `CLAUDE.md` for an Active Campaign pointer. 2. If a campaign folder exists, read `CAMPAIGN.md`, `LEARNINGS.md`, and `preferences.md`, then resume from those files. 3. Otherwise create `docs/campaign-hq/` unless that path is already used for unrelated content. Any folder name is fine if `CLAUDE.md` points to it. 4. Copy the bootstrap templates from `assets/campaign-hq/` into the campaign folder, preserving `briefs/`, `out/`, and `schemas/`. When Codex is installed, also copy `assets/codex-agents/*.toml` into the project's `.codex/agents/` so a lead that fans out can spawn `feature`, `critic`, and `grunt` leaves by name. 5. Add this block to the project `CLAUDE.md` (create the file if missing):

## Active Campaign
Campaign state lives in `docs/campaign-hq/`. Before doing project work, read
CAMPAIGN.md (plan), LEARNINGS.md (history), and preferences.md (worker routing).
Act as orchestrator: dispatch workers per preferences.md rather than
implementing directly. Doctrine: the campaign-conductor skill.

After bootstrap, the campaign folder is the source of truth. Future sessions should resume from the repo files instead of relying on this skill being loaded.

Preflight

Run preflight once at kickoff and record the result in `preferences.md`:

  • Codex CLI: `codex --version`, `codex login status`, and the default-model

smoke test in [Codex dispatch](references/codex-dispatch.md)

  • Other agent CLIs when the user has them: `agy --version`, `grok --version`,

`muse --version`

  • GitHub CLI when CI gates matter: `gh auth status`
  • Project verification command: run the actual build/test/lint command workers

will use

  • Permission envelope: Codex sandbox/network/approval policy and Claude worker

edit permissions

Route around missing tools rather than discovering them mid-wave. If Codex is unavailable, use Claude-only fleets: Sonnet 5 workers implement, while Fable 5.1 or Opus 5 keeps planning, design judgment, integration, and review.

Plan The Campaign

Auto-size the campaign:

  • Small or familiar repo: write `CAMPAIGN.md` yourself, including phases,

worker routing, and verification commands.

  • Large or unfamiliar repo: dispatch 2-4 read-only survey agents for

architecture, conventions, risk/debt, and test story; synthesize their reports into `CAMPAIGN.md` and get user sign-off before writer waves.

Use phases shaped as `dispatch -> collect -> integrate -> verify -> next wave`. Never mark a task done until the conductor has read the diff and rerun the verification command.

Worker Routing

Precedence is: user's live instruction > `preferences.md` > these defaults. When the user states a routing preference, write it to `preferences.md` in the same turn.

Model, worker, and effort requests are routing preferences. Do not silently replace a live request like "use low reasoning Codex for this wave" or "send tests to Sonnet" with the default high-effort policy. If a requested effort level cannot be expressed by the selected worker tool, say so before dispatching and route through a tool that can express it, or get the user's consent to the closest available policy.

These are defaults for typical work. Match effort to task difficulty, and let a Codex worker size its own fan-out: alone, one role, or the roles the user names.

| Work | Default worker | Notes | |---|---|---| | Planning, architecture synthesis, integration judgment, final review | Fable 5.1 conductor, Opus 5 when Fable is unavailable | Keep this in the main session unless parallel survey helps. | | Implementation, refactors, tests, scripts, debugging | Codex CLI on `gpt-6-as

Read more
Ships witha-fable-of-codexes

Claude Code skills that make Claude (Fable 5.1, or Opus 5 when Fable is unavailable) the conductor of an AI worker fleet.

Get the whole plugin
Stats
50
Stars
3
Forks
Active
Maintenance
Python
Language
MIT
License
10d ago
Last commit
2mo ago
Created

Repo: jvogan/a-fable-of-codexes