Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Integrates overstory Claude Code agent swarm with nanobot orchestrator. Manages agent lifecycle, SQLite mail bridge, and git worktree coordination.
Integrates overstory Claude Code agent swarm with nanobot orchestrator. Manages agent lifecycle, SQLite mail bridge, and git worktree coordination.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Integrates overstory's Claude Code agent swarm system with the nanobot orchestrator. Provides agent lifecycle management, an inter-agent SQLite mail bridge, and git worktree coordination for parallel agent workstreams.
ββββββββββββββββ βββββββββββββββββββββ β nanobot ββββββββΆβ overstory_wrapper ββββΆ overstory CLI (tmux sessions) β orchestrator β βββββββββββββββββββββ β β βββββββββββββββββββββ β ββββββββΆβ agent_lifecycle ββββΆ SQLite (agent_lifecycle.db) β β βββββββββββββββββββββ β β βββββββββββββββββββββ β ββββββββΆβ mail_bridge ββββΆ SQLite (.overstory/mail.db) ββββββββββββββββ βββββββββββββββββββββ overstory_wrapper.py β Thin wrapper around the overstory CLI. Spawns agents via tmux, manages worktrees, installs hooks. agent_lifecycle.py β Tracks agent state (spawned β running β completed/failed/terminated) in a local SQLite database. Provides async monitoring and cleanup. mail_bridge.py β Thread-safe message bridge using overstory's native SQLite mail format. Supports direct messages, broadcasts, and threaded conversations.
Python 3.9+ overstory CLI installed and on PATH (or set OVERSTORY_BIN) git (for worktree management) tmux (overstory uses tmux for agent sessions) No external Python dependencies (stdlib only)
VariableDefaultDescriptionOVERSTORY_BINoverstoryPath to overstory binaryOVERSTORY_WORKSPACEcurrent directoryWorkspace root for overstory operations
python3 scripts/overstory_wrapper.py init --workspace /path/to/project
python3 scripts/overstory_wrapper.py sling \ --task-id TASK-42 \ --capability code \ --name builder-alice \ --description "Implement auth module" \ --worktree
python3 scripts/overstory_wrapper.py status python3 scripts/overstory_wrapper.py status --agent builder-alice --verbose
python3 scripts/overstory_wrapper.py inspect --agent builder-alice --lines 100
python3 scripts/overstory_wrapper.py kill --agent builder-alice
python3 scripts/overstory_wrapper.py list-worktrees python3 scripts/overstory_wrapper.py cleanup-worktree --agent builder-alice
python3 scripts/agent_lifecycle.py spawn --task "Fix login bug" --capability code --name bug-fixer python3 scripts/agent_lifecycle.py list-active --json python3 scripts/agent_lifecycle.py wait --agent bug-fixer --timeout 1800 python3 scripts/agent_lifecycle.py cleanup --max-age 24
python3 scripts/mail_bridge.py send --from orchestrator --to builder-alice --subject "Priority change" --body "Switch to auth module" python3 scripts/mail_bridge.py read --agent builder-alice --unread python3 scripts/mail_bridge.py broadcast --from orchestrator --channel @all --message "Stand down" python3 scripts/mail_bridge.py create-thread --agents orchestrator,builder-alice --subject "Auth design" python3 scripts/mail_bridge.py reply --thread THREAD-ID --from builder-alice --body "Done with phase 1"
from overstory_wrapper import OverstoryWrapper from agent_lifecycle import AgentLifecycle from mail_bridge import MailBridge wrapper = OverstoryWrapper("/path/to/workspace") wrapper.init() lifecycle = AgentLifecycle() agent = lifecycle.spawn_agent(task="Build API", capability="code", name="api-builder") bridge = MailBridge("/path/to/workspace") bridge.send("orchestrator", "api-builder", "Context", "Here are the specs...")
ColumnTypeDescriptionidINTEGER PRIMARY KEYAuto-incrementagent_nameTEXT UNIQUEAgent identifiercapabilityTEXTAgent capability (code, research, etc.)statusTEXTspawned/running/completed/failed/terminatedtaskTEXTTask descriptionresultTEXTFinal output (nullable)start_timeREALUnix timestampend_timeREALUnix timestamp (nullable)timeoutINTEGERMax runtime in seconds
ColumnTypeDescriptionidINTEGER PRIMARY KEYAuto-incrementthread_idTEXTThread identifier (nullable)from_agentTEXTSender agent nameto_agentTEXTRecipient agent namesubjectTEXTMessage subjectbodyTEXTMessage bodypriorityTEXTnormal/high/urgentreadINTEGER0=unread, 1=readcreated_atREALUnix timestamp
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.