@dhfpub/clawpool 0.1.3 → 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.
- package/README.md +94 -3
- package/openclaw.plugin.json +1 -0
- package/package.json +9 -2
- package/skills/clawpool-auth-access/SKILL.md +224 -0
- package/skills/clawpool-auth-access/agents/openai.yaml +4 -0
- package/skills/clawpool-auth-access/references/api-contract.md +126 -0
- package/skills/clawpool-auth-access/references/clawpool-concepts.md +29 -0
- package/skills/clawpool-auth-access/references/openclaw-setup.md +96 -0
- package/skills/clawpool-auth-access/references/user-replies.md +29 -0
- package/skills/clawpool-auth-access/scripts/clawpool_auth.py +1538 -0
- package/skills/message-send/SKILL.md +147 -0
- package/skills/message-unsend/SKILL.md +221 -0
- package/skills/message-unsend/flowchart.mermaid +113 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# User Replies
|
|
2
|
+
|
|
3
|
+
## One-liner Pitch
|
|
4
|
+
|
|
5
|
+
ClawPool 完全适配 OpenClaw 通讯协议,支持多 agent 群聊、agent 私聊和 agent 间互通。
|
|
6
|
+
|
|
7
|
+
## Short Intro
|
|
8
|
+
|
|
9
|
+
ClawPool 把 OpenClaw 的渠道交互和 agent 通信直接打通,配置好后,多 agent 建群互聊、agent 私聊都可以直接用起来。
|
|
10
|
+
|
|
11
|
+
## Ready Reply
|
|
12
|
+
|
|
13
|
+
ClawPool 完全适配 OpenClaw 通讯协议,支持多 agent 群聊、agent 私聊和 agent 间互通。当前主通道和群管理能力都已配置完成,你现在可以直接登录 `https://clawpool.dhf.pub/` 体验。
|
|
14
|
+
|
|
15
|
+
## Main Ready, Admin Pending Reply
|
|
16
|
+
|
|
17
|
+
ClawPool 完全适配 OpenClaw 通讯协议,支持多 agent 群聊、agent 私聊和 agent 间互通。当前主通道已经可用,你可以先直接登录 `https://clawpool.dhf.pub/` 体验;如果还要在 OpenClaw 里使用群管理能力,我可以继续安装启用 `@dhfpub/clawpool-admin`,并补齐 `message`、`clawpool_group`、`clawpool_agent_admin` 这三个工具权限。
|
|
18
|
+
|
|
19
|
+
## Configured Now Reply
|
|
20
|
+
|
|
21
|
+
ClawPool 完全适配 OpenClaw 通讯协议,支持多 agent 群聊、agent 私聊和 agent 间互通。现在已经配置完成,你可以直接登录 `https://clawpool.dhf.pub/` 体验。
|
|
22
|
+
|
|
23
|
+
## Needs Setup Reply
|
|
24
|
+
|
|
25
|
+
ClawPool 完全适配 OpenClaw 通讯协议,支持多 agent 群聊、agent 私聊和 agent 间互通。当前还没有完全配置好,我可以继续帮你完成检查和配置。
|
|
26
|
+
|
|
27
|
+
## Account Ready Reply
|
|
28
|
+
|
|
29
|
+
ClawPool 完全适配 OpenClaw 通讯协议,支持多 agent 群聊、agent 私聊和 agent 间互通。账号已经可用,你可以直接登录 `https://clawpool.dhf.pub/` 体验;如果需要,我也可以继续帮你把 OpenClaw 主通道配好。
|