lightclawbot 1.2.0-beta.3 → 1.2.3
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/openclaw.plugin.json +77 -3
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -1,10 +1,84 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "lightclawbot",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
3
|
+
"name": "LightClawBot",
|
|
4
|
+
"description": "Connect OpenClaw to your LightClawBot via WebSocket long-connection",
|
|
5
|
+
"kind": "channel",
|
|
6
|
+
"channels": [
|
|
7
|
+
"lightclawbot"
|
|
8
|
+
],
|
|
9
|
+
"skills": [
|
|
10
|
+
"./skills"
|
|
11
|
+
],
|
|
5
12
|
"configSchema": {
|
|
6
13
|
"type": "object",
|
|
7
14
|
"additionalProperties": false,
|
|
8
15
|
"properties": {}
|
|
16
|
+
},
|
|
17
|
+
"channelConfigs": {
|
|
18
|
+
"lightclawbot": {
|
|
19
|
+
"label": "LightClawBot",
|
|
20
|
+
"description": "Connect OpenClaw to your LightClawBot via WebSocket long-connection",
|
|
21
|
+
"schema": {
|
|
22
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
23
|
+
"type": "object",
|
|
24
|
+
"additionalProperties": true,
|
|
25
|
+
"properties": {
|
|
26
|
+
"enabled": {
|
|
27
|
+
"type": "boolean",
|
|
28
|
+
"description": "Whether this channel is enabled."
|
|
29
|
+
},
|
|
30
|
+
"name": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"description": "Human-readable account/channel name."
|
|
33
|
+
},
|
|
34
|
+
"dmPolicy": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"enum": ["open", "allowlist", "disabled"],
|
|
37
|
+
"description": "Policy that controls who can DM the bot."
|
|
38
|
+
},
|
|
39
|
+
"allowFrom": {
|
|
40
|
+
"type": "array",
|
|
41
|
+
"items": { "type": "string" },
|
|
42
|
+
"description": "Allowlist of user IDs ('*' means everyone)."
|
|
43
|
+
},
|
|
44
|
+
"systemPrompt": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"description": "Custom system prompt applied to this account."
|
|
47
|
+
},
|
|
48
|
+
"defaultAccount": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"description": "Default account id to use when none is specified."
|
|
51
|
+
},
|
|
52
|
+
"accounts": {
|
|
53
|
+
"type": "object",
|
|
54
|
+
"description": "Per-account configuration keyed by account id (typically the uin).",
|
|
55
|
+
"additionalProperties": {
|
|
56
|
+
"type": "object",
|
|
57
|
+
"additionalProperties": false,
|
|
58
|
+
"properties": {
|
|
59
|
+
"enabled": { "type": "boolean" },
|
|
60
|
+
"name": { "type": "string" },
|
|
61
|
+
"apiKey": { "type": "string" },
|
|
62
|
+
"apiBaseUrl": { "type": "string" },
|
|
63
|
+
"dmPolicy": {
|
|
64
|
+
"type": "string",
|
|
65
|
+
"enum": ["open", "allowlist", "disabled"]
|
|
66
|
+
},
|
|
67
|
+
"allowFrom": {
|
|
68
|
+
"type": "array",
|
|
69
|
+
"items": { "type": "string" }
|
|
70
|
+
},
|
|
71
|
+
"systemPrompt": { "type": "string" }
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"contracts": {
|
|
80
|
+
"tools": [
|
|
81
|
+
"lightclaw_upload_file"
|
|
82
|
+
]
|
|
9
83
|
}
|
|
10
|
-
}
|
|
84
|
+
}
|