Skip to main content

Documentation Index

Fetch the complete documentation index at: https://opensandbox-feat-cf-dev-cutover.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

A managed agent on OpenComputer is a core plus the channels and packages you bolt onto it. Pick a runtime, connect the messaging platforms you want, install the capabilities you need.
ManagedAgent = Core + Channels + Packages + Secrets

Cores

The AI runtime that powers your agent. OpenComputer ships two blessed cores:
CoreWhat you get
hermesSelf-improving agent with skill creation, memory, multi-channel gateway, browser, code execution
openclawMulti-channel AI gateway with plugin SDK, native MCP support, hot-reload config
Picking a core is the one decision that matters most — it determines the agent’s capabilities, config model, and extension surface.

Packages

Stateful extensions beyond the core — installed via oc agent install. Packages can provision infrastructure (managed databases, vector stores) and wire it into the agent transparently.
PackageWhat it adds
gbrainPersistent memory — 34 MCP tools for pages, vector search, graph, timeline, files. Backed by a managed Postgres database.

Channels

Messaging platforms connected to your agent.
ChannelHow it works
telegramWebhook-based. Messages flow through the OpenComputer gateway to your agent and back.

Three commands to a running agent

oc agent create my-agent --core hermes       # boot an agent
oc agent connect my-agent telegram           # connect Telegram
oc agent install my-agent gbrain             # add persistent memory

Two ways to interact

Everything you can do with the CLI you can do with the REST API, and vice versa.

CLI

oc agent commands — create, connect, install, inspect

REST API

HTTP endpoints for agents, instances, sessions

Agents, instances, sessions

An agent is configuration. Its actual compute runs in one of two modes:
ConceptWhat it isUse case
AgentConfiguration — core, snapshot, entrypoint, secretsDefine once, reuse
InstancePersistent sandbox, hibernates/wakes, multiplexes conversationsAI coworkers on Slack, Teams, Telegram
SessionEphemeral sandbox, runs to completionBatch jobs, webhook handlers
Managed agents (those with a core) get an instance automatically on creation. Raw agents — which have no core and use your own snapshot and entrypoint — create instances or sessions explicitly via the REST API. Managed and raw agents coexist on the same platform.

Authentication

All requests require an OpenComputer API key via X-API-Key header or --api-key CLI flag.
X-API-Key: osb_your_api_key
Base URL for REST: https://api.opencomputer.dev