Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

OpenClaw plugin exposing 0 skills.

Install to Claude Code

openclaw plugin add FroeMic/otto

Run in Claude Code. Add the marketplace first with /plugin marketplace add FroeMic/otto if you haven't already.

README.md

Otto – Your team's AI employee

A managed control plane for OpenClaw agent runtimes. Customers get a fully-managed AI agent they can connect to Slack, WhatsApp, and other channels — the operator handles all infrastructure, updates, security, and integrity; customers just use it.

  • Zero ops for customers — no runtime maintenance, no updates to manage
  • One control plane, many tenant runtimes — push config changes fleet-wide
  • Security via proxying — API keys and LLM calls never touch tenant servers
  • Agent self-modification — the agent can change its own config and skills via tool calls or the web UI

Architecture

flowchart TD
    Browser["Browser"]

    subgraph CP["Control Plane"]
        Web["apps/web\nHono SSR + React SPA"]
        API["apps/api\nHono RPC + Runtime Adapters"]
        Worker["apps/worker\nBackground Jobs"]
        DB[("Postgres")]
        Web -->|"Hono RPC"| API
        API --> DB
        Worker --> DB
        API -->|"job queue"| Worker
    end

    subgraph GW["Integration Gateway"]
        Gateway["apps/gateway\nIntegration Execute Proxy"]
    end

    subgraph VPS["Tenant VPS (per customer)"]
        Runtime["OpenClaw Runtime\n+ platform plugins"]
    end

    External["External Services\n(Slack, GitHub, Linear…)"]
    OpenAI["OpenAI"]

    Browser --> Web
    Worker -->|"SSH apply"| Runtime
    Runtime -->|"bearer token"| Gateway
    Gateway -->|"capability-checked"| External
    Runtime -->|"bearer token"| API
    API -->|"proxied"| OpenAI

The system has three planes. The control plane (apps/api, apps/web, apps/worker, Postgres) is the authoritative system — it manages tenants, owns all state, and serves the workspace UI. The integration gateway (apps/gateway) is an isolated proxy that routes agent tool calls to external services, enforcing capability policy set by the control plane. Tenant runtimes are OpenClaw instances running on provisioned VPS servers, extended with platform-specific plugins; they hold only a short-lived bearer token and make all outbound calls through the control plane.

Key flows:

  • Provisioning: Worker creates a Hetzner VPS, installs the custom runtime image, and applies managed config via SSH
  • Config apply: Control plane generates openclaw.json + skill files, SSH-pushes to the tenant server, runtime restarts with new state
  • Integration tool calls: Runtime → Gateway (bearer auth) → capability policy check → external service → result
  • AI calls: Runtime → ai-provider plugin → Control plane API → OpenAI (proxied; runtime never holds OpenAI keys)
  • Self-modification: Agent calls managed-config or managed-skills tools → control plane state updated → projected on next apply

Design Highlights

1. Control plane as source of truth — The control plane holds an authoritative snapshot of every tenant's config, installed skills, and runtime files. The tenant VPS is ephemeral; each apply cycle projects desired state onto it.

2. Integration gateway as capability firewall — All integration commands are proxied through an isolated gateway service. The control plane determines which commands each integration exposes to the agent; the runtime cannot invoke anything outside that policy.

3. LLM calls proxied, not delegated — The tenant runtime holds only a short-lived bearer token. All OpenAI calls are proxied through the control plane's API, which holds credentials and applies usage metering. The runtime never sees a raw API key.

4. Agent self-modification at runtime and via UI — The agent can install skills, modify its own prompt, and configure integrations via tool calls. The same mutations are available from the workspace UI. Both paths write through the same control plane state and are projected on the next apply.

5. Fleet-wide updates — Because all runtime config originates from the control plane, updating a model, adding a default skill, or changing system behavior for all tenants is a control-plane change followed by an apply cycle — no per-tenant manual work.

6. Single tool, any integration — The agent exposes one tool (execute_integration_command) that covers every connected integration. Commands are dynamically discoverable at runtime via find_integration_commands — the agent can search what's available and call it without hardcoded tool definitions per service. Adding a new integration to the control plane makes it immediately available to the agent.

Repository Layout

apps/

  • web/ — Hono SSR + React SPA: workspace UI (sessions, files, integrations, skills, billing, settings)
  • api/ — Control plane API: Hono RPC for web, webhooks, OAuth, and runtime HTTP adapters
  • gateway/ — Integration execute gateway: isolated proxy for agent tool calls
  • worker/ — Background job processor: VPS provisioning, config apply, sync, billing

packages/features/

runtime-plugins/

runtime-image/

  • Dockerfile — Extends upstream OpenClaw image with all platform plugins

Tech Stack

| Component | Choice | |---|---| | Runtime | Bun | | APIs | Hono (type-safe RPC) | | Frontend | React 19 + TanStack Router/Query + shadcn/ui + Tailwind | | Database | Postgres + Drizzle ORM | | Agent runtime | OpenClaw (extended via plugins) | | Cloud / VPS | Hetzner | | Auth | WorkOS | | Billing | Stripe | | Analytics | PostHog |

Getting Started

1. Install dependencies

bun install

2. Create your env file

cp .env.example .env

3. Start Postgres

docker compose -f docker-compose.yml up -d

4. Run migrations

bun run db:migrate

5. Start the services

bun run dev:all

Default local services:

  • apps/web: http://localhost:3000
  • apps/api: http://localhost:3002
  • apps/gateway: http://localhost:3001

Common Commands

bun run build:web
bun run build:api
bun run build:worker
bun run build:gateway

bun run test:web
bun run test:api
bun run test:worker
bun run test:gateway

Environment

Related plugins

Browse all →