agentsclimarketplace

Multi agent supervisor

Skill m00kk/agent-skills-playbook/skills/multi-agent-supervisor

Implements the supervisor pattern: one orchestrator routes tasks to specialist agents (research, code, data). Use for multi-agent systems, delegating subtasks, LangGraph supervisor, or MCP-backed specialist workers.From its SKILL.md

Install
npx -y skills add m00kk/agent-skills-playbook --skill multi-agent-supervisor

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.7 KB, 337 tokens by cl100k_base, as published. Nobody here has run it

Multi-Agent Supervisor

Architecture

User → Supervisor (routing only) → Specialist A | B | C → Supervisor → FINISH

Rule: Supervisor never executes tools directly — only picks the next worker.

Specialist design

SpecialistTools (via MCP)Output
researchweb_search, fetch_pagecitations + summary
coderun_tests, lint, edit_filespatch or PR-ready diff
datasql_query (read-only)tables + interpretation

Each specialist is a small ReAct or tool-calling subgraph with 2–5 tools max.

Routing prompt (supervisor)

Include in system message:

  • List of workers with one-line capability
  • Output format: exactly one of [research, code, data, FINISH]
  • Stop when user goal satisfied; do not loop specialists unnecessarily

LangGraph sketch

  1. Node supervisor — LLM returns next worker name
  2. Nodes research, code, data — run specialist; return to supervisor
  3. Conditional edge from supervisor to worker or END

Failure handling

  • Unknown route → default to clarifying question node
  • Specialist error → append error to state; supervisor may retry once or escalate
  • Max iterations (e.g. 15) to prevent infinite delegation

Scale-out

Add specialists by:

  1. New MCP server with focused tools
  2. New graph node + supervisor prompt line
  3. No change to other specialists

Pair with a2a-agent-delegation for cross-runtime agents.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.