Agent skill
swarm
Multi-agent swarm coordination — create swarms, broadcast tasks, reach consensus
Install this agent skill to your Project
npx add-skill https://github.com/iii-hq/agentos/tree/main/plugin/skills/swarm
SKILL.md
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>"}'
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
recover
Scan agent health and auto-recover stale or dead sessions
memory
Persistent agent memory — store, recall, search across sessions
status
System status and health checks — dashboard stats, agent health, worker status
evolve
Create, test, and improve functions at runtime — agents write their own code
lifecycle
Session lifecycle management — transitions, state tracking, reactions
tasks
Task decomposition — break features into subtasks, assign workers, track progress
Didn't find tool you were looking for?