supervisor

supervisor is an agent for Claude Code from mnzralee/claude-multi-agent-architecture. It costs 42 tokens per session (3,128 once invoked), scanned A, original, MIT.

An agent that coordinates other coding agents by splitting work into tracks, assigning tasks, handling dependencies, and combining results. A coding agent is an AI assistant that performs development work.

In plain words
What is it for?
Dispatching implementation, testing, and debugging agents; tracking progress; recording work; and reporting a combined status to the main orchestrator.
Why use it?
It organizes multi-part work so dependent tasks happen in order and failures are investigated instead of retried blindly.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions subagents; names the TodoWrite tool.

Part of the claude-multi-agent-architecture plugin — 18 skills, 19 agents, 3 hooks 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 agents/mnzralee/claude-multi-agent-architecture/supervisor
Clone the repo
git clone --depth 1 https://github.com/mnzralee/claude-multi-agent-architecture

Made for: Claude Code.

Or install claude-multi-agent-architecture, the plugin that ships this one along with the rest of its 18 skills, 19 agents, 3 hooks.

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 supervisor

README.md
[![agentmods](https://agentmods.dev/badge/agents/mnzralee/claude-multi-agent-architecture/supervisor.svg)](https://agentmods.dev/agents/mnzralee/claude-multi-agent-architecture/supervisor)
Your own site
<a href="https://agentmods.dev/agents/mnzralee/claude-multi-agent-architecture/supervisor"><img src="https://agentmods.dev/badge/agents/mnzralee/claude-multi-agent-architecture/supervisor.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,128 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.00042 $0.03128
Opus 5 $0.00021 $0.01564
Sonnet 5 $0.00008 $0.00626
Haiku 4.5 $0.00004 $0.00313

Measured 6d ago against content hash 99dbb65d114e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

supervisor 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 6d 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.

.claude/agents/supervisor.md · 399 lines

How it starts

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

Supervisor Agent

Role & Responsibilities

You are a supervisor agent in the project's multi-agent hierarchy. Your role is to:

  1. Manage Track Execution: Own a specific track or phase of work and drive it to completion.
  2. Spawn Sub-Agents: Dispatch implementation, testing, and debugging agents for concrete tasks.
  3. Coordinate Dependencies: Ensure sequential tasks wait for their predecessors before starting.
  4. Aggregate Results: Collect sub-agent outputs and report a consolidated status to the orchestrator.
  5. Handle Errors: Invoke the debugger agent when a sub-agent fails; never retry blindly.
  6. Document Progress: Coordinate with the work-recorder agent to keep the session log current.

Hierarchy Position

┌─────────────────────────────────────────────────┐
│            ORCHESTRATOR (opus)                   │
│         Main session controller                  │
└─────────────────────────┬───────────────────────┘
                          │
        ┌─────────────────┼─────────────────┐
        │                 │                 │
        ▼                 ▼                 ▼
┌───────────────┐ ┌───────────────┐ ┌───────────────┐
│  SUPERVISOR   │ │  SUPERVISOR   │ │  SUPERVISOR   │
│  Track A      │ │  Track B      │ │  Track C      │
│  (Schema)     │ │  (Backend)    │ │  (Verify)     │
└───────┬───────┘ └───────┬───────┘ └───────┬───────┘
        │                 │                 │
   ┌────┼────┐       ┌────┼────┐       ┌────┴────┐
   ▼    ▼    ▼       ▼    ▼    ▼       ▼         ▼
[impl][test][dbg]  [impl][test][dbg]  [tester][reviewer]

Each supervisor owns exactly one track. Multiple supervisors can run in parallel when their tracks are independent. The orchestrator decides the track breakdown and spawns supervisors; a supervisor never promotes itself to orchestrator scope.


Core Responsibilities

1. Track Ownership

Each supervisor receives a track definition and its work packages. A typical assignment looks like this (stack-agnostic; adapt field names to your project):

Read the full file on GitHub · 399 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. 6d ago First seen · 399 lines · 42 tokens per session scan A 99dbb65d114e

Subscribe to this mod's changes

supervisor is an agent published in the GitHub repository mnzralee/claude-multi-agent-architecture (5 stars, last pushed 1mo ago), licensed MIT. It adds 42 tokens to every session and 3,128 once invoked, about $0.0002 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 agents, from other repositories

alchemist

Creative technologist who sees the browser as an unexplored physics engine. Consult when building UI that needs to feel alive - scroll-driven reveals, morphing transitions, spatial animation systems, anything where the interaction itself IS the product. Thinks in weight, tension, and breath before thinking in code.…

drobins25/craft · 355 tokens

verifier

Verification agent for /craft:research-verify. Takes a single claim from existing research and attempts to disprove it using independent primary sources. Returns a verdict (CONFIRMED/REFUTED/PARTIALLYTRUE/UNVERIFIABLE) with evidence. NOT a researcher. Does not discover new topics or cast a wide net. Takes one claim…

drobins25/craft · 178 tokens

mdm

Fully autonomous pentest sub agent using MCP-backed fastcmp toolbox for mobile device management platforms (Microsoft Intune, Jamf Pro, VMware/Omnissa Workspace ONE, Ivanti EPMM/MobileIron).

ASCIT31/Dark-Moon · 46 tokens

nodejs

Autonomous pentest sub-agent using Darkmoon MCP for Node.js (Express / Angular / SPA) applications.

ASCIT31/Dark-Moon · 24 tokens

architecture-strategist

Use when an architectural choice or stage boundary needs a read-only view of invariants, ownership, extension seams, and proof.

tdwhere123/do-it · 30 tokens

proposal-writer

Specialized agent for generating professional, branded proposals using a presentation-generation tool. Creates polished presentations and documents for sales opportunities from your project and CRM context.

Zeekeey-jpeg/LeRoy-HQ · 34 tokens