Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
pluginagentmarketplace avatar

Multi Agent

  • 15 installs
  • 1 repo stars
  • Updated January 5, 2026
  • pluginagentmarketplace/custom-plugin-ai-agents

Helps with ai & agent building tasks.

About

multi-agent is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • multi-agent
  • AI & Agent Building
  • AI-coding skill

Multi Agent by the numbers

  • 15 all-time installs (skills.sh)
  • Ranked #11,187 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/pluginagentmarketplace/custom-plugin-ai-agents --skill multi-agent

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs15
repo stars1
Last updatedJanuary 5, 2026
Repositorypluginagentmarketplace/custom-plugin-ai-agents

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Multi-Agent Systems

Build coordinated multi-agent systems for complex tasks.

When to Use This Skill

Invoke this skill when:

  • Tasks require multiple specialized agents
  • Building orchestrator-worker patterns
  • Implementing agent workflows
  • Coordinating parallel execution

Parameter Schema

ParameterTypeRequiredDescriptionDefault
taskstringYesMulti-agent goal-
architectureenumNoorchestrator-worker, hierarchical, peer-to-peerorchestrator-worker
frameworkenumNolanggraph, autogen, crewailanggraph

Quick Start

from langgraph.graph import StateGraph, MessagesState
from langgraph.prebuilt import create_react_agent

# Create specialized agents
researcher = create_react_agent(llm, [web_search])
coder = create_react_agent(llm, [execute_code])

# Build graph
graph = StateGraph(MessagesState)
graph.add_node("researcher", researcher)
graph.add_node("coder", coder)
graph.add_conditional_edges("coordinator", router)

Architecture Patterns

Orchestrator-Worker

Orchestrator (Opus)
    ├── Researcher (Sonnet)
    ├── Analyst (Sonnet)
    └── Writer (Haiku)

Hierarchical

Manager (Opus)
    ├── Research Lead (Sonnet)
    │   ├── Web Researcher (Haiku)
    │   └── Doc Analyst (Haiku)
    └── Engineering Lead (Sonnet)
        ├── Frontend Dev (Haiku)
        └── Backend Dev (Haiku)

Model Allocation

Agent TypeModelRationale
OrchestratorOpusComplex planning
SpecialistSonnetReasoning
WorkerHaikuSimple tasks

Troubleshooting

IssueSolution
Agents not coordinatingCheck message bus
DeadlockAdd timeout, detect cycles
Inconsistent resultsSynchronize state
High costsUse cheaper models for workers

Best Practices

  • One job per agent (single responsibility)
  • Orchestrator handles planning only
  • Use checkpointing for long workflows
  • Implement circuit breakers per agent

Related Skills

  • ai-agent-basics - Single agents
  • agent-memory - Shared state
  • tool-calling - Per-agent tools

References

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.