/team-swarm
Swarm intelligence team skill — ACO-driven multi-agent exploration with hybrid LLM coordinator + Python optimization controller. Coordinator generates swarm-config from user task, then runs K iterations of N parallel ants guided by pheromone state. Universal task space via
$ npx -y skills add catlog22/maestro-flow --skill team-swarm --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/team-swarm
Context preview
The summary Claude sees to decide when to auto-load this skill.
Swarm intelligence team skill — ACO-driven multi-agent exploration with hybrid LLM coordinator + Python optimization controller. Coordinator generates swarm-config from user task, then runs K iterations of N parallel ants guided by pheromone state. Universal task space via
SKILL.md
team-swarm.SKILL.mdname: team-swarm
disable-model-invocation: true
description: Swarm intelligence team skill — ACO-driven multi-agent exploration with hybrid LLM coordinator + Python optimization controller. Coordinator generates swarm-config from user task, then runs K iterations of N parallel ants guided by pheromone state. Universal task space via config (nodes + scoring rule). Triggers on "team swarm", "swarm intelligence", "蚁群".
allowed-tools: TeamCreate(*), TeamDelete(*), SendMessage(*), TaskCreate(*), TaskUpdate(*), TaskList(*), TaskGet(*), Agent(*), AskUserQuestion(*), Read(*), Write(*), Edit(*), Bash(*), Glob(*), Grep(*), mcp__maestro__team_msg(*)
session-mode: run
<required_reading> @~/.maestro/workflows/run-mode-lite.md </required_reading>
Team Swarm
Orchestrate ant-colony-style exploration over a user-defined task space. **Hybrid coordinator**: LLM handles task translation + worker spawning; Python script owns all numeric decisions (selection / pheromone update / convergence). Universal — task space and scoring rule come from `swarm-config.json`.
Architecture
Skill(skill="team-swarm", args="task description")
|
SKILL.md (this file) = Router
|
+--------------+--------------+
| |
no --role flag --role <name>
| |
Coordinator Worker
roles/coordinator/role.md roles/<name>/role.md
|
+-- Phase 1: gen swarm-config
+-- Phase 2: init --> Bash: scripts/aco.py init
+-- Phase 3: iterate (K rounds, each = spawn-and-stop)
| |
| +-- Bash: aco.py select --iter k -> N assignments
| +-- Spawn N x team-worker(ant)
| +-- [callback when all ants done]
| +-- (optional) Spawn team-worker(scorer)
| +-- Bash: aco.py update --iter k
| +-- Bash: aco.py converged
| +-- branch: loop k+1 OR Phase 4
|
+-- Phase 4: converge --> Bash: aco.py report -> Spawn team-worker(analyst)
-> best-solution.mdRole Registry
| Role | Path | Prefix | Inner Loop | |------|------|--------|------------| | coordinator | [roles/coordinator/role.md](roles/coordinator/role.md) | — | — | | ant | [roles/ant/role.md](roles/ant/role.md) | ANT-* | false | | scorer | [roles/scorer/role.md](roles/scorer/role.md) | SCORE-* | false | | analyst | [roles/analyst/role.md](roles/analyst/role.md) | ANALYST-* | false |
Role Router
Parse `$ARGUMENTS`:
- Has `--role <name>` -> Read `roles/<name>/role.md`, execute Phase 2-4
- No `--role` -> `@roles/coordinator/role.md`, execute entry router
Shared Constants
- **Session prefix**: `TS`
- **Session path**: `{run_dir}/work/team/`
- **Team name**: `swarm`
- **Script root**: `<skill_root>/scripts/aco.py` (Python 3.10+)
- **Message bus**: `mcp__maestro__team_msg(session_id=<run-id>, ...)`
Worker Spawn Template
Coordinator spawns workers using this template:
Agent({
subagent_type: "team-worker",
description: "Spawn <role> worker",
team_name: "swarm",
name: "<role>",
run_in_background: true,
prompt: `## Role Assignment
role: <role>
role_spec: <skill_root>/roles/<role>/role.md
session: {run_dir}/work/team
session_id: <run-id>
team_name: swarm
requirement: <task-description>
inner_loop: false
## Assignment (ant only)
<assignment JSON from aco.py select>
## Progress Milestones
session_id: <run-id>
Report progress via team_msg at natural phase boundaries.
Report blockers immediately via team_msg type="blocker".
Report completion via team_msg type="task_complete" after final SendMessage.
Read role_spec file (@<skill_root>/roles/<role>/role.md) to load Phase 2-4 domain instructions.
Execute built-in Phase 1 (task discovery) -> role Phase 2-4 -> built-in Phase 5 (report).`
})User Commands
| Command | Action | |---------|--------| | `check` / `status` | View iteration progress + convergence curve | | `resume` / `continue` | Resume interrupted iteration | | `feedback <text>` | Inject feedback into wisdom; applies at next iteration | | `revise <ITER>` | Re-run a specific iteration (rare) |
Specs Reference
| Spec | Purpose | |------|---------| | [specs/swarm-protocol.md](specs/swarm-protocol.md) | Master protocol: script <-> coordinator interface, data flow | | [specs/pheromone-schema.md](specs/pheromone-schema.md) | Pheromone JSON structure, update formula, evaporation | | [specs/ant-output-schema.md](specs/ant-output-schema.md) | Critical contract for ant JSON artifacts | | [specs/convergence-criteria.md](specs/convergence-criteria.md) | Stop conditions, multi-criterion logic | | [specs/swarm-config-template.json](specs/swarm-config-template.json) | User-facing config template with all knobs |
Scripts
| Script | Purpose | Invocation | |--------|---------|------------| | `scripts/aco.py` | Main CLI: init / select / update / converged / report | `python aco.py --session <path> <cmd>` | | `scripts/pheromone.py` | Pheromone matrix module (imported by aco.py) | — | | `scripts/scoring.py` | Pluggable scorer (script + fallback modes) | — |
Session Directory
{run_dir}/work/team/
├── team-session.json # Session state
├── swarm-config.json # User-facing config (Phase 1 output)
├── role-binding.json # Worker role_spec path map
├── task-space.json # Resolved nodes list
├── pheromone/
│ ├── current.json # Latest pheromone (each iter overwrites)
│ ├── init.json # Frozen initial state
│ └── history/<iter>.json # Per-iter snapshot
├── trails/<iter>.jsonl # Per-iter all-ant paths + scores
├── scores/iter-<iter>-scores.json # Scorer output (if mode == llm)
├── {run_dir}/outputs/ # Formal deliverables
│ ├── ant-<iter>-<id>.json # Per-ant schema-locked output
│ ├── swarm-report.json # Phase 4 full report dump
│ └── best-solution.md # Analyst final syntRead more
name: team-swarm disable-model-invocation: true description: Swarm intelligence team skill — ACO-driven multi-agent exploration with hybrid LLM coordinator + Python optimization controller. Coordinator generates swarm-config from user task, then runs K iterations of N parallel ants guided by pheromone state. Universal task space via config (nodes + scoring rule). Triggers on "team swarm", "swarm intelligence", "蚁群". allowed-tools: TeamCreate(*), TeamDelete(*), SendMessage(*), TaskCreate(*), TaskUpdate(*), TaskList(*), TaskGet(*), Agent(*), AskUserQuestion(*), Read(*), Write(*), Edit(*), Bash(*), Glob(*), Grep(*), mcp__maestro__team_msg(*) session-mode: run
<required_reading> @~/.maestro/workflows/run-mode-lite.md </required_reading>
Team Swarm
Orchestrate ant-colony-style exploration over a user-defined task space. **Hybrid coordinator**: LLM handles task translation + worker spawning; Python script owns all numeric decisions (selection / pheromone update / convergence). Universal — task space and scoring rule come from `swarm-config.json`.
Architecture
Skill(skill="team-swarm", args="task description")
|
SKILL.md (this file) = Router
|
+--------------+--------------+
| |
no --role flag --role <name>
| |
Coordinator Worker
roles/coordinator/role.md roles/<name>/role.md
|
+-- Phase 1: gen swarm-config
+-- Phase 2: init --> Bash: scripts/aco.py init
+-- Phase 3: iterate (K rounds, each = spawn-and-stop)
| |
| +-- Bash: aco.py select --iter k -> N assignments
| +-- Spawn N x team-worker(ant)
| +-- [callback when all ants done]
| +-- (optional) Spawn team-worker(scorer)
| +-- Bash: aco.py update --iter k
| +-- Bash: aco.py converged
| +-- branch: loop k+1 OR Phase 4
|
+-- Phase 4: converge --> Bash: aco.py report -> Spawn team-worker(analyst)
-> best-solution.mdRole Registry
| Role | Path | Prefix | Inner Loop | |------|------|--------|------------| | coordinator | [roles/coordinator/role.md](roles/coordinator/role.md) | — | — | | ant | [roles/ant/role.md](roles/ant/role.md) | ANT-* | false | | scorer | [roles/scorer/role.md](roles/scorer/role.md) | SCORE-* | false | | analyst | [roles/analyst/role.md](roles/analyst/role.md) | ANALYST-* | false |
Role Router
Parse `$ARGUMENTS`:
- Has `--role <name>` -> Read `roles/<name>/role.md`, execute Phase 2-4
- No `--role` -> `@roles/coordinator/role.md`, execute entry router
Shared Constants
- **Session prefix**: `TS`
- **Session path**: `{run_dir}/work/team/`
- **Team name**: `swarm`
- **Script root**: `<skill_root>/scripts/aco.py` (Python 3.10+)
- **Message bus**: `mcp__maestro__team_msg(session_id=<run-id>, ...)`
Worker Spawn Template
Coordinator spawns workers using this template:
Agent({
subagent_type: "team-worker",
description: "Spawn <role> worker",
team_name: "swarm",
name: "<role>",
run_in_background: true,
prompt: `## Role Assignment
role: <role>
role_spec: <skill_root>/roles/<role>/role.md
session: {run_dir}/work/team
session_id: <run-id>
team_name: swarm
requirement: <task-description>
inner_loop: false
## Assignment (ant only)
<assignment JSON from aco.py select>
## Progress Milestones
session_id: <run-id>
Report progress via team_msg at natural phase boundaries.
Report blockers immediately via team_msg type="blocker".
Report completion via team_msg type="task_complete" after final SendMessage.
Read role_spec file (@<skill_root>/roles/<role>/role.md) to load Phase 2-4 domain instructions.
Execute built-in Phase 1 (task discovery) -> role Phase 2-4 -> built-in Phase 5 (report).`
})User Commands
| Command | Action | |---------|--------| | `check` / `status` | View iteration progress + convergence curve | | `resume` / `continue` | Resume interrupted iteration | | `feedback <text>` | Inject feedback into wisdom; applies at next iteration | | `revise <ITER>` | Re-run a specific iteration (rare) |
Specs Reference
| Spec | Purpose | |------|---------| | [specs/swarm-protocol.md](specs/swarm-protocol.md) | Master protocol: script <-> coordinator interface, data flow | | [specs/pheromone-schema.md](specs/pheromone-schema.md) | Pheromone JSON structure, update formula, evaporation | | [specs/ant-output-schema.md](specs/ant-output-schema.md) | Critical contract for ant JSON artifacts | | [specs/convergence-criteria.md](specs/convergence-criteria.md) | Stop conditions, multi-criterion logic | | [specs/swarm-config-template.json](specs/swarm-config-template.json) | User-facing config template with all knobs |
Scripts
| Script | Purpose | Invocation | |--------|---------|------------| | `scripts/aco.py` | Main CLI: init / select / update / converged / report | `python aco.py --session <path> <cmd>` | | `scripts/pheromone.py` | Pheromone matrix module (imported by aco.py) | — | | `scripts/scoring.py` | Pluggable scorer (script + fallback modes) | — |
Session Directory
{run_dir}/work/team/
├── team-session.json # Session state
├── swarm-config.json # User-facing config (Phase 1 output)
├── role-binding.json # Worker role_spec path map
├── task-space.json # Resolved nodes list
├── pheromone/
│ ├── current.json # Latest pheromone (each iter overwrites)
│ ├── init.json # Frozen initial state
│ └── history/<iter>.json # Per-iter snapshot
├── trails/<iter>.jsonl # Per-iter all-ant paths + scores
├── scores/iter-<iter>-scores.json # Scorer output (if mode == llm)
├── {run_dir}/outputs/ # Formal deliverables
│ ├── ant-<iter>-<id>.json # Per-ant schema-locked output
│ ├── swarm-report.json # Phase 4 full report dump
│ └── best-solution.md # Analyst final syntIntent-driven workflow orchestration for multi-agent AI development — adaptive lifecycle engine, self-reinforcing knowledge graph, and visual dashboard for Claude Code, Gemini, Codex & more
Repo: catlog22/maestro-flow
Other skills on maestro-flow.
- /maestro-help
Maestro Flow 命令帮助系统。搜索命令、浏览技能、工作流推荐、新手引导。Triggers on "maestro-help", "帮助", "命令", "怎么用", "skill", "workflow", "maestro 怎么用".
Open skill - /skill-generator
Meta-skill for creating new Claude Code skills with configurable execution modes. Supports sequential (fixed order) and autonomous (stateless) phase patterns. Use for skill scaffolding, skill creation, or building new workflows. Triggers on "create skill", "new skill", "skill
Open skill - /skill-iter-tune
Iterative skill tuning via execute-evaluate-improve feedback loop. Uses maestro delegate Claude to execute skill, Agy to evaluate quality, and Agent to apply improvements. Iterates until quality threshold or max iterations. Triggers on "skill iter tune", "iterative skill
Open skill - /skill-simplify
SKILL.md simplification with functional integrity verification. Analyze redundancy, optimize content, check no functionality lost. Triggers on "simplify skill", "optimize skill", "skill-simplify".
Open skill - /skill-tuning
Universal skill diagnosis and optimization tool. Detect and fix skill execution issues including context explosion, long-tail forgetting, data flow disruption, and agent coordination failures. Supports Agy CLI for deep analysis. Triggers on "skill tuning", "tune skill", "skill
Open skill - /team-arch-opt
Unified team skill for architecture optimization. Uses team-worker agent architecture with role directories for domain logic. Coordinator orchestrates pipeline, workers are team-worker agents. Triggers on "team arch-opt".
Open skill

