Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
165 lines
6.5 KiB
Markdown
165 lines
6.5 KiB
Markdown
---
|
|
summary: "ClickClack bot-token channel setup and target syntax"
|
|
read_when:
|
|
- Connecting OpenClaw to a ClickClack workspace
|
|
- Testing ClickClack bot identities
|
|
title: "ClickClack"
|
|
---
|
|
|
|
ClickClack connects OpenClaw to a self-hosted ClickClack workspace through first-class ClickClack bot tokens.
|
|
|
|
Use this when you want an OpenClaw agent to appear as a ClickClack bot user. ClickClack supports independent service bots and user-owned bots; user-owned bots keep an `owner_user_id` and receive only the token scopes you grant.
|
|
|
|
## Quick setup
|
|
|
|
Create a bot token on the ClickClack server:
|
|
|
|
```bash
|
|
clickclack admin bot create \
|
|
--workspace <workspace_id> \
|
|
--name "OpenClaw" \
|
|
--handle openclaw \
|
|
--scopes bot:write \
|
|
--plain
|
|
```
|
|
|
|
For a user-owned bot, add `--owner <user_id>`.
|
|
|
|
Configure OpenClaw:
|
|
|
|
```json5
|
|
{
|
|
channels: {
|
|
clickclack: {
|
|
enabled: true,
|
|
baseUrl: "https://clickclack.example.com",
|
|
token: { source: "env", provider: "default", id: "CLICKCLACK_BOT_TOKEN" },
|
|
workspace: "default",
|
|
defaultTo: "channel:general",
|
|
},
|
|
},
|
|
}
|
|
```
|
|
|
|
Then run:
|
|
|
|
```bash
|
|
export CLICKCLACK_BOT_TOKEN="ccb_..."
|
|
openclaw gateway
|
|
```
|
|
|
|
An account counts as configured only when `baseUrl`, `token`, and `workspace` are all set. `workspace` accepts a workspace id (`wsp_...`), slug, or name; the gateway resolves it to the id at startup.
|
|
|
|
### Account config keys
|
|
|
|
| Key | Default | Notes |
|
|
| ----------------------- | ------------------- | --------------------------------------------------------------------------------------- |
|
|
| `baseUrl` | none (required) | ClickClack server URL. |
|
|
| `token` | none (required) | Plain string or secret ref (`source: "env" \| "file" \| "exec"`). |
|
|
| `workspace` | none (required) | Workspace id, slug, or name. |
|
|
| `replyMode` | `"agent"` | `"agent"` runs the full agent pipeline; `"model"` sends short direct model completions. |
|
|
| `defaultTo` | `"channel:general"` | Target used when an outbound path gives no target. |
|
|
| `allowFrom` | `["*"]` | User-id allowlist for inbound DMs and channel messages. |
|
|
| `botUserId` | auto-detected | Resolved from the bot token identity at startup. |
|
|
| `agentId` | route default | Pin this account's inbound messages to one agent. |
|
|
| `toolsAllow` | none | Tool allowlist for agent replies from this account. |
|
|
| `model`, `systemPrompt` | none | Used by `replyMode: "model"` completions. |
|
|
| `reconnectMs` | `1500` | Realtime reconnect delay (100 to 60000). |
|
|
|
|
If `plugins.allow` is a non-empty restrictive list, explicitly selecting
|
|
ClickClack in channel setup or running `openclaw plugins enable clickclack`
|
|
appends `clickclack` to that list. Onboarding installation uses the same
|
|
explicit-selection behavior. These paths do not override `plugins.deny` or a
|
|
global `plugins.enabled: false` setting. Direct
|
|
`openclaw plugins install @openclaw/clickclack` follows the normal
|
|
plugin-install policy and also records ClickClack in an existing allowlist.
|
|
|
|
## Multiple bots
|
|
|
|
Each account opens its own ClickClack realtime connection and uses its own bot token.
|
|
|
|
```json5
|
|
{
|
|
channels: {
|
|
clickclack: {
|
|
enabled: true,
|
|
baseUrl: "https://clickclack.example.com",
|
|
defaultAccount: "service",
|
|
accounts: {
|
|
service: {
|
|
token: { source: "env", provider: "default", id: "CLICKCLACK_SERVICE_BOT_TOKEN" },
|
|
workspace: "default",
|
|
defaultTo: "channel:general",
|
|
agentId: "service-bot",
|
|
},
|
|
support: {
|
|
token: { source: "env", provider: "default", id: "CLICKCLACK_SUPPORT_BOT_TOKEN" },
|
|
workspace: "default",
|
|
defaultTo: "dm:usr_...",
|
|
agentId: "support-bot",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
```
|
|
|
|
## Reply modes
|
|
|
|
- `replyMode: "agent"` (default) dispatches inbound messages through the normal agent pipeline, including session recording and tool policy.
|
|
- `replyMode: "model"` skips the agent pipeline and uses the plugin runtime's `llm.complete` for short direct bot replies (optionally shaped by `model` and `systemPrompt`).
|
|
|
|
Model mode runs completions against the resolved bot agent id, which requires
|
|
the explicit `plugins.entries.clickclack.llm.allowAgentIdOverride: true` trust
|
|
bit:
|
|
|
|
```json5
|
|
{
|
|
plugins: {
|
|
entries: {
|
|
clickclack: {
|
|
llm: {
|
|
allowAgentIdOverride: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
```
|
|
|
|
Keep the trust bit off if you only use the default `agent` reply mode; it is
|
|
not needed there.
|
|
|
|
## Targets
|
|
|
|
- `channel:<name-or-id>` sends to a workspace channel. Bare targets default to `channel:`.
|
|
- `dm:<user_id>` creates or reuses a direct conversation with that user.
|
|
- `thread:<message_id>` replies in the thread rooted at that message.
|
|
|
|
Explicit outbound targets may also carry the `clickclack:` or `cc:` provider prefix.
|
|
|
|
Examples:
|
|
|
|
```bash
|
|
openclaw message send --channel clickclack --target channel:general --message "hello"
|
|
openclaw message send --channel clickclack --target dm:usr_123 --message "hello"
|
|
openclaw message send --channel clickclack --target thread:msg_123 --message "following up"
|
|
```
|
|
|
|
## Permissions
|
|
|
|
ClickClack token scopes are enforced by the ClickClack API.
|
|
|
|
- `bot:read`: read workspace/channel/message/thread/DM/realtime/profile data.
|
|
- `bot:write`: `bot:read` plus channel messages, thread replies, DMs, and uploads.
|
|
- `bot:admin`: `bot:write` plus channel creation.
|
|
|
|
OpenClaw only needs `bot:write` for normal agent chat.
|
|
|
|
## Troubleshooting
|
|
|
|
- `ClickClack is not configured for account "<id>"`: set `baseUrl`, `token` (for example via `CLICKCLACK_BOT_TOKEN`), and `workspace` for that account.
|
|
- `ClickClack workspace not found: <value>`: set `workspace` to the workspace id, slug, or name returned by ClickClack.
|
|
- No inbound replies: confirm the token has realtime read access and note that the bot ignores its own messages and messages from other bots.
|
|
- Channel sends fail: verify the bot is a member of the workspace and has `bot:write`.
|