nanobot-overstory-bridge
Seamless bidirectional bridge between nanobot (Ollama Mistral orchestrator) and overstory (Claude Code agent swarm). Routes tasks through the OverClaw gateway (port 18800) to overstory for subagent coordination, syncs memory.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/austindixson/nanobot-overstory-bridgeOverClaw Bridge (nanobot-overstory)
The critical integration layer in the OverClaw stack. Connects nanobot (lightweight AI backend powered by Ollama Mistral) to overstory (Claude Code agent swarm system) through the OverClaw HTTP gateway on port 18800. nanobot handles task intake and orchestration; overstory handles all subagent creation, coordination, worktree management, and execution.
Architecture
┌─────────────────────────────────────────────────────────────┐
│ nanobot │
│ (Ollama Mistral orchestrator — task intake & routing) │
└──────────────────────┬──────────────────────────────────────┘
│ task_router.py
│ (classify → capability → overstory format)
▼
┌─────────────────────────────────────────────────────────────┐
│ nanobot-overstory Bridge │
│ │
│ ┌──────────────┐ ┌────────────────┐ ┌────────────────┐ │
│ │ task_router │ │ session_bridge │ │ memory_sync │ │
│ │ .py │ │ .py │ │ .py │ │
│ │ │ │ │ │ │ │
│ │ route_task() │ │ create_mapping │ │ sync_to_over() │ │
│ │ translate() │ │ get_agent() │ │ sync_from() │ │
│ │ capability() │ │ cleanup() │ │ prune() │ │
│ └──────┬───────┘ └───────┬────────┘ └───────┬────────┘ │
│ │ │ │ │
│ └──────────┬───────┴────────────────────┘ │
│ │ │
│ overstory_client.py │
│ (subprocess wrapper around `overstory` CLI) │
└────────────────────┬────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ overstory │
│ (Claude Code agent swarm — subagent lifecycle & execution) │
│ │
│ coordinator → supervisor → agents (worktrees) │
│ mail system, merge, inspect, status │
└─────────────────────────────────────────────────────────────┘
Components
overstory_client.py
Python wrapper around the overstory CLI binary. Provides a clean OverstoryClient class with methods for every overstory operation: sling, status, inspect, mail_send, mail_read, coordinator_start, supervisor_start, merge, and list_agents.
task_router.py
Translates nanobot task descriptions into overstory-compatible formats. Maps task intent to overstory capabilities:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-austindixson-nanobot-overstory-bridge": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
what-just-happened
When the gateway comes back online, check recent logs and post a short message about what happened (restart, SIGUSR1, auth change, reconnect). User sees the response in TUI or Telegram.
agent-loops
Multi-agent workflow orchestrator. Use when the user asks to build, create, make, ship, develop, or launch any software (apps, webapps, websites, mobile apps, APIs, tools, bots, dashboards, SaaS, MVPs); fix or debug bugs; review or audit code; research topics; refactor code; or publish skills.
composio-composer-xskill
Enables posting tweets to Twitter/X through Composio's integration platform via HTTP and BeautifulSoup. Use when posting tweets or integrating with Composio.
creative-agents
Integration scripts for the creative agent swarm managed by overstory (Claude Code). Use when configuring or running researcher, social media, blog, or scribe agents.
skill-doc-formatter
Formats SKILL.md (OpenClaw/Cursor skill docs) for optimal display on ClawHub. Produces a consistent structure—Description, Installation, Usage with benefit-focused examples, and Commands—so skill pages are clear and scannable.