agent-supervisor-pattern

agent-supervisor-pattern is a skill for Claude Code, Codex from latestaiagents/agent-skills. It costs 55 tokens per session (1,953 once invoked), scanned A, original, MIT.

A guide for designing systems where one supervisor agent coordinates several specialized worker agents. The supervisor can divide work and run workers sequentially, in parallel, or conditionally.

In plain words
What is it for?
Use it to build research, writing, review, or other decomposed workflows that need multiple agents and possible human oversight.
Why use it?
It gives multi-agent workflows a central place to assign tasks and track decisions instead of coordinating every worker separately.

Skill for Claude CodeCodex

Part of the agent-architect plugin — 13 skills, 1 command, 5 MCP servers shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/latestaiagents/agent-skills/agent-supervisor-pattern
Any agent
npx skills add latestaiagents/agent-skills --skill agent-supervisor-pattern
Clone the repo
git clone --depth 1 https://github.com/latestaiagents/agent-skills

Made for: Claude Code, Codex.

Or install agent-architect, the plugin that ships this one along with the rest of its 13 skills, 1 command, 5 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for agent-supervisor-pattern

README.md
[![agentmods](https://agentmods.dev/badge/skills/latestaiagents/agent-skills/agent-supervisor-pattern.svg)](https://agentmods.dev/skills/latestaiagents/agent-skills/agent-supervisor-pattern)
Your own site
<a href="https://agentmods.dev/skills/latestaiagents/agent-skills/agent-supervisor-pattern"><img src="https://agentmods.dev/badge/skills/latestaiagents/agent-skills/agent-supervisor-pattern.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,953 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00055 $0.01953
Opus 5 $0.00028 $0.00977
Sonnet 5 $0.00011 $0.00391
Haiku 4.5 $0.00006 $0.00195

Measured 5d ago against content hash 31db724b60fb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

agent-supervisor-pattern scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/agent-architect/skills/patterns/agent-supervisor-pattern/SKILL.md · 361 lines

How it starts

The opening of the file, as written. The whole thing — 361 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agent Supervisor Pattern

Design centralized orchestration systems where a supervisor agent coordinates specialized worker agents.

When to Use

  • Complex tasks requiring multiple specialized agents
  • Need clear visibility into agent decision-making
  • Workflows requiring sequential or conditional agent execution
  • Systems where human oversight is important
  • Tasks with clear subtask decomposition

Architecture Overview

                    ┌─────────────┐
                    │  SUPERVISOR │
                    │   AGENT     │
                    └──────┬──────┘
                           │
           ┌───────────────┼───────────────┐
           │               │               │
           ▼               ▼               ▼
    ┌──────────┐    ┌──────────┐    ┌──────────┐
    │ Research │    │  Writer  │    │ Reviewer │
    │  Agent   │    │  Agent   │    │  Agent   │
    └──────────┘    └──────────┘    └──────────┘

Core Components

1. Supervisor Agent

The brain that orchestrates the workflow.

interface SupervisorConfig {
  name: string;
  description: string;
  workers: WorkerAgent[];
  maxIterations: number;
  routingStrategy: 'sequential' | 'parallel' | 'conditional';
}

const supervisorPrompt = `
You are a supervisor agent coordinating specialized workers.

Available Workers:
{{#each workers}}
- {{name}}: {{description}}
{{/each}}

Your responsibilities:
1. Analyze the incoming task
2. Decompose into subtasks for appropriate workers
3. Route subtasks to the right worker
4. Synthesize results into final output
5. Handle errors and retry if needed

For each step, output:
{
  "reasoning": "Why this worker for this subtask",
  "worker": "worker_name",
  "task": "Specific instructions for the worker",
  "expectedOutput": "What you expect back"
}

When complete, output:
{
  "status": "complete",
  "result": "Final synthesized result"
}
`;

2. Worker Agents

Specialized agents for specific tasks.

interface WorkerAgent {
  name: string;
  description: string;
  systemPrompt: string;
  tools: Tool[];
  outputSchema?: JSONSchema;
}

const researchWorker: WorkerAgent = {
  name: 'researcher',
  description: 'Searches and analyzes information from various sources',
  systemPrompt: `You are a research specialist.
    Search for accurate, up-to-date information.
    Always cite sources.
    Return structured findings.`,
  tools: [webSearch, documentReader],
  outputSchema: {
    type: 'object',
    properties: {
      findings: { type: 'array' },
      sources: { type: 'array' },
      confidence: { type: 'number' }
    }
  }
};

Read the full file on GitHub · 361 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 361 lines · 55 tokens per session scan A 31db724b60fb

Subscribe to this mod's changes

agent-supervisor-pattern is a skill published in the GitHub repository latestaiagents/agent-skills (5 stars, last pushed 4mo ago), licensed MIT. It adds 55 tokens to every session and 1,953 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

external-memory-plugin

Develop, adapt, review, test, and troubleshoot Nexent external memory provider plugins, including plugin.yaml manifests, searchable and ingestible provider protocols, error mapping, network-isolated unit tests, deployment configuration, and Mem0-based examples. Use when adding a new external memory vendor, changing an…

ModelEngine-Group/nexent · 85 tokens

fw-app-dev

Expert-level skill for building, debugging, reviewing, and migrating Freshworks Platform 3.0 marketplace apps. REQUIRES Node.js 24.x + FDK 10.x. New UI apps default to React Meta (DEW, metaConfig.framework react); vanilla Crayons is opt-in. Commands: /fdk-react-create, /fdk-react-migrate, /fdk-fix, /fdk-migrate…

freshworks-developers/fw-dev-tools · 111 tokens

ai-humanizer-zh

中文润色去AI味 助手适合市场营销、运营、内容创作者、产品在用户提出“怎么去AI味”这类问题,需要快速拆解目标、判断重点并形成可执行结果时使用,帮助基于输入材料生成AI 写作痕迹诊断、自然化改写稿、问题片段说明。.

skillsaiagent/aiskills · 81 tokens

ai-account-research-sales-card

销售增长助手适合销售、市场营销、运营、产品在用户提出“客户为什么不推进”这类问题,需要快速拆解目标、判断重点并形成可执行结果时使用,帮助基于输入材料生成摘要、诊断结论、行动建议和可复用交付物。.

skillsaiagent/aiskills · 71 tokens

ai-account-research

客户研究助手适合市场营销、运营、software、教育培训在用户提出“这个客户怎么切入”这类问题,需要快速拆解目标、判断重点并形成可执行结果时使用,帮助基于输入材料生成销售策略、沟通素材、跟进计划。.

skillsaiagent/aiskills · 65 tokens

ai-amazon-brand-analytics

Skill "ai-amazon-brand-analytics" from skillsaiagent/aiskills, covering ai-amazon-brand-analytics amazon 品牌分析助手, 概述, 什么时候使用, 调用方式 and 命令示例.

skillsaiagent/aiskills · 72 tokens