Agent Skills
› iii-experimental/agentos
› swarm
swarm
GitHub用于多智能体群集协调,支持创建群集、广播任务、收集结果及达成共识。通过调用本地 API 实现多个 Agent 间的协作与决策流程。
Trigger Scenarios
需要多个Agent协同完成复杂任务
需要分布式共识机制
多智能体系统编排
Install
npx skills add iii-experimental/agentos --skill swarm -g -y
SKILL.md
Frontmatter
{
"name": "swarm",
"effort": "extended",
"toolScope": [
"Bash",
"Read"
],
"description": "Multi-agent swarm coordination — create swarms, broadcast tasks, reach consensus"
}
Swarm coordination:
- Create:
curl -X POST http://localhost:3111/api/swarm/create -H 'Content-Type: application/json' -d '{"goal": "<goal>", "agents": ["agent1", "agent2"], "strategy": "consensus"}' - Broadcast:
curl -X POST http://localhost:3111/api/swarm/broadcast -H 'Content-Type: application/json' -d '{"swarmId": "<id>", "agentId": "claude-code", "type": "proposal", "content": "<proposal>"}' - Collect:
curl -X POST http://localhost:3111/api/swarm/collect -H 'Content-Type: application/json' -d '{"swarmId": "<id>"}' - Consensus:
curl -X POST http://localhost:3111/api/swarm/consensus -H 'Content-Type: application/json' -d '{"swarmId": "<id>"}'
Version History
- caca2b4 Current 2026-07-25 09:41


