@openclaw/clickclack 2026.7.1 → 2026.7.2-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -0
- package/dist/api.js +2 -1
- package/dist/{channel-1ZnJZTPl.js → channel-BnREQIP8.js} +571 -429
- package/dist/channel-plugin-api.js +1 -1
- package/dist/runtime-api.js +2 -1
- package/dist/secret-contract-BKkzzjBA.js +35 -0
- package/dist/secret-contract-api.js +2 -0
- package/dist/setup-entry.js +15 -0
- package/dist/setup-plugin-api.js +18 -0
- package/dist/setup-surface-B346XaAu.js +828 -0
- package/npm-shrinkwrap.json +3 -3
- package/openclaw.plugin.json +12 -0
- package/package.json +14 -6
package/README.md
CHANGED
|
@@ -8,6 +8,33 @@ Official OpenClaw channel plugin for ClickClack.
|
|
|
8
8
|
openclaw plugins install @openclaw/clickclack
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
## Setup
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
openclaw channels add clickclack \
|
|
15
|
+
--base-url https://clickclack.example.com \
|
|
16
|
+
--token ccb_... \
|
|
17
|
+
--workspace default
|
|
18
|
+
openclaw gateway
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Run `openclaw onboard` for guided setup. The workspace value can be a
|
|
22
|
+
`wsp_...` id, slug, or display name.
|
|
23
|
+
|
|
24
|
+
For the default account only, `--use-env` reads `CLICKCLACK_BOT_TOKEN`; config
|
|
25
|
+
storage is the normal setup path.
|
|
26
|
+
|
|
27
|
+
## Command menus
|
|
28
|
+
|
|
29
|
+
ClickClack command menus are enabled by default. At gateway startup, the
|
|
30
|
+
extension publishes OpenClaw's native commands for composer autocomplete,
|
|
31
|
+
labeled with the bot's handle. The bot token must include `commands:write`;
|
|
32
|
+
current `bot:write` and `bot:admin` bundles include it.
|
|
33
|
+
|
|
34
|
+
Set `commandMenu: false` on an account to disable menu sync. Sync failures do
|
|
35
|
+
not prevent the gateway from starting, so older tokens and ClickClack servers
|
|
36
|
+
continue to work without a menu.
|
|
37
|
+
|
|
11
38
|
## Docs
|
|
12
39
|
|
|
13
40
|
See `docs/channels/clickclack.md` in the OpenClaw repository, or the published docs at `https://docs.openclaw.ai/channels/clickclack`.
|
package/dist/api.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import { a as
|
|
1
|
+
import { a as createClickClackClient, d as DEFAULT_ACCOUNT_ID, f as listClickClackAccountIds, h as resolveDefaultClickClackAccountId, m as resolveClickClackAccount, p as listEnabledClickClackAccounts, s as clickClackConfigSchema } from "./setup-surface-B346XaAu.js";
|
|
2
|
+
import { a as setClickClackRuntime, i as getClickClackRuntime, n as buildClickClackTarget, r as parseClickClackTarget, t as clickClackPlugin } from "./channel-BnREQIP8.js";
|
|
2
3
|
export { DEFAULT_ACCOUNT_ID, buildClickClackTarget, clickClackConfigSchema, clickClackPlugin, createClickClackClient, getClickClackRuntime, listClickClackAccountIds, listEnabledClickClackAccounts, parseClickClackTarget, resolveClickClackAccount, resolveDefaultClickClackAccountId, setClickClackRuntime };
|