← All skills
Tencent SkillHub Β· Developer Tools

Overstory Integration

Integrates overstory Claude Code agent swarm with nanobot orchestrator. Manages agent lifecycle, SQLite mail bridge, and git worktree coordination.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Integrates overstory Claude Code agent swarm with nanobot orchestrator. Manages agent lifecycle, SQLite mail bridge, and git worktree coordination.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, _meta.json, scripts/agent_lifecycle.py, scripts/mail_bridge.py, scripts/overstory_wrapper.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

Description

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.

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ 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.

Requirements

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)

Environment Variables

VariableDefaultDescriptionOVERSTORY_BINoverstoryPath to overstory binaryOVERSTORY_WORKSPACEcurrent directoryWorkspace root for overstory operations

Initialize workspace

python3 scripts/overstory_wrapper.py init --workspace /path/to/project

Spawn an agent

python3 scripts/overstory_wrapper.py sling \ --task-id TASK-42 \ --capability code \ --name builder-alice \ --description "Implement auth module" \ --worktree

Check status

python3 scripts/overstory_wrapper.py status python3 scripts/overstory_wrapper.py status --agent builder-alice --verbose

Inspect agent transcript

python3 scripts/overstory_wrapper.py inspect --agent builder-alice --lines 100

Kill an agent

python3 scripts/overstory_wrapper.py kill --agent builder-alice

Worktree management

python3 scripts/overstory_wrapper.py list-worktrees python3 scripts/overstory_wrapper.py cleanup-worktree --agent builder-alice

Agent lifecycle

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

Mail bridge

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"

Usage as Python Module

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...")

agent_lifecycle.db (~/.nanobot/agent_lifecycle.db)

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

mail.db (.overstory/mail.db)

ColumnTypeDescriptionidINTEGER PRIMARY KEYAuto-incrementthread_idTEXTThread identifier (nullable)from_agentTEXTSender agent nameto_agentTEXTRecipient agent namesubjectTEXTMessage subjectbodyTEXTMessage bodypriorityTEXTnormal/high/urgentreadINTEGER0=unread, 1=readcreated_atREALUnix timestamp

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts1 Docs1 Config
  • SKILL.md Primary doc
  • scripts/agent_lifecycle.py Scripts
  • scripts/mail_bridge.py Scripts
  • scripts/overstory_wrapper.py Scripts
  • _meta.json Config