Orchestration patterns for multi-agent team workflows — team definitions, sequencing rules, result aggregation, and conflict resolution.
Orchestrates multi-agent teams with sequential, parallel, and pipeline workflows for coordinated task execution.
npx claudepluginhub dlabs/claude-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/team-catalog.mdThis skill provides the orchestration framework for running predefined multi-agent teams. The swarm-coordinator agent uses these patterns to spawn, sequence, and aggregate agent workflows.
/blueprint-dev:bp:team-* commands — predefined team swarms/blueprint-dev:bp:lfg — full pipeline orchestrationSee references/team-catalog.md for predefined teams and their compositions.
Agents run one after another, each using the previous agent's output.
A → B → C
Use when: Agent B needs Agent A's output to function.
All agents run simultaneously on the same input.
[A, B, C] → merge
Use when: Agents are independent and evaluate different aspects.
One agent produces output, then multiple agents review it in parallel.
A → [B, C, D] → merge
Use when: One agent creates, multiple agents evaluate.
Teams run sequentially, each team's output feeds the next.
team-design → team-architecture → team-review
Use when: Full workflow execution with approval gates between phases.
For the full pipeline (/blueprint-dev:bp:lfg), insert user approval gates between phases:
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.