๐ Multi-agent swarm coordination for OpenCode with learning capabilities, agent issue tracking, and management
npx skills add https://github.com/joelhooks/swarm-tools --skill always-on-guidanceไฝฟ็จ CLI ๅฎ่ฃ ่ฟไธชๆ่ฝ๏ผๅนถๅจไฝ ็ๅทฅไฝๅบไธญ็ดๆฅๅค็จๅฏนๅบ็ SKILL.md ๅทฅไฝๆตใ
โโโโโโโโโโโ โโโ โโโโโโ โโโโโโโ โโโโ โโโโ
โโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโ โโโโโ
โโโโโโโโโโโ โโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโ โโโโโโ โโโโโโ โโโ โโโ
โโโโโโโโ โโโโโโโโ โโโ โโโโโโ โโโโโโ โโโ
Multi-agent coordination that survives context death.
Break big tasks into small ones. Spawn agents to work in parallel. Learn from what works.
npm install -g opencode-swarm-plugin
swarm setup
Done. Use /swarm "your task" in any OpenCode session.
Step 1: Install the CLI globally (required):
npm install -g opencode-swarm-plugin
Step 2: Add the marketplace in Claude Code:
/plugin
โ Manage marketplaces
โ Add marketplace
โ Enter: joelhooks/swarm-tools
Step 3: Install the plugin:
/plugin
โ Manage plugins
โ swarm-tools
โ swarm
โ Install
The MCP server starts automatically. Use /swarm "your task" in any session.
/swarm "Add user authentication with OAuth"
Git-backed task tracking in .hive/. Survives sessions, syncs via git.
hive_create({ title: "Fix auth bug", type: "bug" })
hive_cells({ status: "in_progress" })
hive_close({ id: "cell-123", reason: "Fixed" })
Semantic memory with embeddings. Store learnings, search later.
hivemind_store({ information: "Auth requires idempotency keys", tags: "auth,gotcha" })
hivemind_find({ query: "auth patterns" })
Actor-model coordination between agents. File reservations, messaging, checkpoints.
swarmmail_reserve({ paths: ["src/auth/*"], exclusive: true })
swarmmail_send({ to: ["worker-b"], subject: "Need types", body: "..." })
| Command | Description |
|---|---|
/swarm <task> |
Decompose and spawn parallel workers |
/hive |
Query and manage tasks |
/inbox |
Check messages from other agents |
/status |
Swarm coordination status |
/handoff |
End session with sync and handoff notes |
swarm setup # Configure OpenCode/Claude Code integration
swarm doctor # Check dependencies (Ollama for embeddings)
swarm init # Initialize hive in current project
swarm config # Show config paths
Your Task
โ
โผ
โโโโโโโโโโโโโโโโโโ
โ COORDINATOR โ
โ โ
โ 1. Query past โ
โ sessions โ
โ 2. Pick strat โ
โ 3. Decompose โ
โโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโ
โผ โผ โผ
โโโโโโโโโโโโโโ โโโโโโโโโโโโโโ โโโโโโโโโโโโโโ
โ Worker A โ โ Worker B โ โ Worker C โ
โ โ โ โ โ โ
โ ๐ files โโโโโถโ ๐ files โ โ ๐ files โ
โโโโโโโโโโโโโโ โโโโโโโโโโโโโโ โโโโโโโโโโโโโโ
โ โ โ
โโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโ
โผ
โโโโโโโโโโโโโโโโโโ
โ LEARNING โ
โ โ
โ Record outcome โ
โ Update weights โ
โโโโโโโโโโโโโโโโโโ
Everything runs locally. No external servers.
.hive/ directory for tasksAll state is an append-only event log:
agent_registered โ Agent joins swarm
message_sent โ Agent-to-agent communication
file_reserved โ Exclusive lock acquired
file_released โ Lock released
checkpoint โ Progress snapshot
outcome โ Completion result
Every completion records duration, errors, files touched, success.
| Required | Optional |
|---|---|
| Bun | Ollama - local embeddings |
Run swarm doctor to check status.
Configure the embedding model via environment variables:
export OLLAMA_MODEL=nomic-embed-text # Default: mxbai-embed-large
export OLLAMA_HOST=http://localhost:11434 # Default
Supported models: mxbai-embed-large (1024d), nomic-embed-text (768d), all-minilm (384d), snowflake-arctic-embed (1024d). See swarm-mail docs for details.
bun install
bun turbo build
bun turbo test
MIT