Prerequisites
- An OpenComputer API key from app.opencomputer.dev
- The oc CLI installed and configured
- Telegram installed on your phone or desktop (download here)
Install the CLI
Install theoc binary from the CLI installation guide.
Step 1: Create the agent
running before proceeding. Provisioning typically takes 20-30 seconds.
Step 2: Create a Telegram bot
Open this link to BotFather in Telegram (or search for@BotFather in the app). Then:
- Tap Start if it’s your first time
- Send
/newbot - Enter a display name when prompted (e.g. “My OpenClaw Agent”)
- Enter a username — must end in
bot(e.g.my_claw_test_bot) - BotFather replies with a token like
110201543:AAHdqTcvCH1vGWJxfSeofSAs0K5PALDsaw— copy it
Step 3: Connect Telegram
Step 4: Chat with your agent
Open Telegram, find your bot by its username, and send a message. The agent responds using Claude (via OpenRouter).Shell access
You can shell into the agent’s sandbox at any time:Cleanup
Disconnect the channel and delete the agent:OpenClaw vs Hermes
Both cores support the same user journey (create / connect / install). The differences are under the hood:
| Hermes | OpenClaw | |
|---|---|---|
| Config format | YAML | JSON5 |
| Config reload | Gateway restart | Hot-reload (file watcher) |
| Channel support | One at a time, adapter-configured | 6 built-in + 20 plugin channels |
| Plugin model | Skills (files) + MCP | Rich plugin SDK with manifests |
| MCP support | mcp_servers in YAML | mcp.servers in JSON5 |
What’s next
- Install gbrain for persistent memory:
oc agent install my-claw gbrain - Create a Hermes Agent — try the other managed core
- Custom cores — bring your own agent runtime with
oc shelland the raw sandbox API