Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Routes tasks to the best-suited agent based on skills, cost, availability, and priority, enabling parallel execution and load-balanced multi-agent orchestrat...
Routes tasks to the best-suited agent based on skills, cost, availability, and priority, enabling parallel execution and load-balanced multi-agent orchestrat...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Version: 1.0.0 Author: Aoineco & Co. License: MIT Tags: multi-agent, orchestration, dispatch, parallel, squad, task-routing
Routes tasks to the right agent based on skills, availability, cost, and priority. Evolved from the dispatching-parallel-agents pattern into a full squad orchestration engine for multi-agent teams. Core principle: Right agent for right job. Cheapest agent for simple tasks. Best agent for critical tasks.
Multi-agent squads waste resources when: All tasks go to one expensive model Simple community posts use Claude Opus ($$$) instead of Gemini Flash ($) Tasks run sequentially when they could run in parallel No visibility into which agent costs what
FeatureDescriptionSkill-Based RoutingMatches task requirements to agent specializationsCost-Aware DispatchPrefers cheaper agents for normal tasks, best agents for criticalDependency DetectionAutomatically groups parallel vs sequential tasksLoad BalancingRespects max concurrent tasks per agentNamed RosterPre-configured 7-agent squad with specializationsVisual PlansHuman-readable dispatch plans with cost estimates
AgentSpecializationModelCost🧿 OracleGovernance, Strategyclaude-opus$$$⚔️ Blue-BladeSecurity, Auditclaude-sonnet$$📢 Blue-SoundCommunity, Contentgemini-flash$👁️ Blue-EyeResearch, Datagemini-flash$🧠 Blue-BrainStrategy, Analysisgemini-pro$$⚡ Blue-FlashBuild, Codeclaude-sonnet$$🗂️ Blue-RecordRecords, Docsgemini-flash$
from dispatch_engine import SquadDispatcher dispatcher = SquadDispatcher() dispatcher.add_task("Audit new skill", "Security scan", required_skills=["security"]) dispatcher.add_task("Post to BotMadang", "Korean content", required_skills=["community"]) dispatcher.add_task("Update docs", "Write summary", required_skills=["records"], depends_on=["TASK-0001", "TASK-0002"]) plan = dispatcher.plan() print(dispatcher.format_plan(plan))
aoineco-squad-dispatch/ ├── SKILL.md # This file └── scripts/ └── dispatch_engine.py # Main engine (zero external dependencies)
Pure Python 3.10+. No pip install needed. Designed for the $7 Bootstrap Protocol — every byte counts.
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.