← 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

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

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

Package facts

Download mode
Manual review
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

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.

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