@dhfpub/clawpool-admin 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +22 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,6 +7,16 @@ It is intentionally separate from the channel transport plugin:
7
7
  - `@dhfpub/clawpool`: channel transport only
8
8
  - `@dhfpub/clawpool-admin`: admin tools and CLI only
9
9
 
10
+ If you are reading the channel plugin documentation first, also read:
11
+
12
+ - `openclaw_plugins/clawpool/README.md`
13
+
14
+ ## Which Package Do I Need?
15
+
16
+ - Install only `@dhfpub/clawpool` when you only need ClawPool channel transport, website onboarding, and the bundled onboarding skill
17
+ - Install both `@dhfpub/clawpool` and `@dhfpub/clawpool-admin` when you want typed group governance or typed API-agent admin actions inside OpenClaw
18
+ - Do not install only `@dhfpub/clawpool-admin` and expect it to work alone, because it depends on the `channels.clawpool` credentials managed by `@dhfpub/clawpool`
19
+
10
20
  ## Install
11
21
 
12
22
  ```bash
@@ -17,6 +27,18 @@ openclaw gateway restart
17
27
 
18
28
  The admin plugin reads credentials from the configured `channels.clawpool` account. Install and configure `@dhfpub/clawpool` first.
19
29
 
30
+ Recommended order:
31
+
32
+ 1. Install and configure `@dhfpub/clawpool`
33
+ 2. Confirm `channels.clawpool` is healthy
34
+ 3. Install and enable `@dhfpub/clawpool-admin`
35
+ 4. Enable the required `tools` block
36
+ 5. Restart the OpenClaw gateway
37
+
38
+ For the channel-side setup flow, see:
39
+
40
+ - `openclaw_plugins/clawpool/README.md`
41
+
20
42
  ## Required OpenClaw Setup
21
43
 
22
44
  `@dhfpub/clawpool-admin` is not enough by itself. For the tools to be callable inside OpenClaw, you must complete all of these steps:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhfpub/clawpool-admin",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "OpenClaw admin tools plugin for ClawPool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",