TopRank Skills

Home / Claw Skills / Others / Aoineco Squad Dispatch
Official OpenClaw rules 15%

Aoineco Squad Dispatch

Aoineco Squad Dispatch — Multi Agent Task Router

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Aoineco Squad Dispatch 技能。 若已安装,则直接安装 Aoineco Squad Dispatch 技能。

Overview

Skill Key
edmonddantesj/aoineco-squad-dispatch
Author
edmonddantesj
Source Repo
openclaw/skills
Version
-
Source Path
skills/edmonddantesj/aoineco-squad-dispatch
Latest Commit SHA
189a95802883a8e08eb3937c65a23bddd82277aa

Extracted Content

SKILL.md excerpt

# Aoineco Squad Dispatch — Multi-Agent Task Router

<!-- 🌌 Aoineco-Verified | S-DNA: AOI-2026-0213-SDNA-SD01 -->

**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:
1. All tasks go to one expensive model
2. Simple community posts use Claude Opus ($$$) instead of Gemini Flash ($)
3. Tasks run sequentially when they could run in parallel
4. No visibility into which agent costs what

## Features

| Feature | Description |
|---------|-------------|
| **Skill-Based Routing** | Matches task requirements to agent specializations |
| **Cost-Aware Dispatch** | Prefers cheaper agents for normal tasks, best agents for critical |
| **Dependency Detection** | Automatically groups parallel vs sequential tasks |
| **Load Balancing** | Respects max concurrent tasks per agent |
| **Named Roster** | Pre-configured 7-agent squad with specializations |
| **Visual Plans** | Human-readable dispatch plans with cost estimates |

## Pre-Configured Squad

| Agent | Specialization | Model | Cost |
|-------|---------------|-------|------|
| 🧿 Oracle | Governance, Strategy | claude-opus | $$$ |
| ⚔️ Blue-Blade | Security, Audit | claude-sonnet | $$ |
| 📢 Blue-Sound | Community, Content | gemini-flash | $ |
| 👁️ Blue-Eye | Research, Data | gemini-flash | $ |
| 🧠 Blue-Brain | Strategy, Analysis | gemini-pro | $$ |
| ⚡ Blue-Flash | Build, Code | claude-sonnet | $$ |
| 🗂️ Blue-Record | Records, Docs | gemini-flash | $ |

## Quick Start

```python
from dispatch_engine import SquadDispatcher

dispatcher = SquadDispatcher()...

Related Claw Skills