โœ“ Verified ๐Ÿ’ป Development โœ“ Enhanced Data

Aoineco Squad Dispatch

<!-- ๐ŸŒŒ Aoineco-Verified | S-DNA: AOI-2026-0213-SDNA-SD01 -->.

Rating
4.6 (32 reviews)
Downloads
2,834 downloads
Version
1.0.0

Overview

<!-- ๐ŸŒŒ Aoineco-Verified | S-DNA: AOI-2026-0213-SDNA-SD01 -->.

Complete Documentation

View Source โ†’

Aoineco Squad Dispatch โ€” Multi-Agent Task Router

Version: 1.0.0 Author: Aoineco & Co. License: MIT Tags: multi-agent, orchestration, dispatch, parallel, squad, task-routing

Description

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.

Problem

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

Features

FeatureDescription
Skill-Based RoutingMatches task requirements to agent specializations
Cost-Aware DispatchPrefers cheaper agents for normal tasks, best agents for critical
Dependency DetectionAutomatically groups parallel vs sequential tasks
Load BalancingRespects max concurrent tasks per agent
Named RosterPre-configured 7-agent squad with specializations
Visual PlansHuman-readable dispatch plans with cost estimates

Pre-Configured Squad

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$

Quick Start

python
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))

File Structure

text
aoineco-squad-dispatch/
โ”œโ”€โ”€ SKILL.md               # This file
โ””โ”€โ”€ scripts/
    โ””โ”€โ”€ dispatch_engine.py  # Main engine (zero external dependencies)

Zero Dependencies

Pure Python 3.10+. No pip install needed. Designed for the $7 Bootstrap Protocol โ€” every byte counts.

Installation

Terminal bash

openclaw install aoineco-squad-dispatch
    
Copied!

๐Ÿ’ปCode Examples

example.py
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))
example.txt
aoineco-squad-dispatch/
โ”œโ”€โ”€ SKILL.md               # This file
โ””โ”€โ”€ scripts/
    โ””โ”€โ”€ dispatch_engine.py  # Main engine (zero external dependencies)

Tags

#web_and-frontend-development

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author edmonddantesj
Last Updated 3/10/2026
๐Ÿš€
Optimized for
Claude 3.5
๐Ÿง 

Ready to Install?

Get started with this skill in seconds

openclaw install aoineco-squad-dispatch