By laran
Canonical agent roster, model-tier mapping, and dispatch policy for Claude Code sub-agent workflows. Ships a baseline subagent_type → haiku|sonnet|opus tier table, codifies dispatch rules (slot ceiling, parallel-when-independent, no recursive dispatch, reviewer namespacing), and provides /dispatch-plan to lay out parallel work and /agent-roster to surface the active mapping. Orthogonal to agent-telemetry/agent-cost — those observe; this one decides.
npx claudepluginhub laran/claude-agent-orchestrationPrint the canonical agent → tier mapping (haiku / sonnet / opus) used across the laran/claude-methodology plugin family. Use to verify the active mapping, look up the tier for a specific agent, or remind yourself which agents bucket to which cost tier before dispatching.
Lay out a parallel-vs-serial dispatch plan for a queue of tasks. Reads the dispatch policy in docs/POLICY.md (slot ceiling, parallel-when-independent, no recursive dispatch) and proposes phases, agent assignments, and tier rollups for cost estimation. Use before launching multi-agent work to validate that the plan respects the slot ceiling and surfaces independence assumptions explicitly.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimUpstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
Comprehensive startup business analysis with market sizing (TAM/SAM/SOM), financial modeling, team planning, and strategic research
Comprehensive .NET development skills for modern C#, ASP.NET, MAUI, Blazor, Aspire, EF Core, Native AOT, testing, security, performance optimization, CI/CD, and cloud-native applications
AI-powered development tools for code review, research, design, and workflow automation.
Canonical agent roster, model-tier mapping, and dispatch policy for Claude Code sub-agent workflows.
The intent layer of the laran/claude-methodology family —
agent-telemetry and agent-cost observe; this one decides.
Ships:
| Path | Purpose |
|---|---|
config/tiers.yml | Canonical subagent_type → haiku|sonnet|opus mapping |
docs/POLICY.md | Dispatch rules (slot ceiling, parallel-when-independent, no recursive dispatch, reviewer namespacing, project-state verification) |
docs/CONVENTIONS.md | Agent frontmatter format, project-level overrides, dispatch description hygiene |
bin/agent-roster.sh | Resolves and prints the active mapping |
skills/agent-roster | /agent-roster [name] [--format json] |
skills/dispatch-plan | /dispatch-plan — lay out parallel-vs-serial dispatch for a queue of tasks |
agents/orchestrator.md | Sonnet-tier meta-agent for sustained planning over many tasks |
/plugin marketplace add laran/claude-methodology
/plugin install agent-orchestration@claude-methodology
No backend or hooks required. This plugin is documentation + configuration + a planning skill.
When agent-telemetry or agent-cost reads tier info, the lookup
chain is:
$AGENT_TIERS_FILE env var${CLAUDE_PROJECT_DIR}/.claude/agent-tiers.yml (project override)${HOME}/.claude/agent-tiers.yml (user override)agent-orchestration/config/tiers.yml (canonical, this plugin)Editing the canonical file requires a PR against this repo; per-project or per-user overrides are file drops at the paths above.
See docs/POLICY.md for full rationale. Quick
reference:
gh pr diff and migration version coordination.feature-dev:code-reviewer,
workflow-core:code-reviewer).gh / git / grep check beats memory recall.ps / lsof / stat. The Claude Code
harness spawns helper processes you don't track. ┌─────────────────────────────┐
│ agent-orchestration │
│ (intent — this plugin) │
│ │
│ • canonical tiers.yml │
│ • dispatch policy │
│ • /dispatch-plan │
│ • orchestrator agent │
└─────────────┬───────────────┘
│
│ supplies tier mapping to
▼
┌──────────────────────────┐ ┌──────────────────────────┐
│ agent-telemetry │ │ agent-cost │
│ (observation) │ │ (analytics) │
│ │ │ │
│ • SessionStart enrich │ │ • cost-report by tier │
│ • outcome reconcile │ │ • budget alerts │
│ • observe-trace │ │ • cost-analyst agent │
└──────────────────────────┘ └──────────────────────────┘
The three plugins are independently installable. agent-orchestration adds the most value when paired with the other two — its tier mapping becomes the lens through which observation rolls up.
MIT.