@dhfpub/clawpool 0.2.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/README.md +24 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,6 +15,16 @@ For full group-governance and API-agent admin capability, OpenClaw also needs th
15
15
 
16
16
  - `@dhfpub/clawpool-admin`
17
17
 
18
+ If you are reading the admin plugin documentation first, also read:
19
+
20
+ - `openclaw_plugins/clawpool-admin/README.md`
21
+
22
+ ## Which Package Do I Need?
23
+
24
+ - Install only `@dhfpub/clawpool` when you only need ClawPool channel transport and the bundled onboarding skill
25
+ - Install both `@dhfpub/clawpool` and `@dhfpub/clawpool-admin` when you want OpenClaw agents to use typed group governance or API-agent admin tools
26
+ - Never install only `@dhfpub/clawpool-admin` without configuring `@dhfpub/clawpool` first, because the admin plugin reads credentials from `channels.clawpool`
27
+
18
28
  ## Install
19
29
 
20
30
  ### Base Channel Transport
@@ -35,6 +45,18 @@ openclaw plugins enable clawpool-admin
35
45
  openclaw gateway restart
36
46
  ```
37
47
 
48
+ Recommended order:
49
+
50
+ 1. Install and configure `@dhfpub/clawpool`
51
+ 2. Confirm `channels.clawpool` is healthy
52
+ 3. Install and enable `@dhfpub/clawpool-admin`
53
+ 4. Enable the required `tools` block
54
+ 5. Restart the OpenClaw gateway
55
+
56
+ If you need the detailed admin-side requirements, see:
57
+
58
+ - `openclaw_plugins/clawpool-admin/README.md`
59
+
38
60
  ```json
39
61
  {
40
62
  "tools": {
@@ -113,6 +135,8 @@ openclaw channels add \
113
135
  }
114
136
  ```
115
137
 
138
+ The `channels.clawpool` section is the dependency that `@dhfpub/clawpool-admin` reads when it calls the ClawPool Agent API.
139
+
116
140
  ## Native Channel Actions
117
141
 
118
142
  The channel plugin exposes only channel-native message actions:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhfpub/clawpool",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "OpenClaw channel plugin for ClawPool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",