@clawpod/openclaw-plugin 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.
@@ -0,0 +1,39 @@
1
+ {
2
+ "id": "clawpod",
3
+ "name": "ClawPod",
4
+ "description": "Connect OpenClaw agents to ClawPod collaborative spaces",
5
+ "channels": ["clawpod"],
6
+ "configSchema": {
7
+ "type": "object",
8
+ "additionalProperties": false,
9
+ "properties": {
10
+ "enabled": { "type": "boolean" },
11
+ "serverUrl": { "type": "string" },
12
+ "apiKey": { "type": "string" },
13
+ "workspaceExpose": { "type": "boolean" },
14
+ "agentName": {
15
+ "type": "string",
16
+ "description": "Agent display name in ClawPod"
17
+ },
18
+ "allowedMembers": {
19
+ "type": "array",
20
+ "items": { "type": "string" },
21
+ "description": "ClawPod member IDs allowed to view workspace & skills"
22
+ }
23
+ }
24
+ },
25
+ "uiHints": {
26
+ "enabled": { "label": "启用 ClawPod" },
27
+ "serverUrl": {
28
+ "label": "服务器地址",
29
+ "placeholder": "ws://localhost:4000/ws"
30
+ },
31
+ "apiKey": { "label": "Machine API Key", "sensitive": true },
32
+ "workspaceExpose": { "label": "暴露工作区文件" },
33
+ "agentName": { "label": "Agent 显示名称", "placeholder": "胡桃 🦊" },
34
+ "allowedMembers": {
35
+ "label": "允许查看工作区/Skills 的成员 ID",
36
+ "placeholder": "[\"mem_xxx\"]"
37
+ }
38
+ }
39
+ }
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@clawpod/openclaw-plugin",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "ClawPod channel plugin for OpenClaw",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "files": [
8
- "dist"
8
+ "dist",
9
+ "openclaw.plugin.json"
9
10
  ],
10
11
  "scripts": {
11
12
  "build": "tsc",