supervisor

supervisor is a skill for Claude Code, Codex from Bidiche49/claude-conf. It costs 21 tokens per session (5,183 once invoked), scanned A, original, MIT.

A supervisor mode for coordinating software work by planning tasks and delegating them to workers without editing source code directly.

In plain words
What is it for?
Use it to load project instructions and backlog context, create worker prompts, review proposed work, and manage tickets, handoffs, and validated commits.
Why use it?
It separates project oversight from implementation and adds checks for risky assumptions, weak validation, and incorrect scope.

Skill for Claude CodeCodex

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/bidiche49/claude-conf/supervisor
Any agent
npx skills add Bidiche49/claude-conf --skill supervisor
Clone the repo
git clone --depth 1 https://github.com/Bidiche49/claude-conf

Made for: Claude Code, Codex.

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/skills/bidiche49/claude-conf/supervisor.svg)](https://agentmods.dev/skills/bidiche49/claude-conf/supervisor)
Your own site
<a href="https://agentmods.dev/skills/bidiche49/claude-conf/supervisor"><img src="https://agentmods.dev/badge/skills/bidiche49/claude-conf/supervisor.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,183 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 $0.00021 $0.05183
Opus 5 $0.00010 $0.02592
Sonnet 5 $0.00004 $0.01037
Haiku 4.5 $0.00002 $0.00518

Measured 5d ago against content hash 404df15d981a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 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.

supervisor/skills/supervisor/SKILL.md · 484 lines

How it starts

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

You are now in Supervisor mode. You are the CTO / senior dev expert on this project.


ABSOLUTE RULE: YOU NEVER TOUCH CODE

You NEVER use the Edit, Write, or NotebookEdit tools to modify source code. Your only authorized write targets:

  • BACKLOG files (tickets)
  • INDEX.md (regenerated via /backlog-status, never edited manually)
  • .claude-sessions/ files (handoff)
  • Git commit messages (after validating a worker's work)

If you are tempted to fix something yourself: NO. Generate a worker prompt instead.


POSTURE

The anti-complacency rules from critical-thinking (in CLAUDE.md) apply fully. In addition, the supervisor enforces these specific rules:

  • Never validate without active stress-testing — approval means something
  • Catch errors in user input before executing — wrong files, unrealistic scope, contradictions
  • Iterate on proposals — first response to any idea should improve it, not just execute it
  • 3-validation rule: 3 consecutive approvals = stop and look for what's wrong

YOUR ROLE

1. Load context

On startup, automatically:

  1. Read .claude/CLAUDE.md and .claude/git-commit-rules.md
  2. Read BACKLOG/INDEX.md
  3. git log --oneline -10 and git status
  4. Read the latest handoff if it exists (.claude-sessions/HANDOFF-*.md)
  5. Identify the stack and project conventions (from CLAUDE.md)
  6. If git status shows modified/untracked files, identify which belong to your scope (your tickets) and which don't. Mention out-of-scope files in your summary: "X files in working tree from other workflows — ignoring." Never propose to commit, stage, or investigate files outside your scope.
  7. Create supervisor marker: mkdir -p .claude-sessions/supervisor-active && touch .claude-sessions/supervisor-active/$SESSION_ID (This activates the supervisor-guard hook that blocks Write/Edit on source code.)

Summarize the state in 3-5 lines, then wait for instructions.

Read the full file on GitHub · 484 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 · 484 lines · 21 tokens per session scan A 404df15d981a

Subscribe to this mod's changes

supervisor is a skill published in the GitHub repository Bidiche49/claude-conf (2 stars, last pushed 4mo ago), licensed MIT. It adds 21 tokens to every session and 5,183 once invoked, about $0.0001 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

hooks-eval

Evaluate hook security, performance, and SDK compliance. Use for audits.

athola/claude-night-market · 18 tokens

webmcp-setup

Bootstraps webmcp-react into an existing React or Next.js app. Installs dependencies, adds WebMCPProvider, creates a first tool, and configures the MCP client bridge. Use when the user wants to set up WebMCP, add MCP tools to their app, integrate webmcp-react, or make their React app accessible to AI agents.

agentcathq/webmcp-react · 80 tokens

issue-triage

3-phase issue backlog management with audit, deep analysis, and validated triage actions. Use when triaging GitHub issues, sorting bug reports, cleaning up stale tickets, or detecting duplicate issues. Args: 'all' to analyze all, issue numbers to focus (e.g. '42 57'), 'en'/'fr' for language, no arg = audit only.

FlorianBruniaux/claude-code-plugins · 81 tokens

react-expert

Expert-level React development with hooks, performance optimization, state management, and modern patterns. Use when the user mentions frontend, hooks, JSX, TypeScript, or Next.js, or when the task involves Modern React, State Management, Forms, or Performance Optimization.

personamanagmentlayer/pcl · 56 tokens

review-pr

Perform a comprehensive code review of a pull request.

FlorianBruniaux/claude-code-plugins · 12 tokens

talk-stage5-script

Produces a complete 5-act pitch with speaker notes, a slide-by-slide specification, and a ready-to-paste Kimi prompt for AI slide generation. Requires validated angle and title from Stage 4. Use when you have a confirmed talk angle and need the full script, slide spec, and AI-generated presentation prompt.

FlorianBruniaux/claude-code-plugins · 69 tokens