-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
111 lines (111 loc) · 4.49 KB
/
openclaw.plugin.json
File metadata and controls
111 lines (111 loc) · 4.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"id": "timbot-ws",
"name": "Tencent IM",
"description": "Clawdbot Tencent Cloud IM intelligent bot channel plugin",
"version": "2026.3.24",
"channels": ["timbot-ws"],
"channelEnvVars": {
"timbot-ws": ["TIM_SDK_APPID", "TIM_USER_ID", "TIM_USER_SIG"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
},
"channelConfigs": {
"timbot-ws": {
"schema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": { "type": "string" },
"enabled": { "type": "boolean" },
"sdkAppId": { "type": "string" },
"userId": { "type": "string" },
"userSig": { "type": "string" },
"welcomeText": { "type": "string" },
"typingText": { "type": "string" },
"typingDelayMs": { "type": "number", "minimum": 0 },
"streamingMode": { "type": "string", "enum": ["off", "custom_modify", "text_modify", "tim_stream"] },
"fallbackPolicy": { "type": "string", "enum": ["strict", "final_text"] },
"overflowPolicy": { "type": "string", "enum": ["stop", "split"] },
"chunkMode": { "type": "string" },
"historyLimit": { "type": "number", "minimum": 0, "description": "Max group chat context messages to buffer (0 = disabled)" },
"dm": {
"type": "object",
"properties": {
"enabled": { "type": "boolean" },
"policy": { "type": "string", "enum": ["pairing", "allowlist", "open", "disabled"] },
"allowFrom": {
"type": "array",
"items": { "oneOf": [{ "type": "string" }, { "type": "number" }] }
}
},
"additionalProperties": false
},
"defaultAccount": { "type": "string" },
"accounts": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"name": { "type": "string" },
"enabled": { "type": "boolean" },
"sdkAppId": { "type": "string" },
"userId": { "type": "string" },
"userSig": { "type": "string" },
"welcomeText": { "type": "string" },
"typingText": { "type": "string" },
"typingDelayMs": { "type": "number", "minimum": 0 },
"streamingMode": { "type": "string", "enum": ["off", "custom_modify", "text_modify", "tim_stream"] },
"fallbackPolicy": { "type": "string", "enum": ["strict", "final_text"] },
"overflowPolicy": { "type": "string", "enum": ["stop", "split"] },
"chunkMode": { "type": "string" },
"historyLimit": { "type": "number", "minimum": 0, "description": "Max group chat context messages to buffer (0 = disabled)" },
"dm": {
"type": "object",
"properties": {
"enabled": { "type": "boolean" },
"policy": { "type": "string", "enum": ["pairing", "allowlist", "open", "disabled"] },
"allowFrom": {
"type": "array",
"items": { "oneOf": [{ "type": "string" }, { "type": "number" }] }
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"label": "Tencent IM",
"description": "Tencent Cloud IM bot via WebSocket SDK. Zero-config deployment - no public IP needed.",
"uiHints": {
"channels.timbot-ws.sdkAppId": {
"label": "SDK App ID",
"placeholder": "Your Tencent IM SDK App ID"
},
"channels.timbot-ws.userId": {
"label": "User ID",
"placeholder": "Bot user ID"
},
"channels.timbot-ws.userSig": {
"label": "User Sig",
"sensitive": true,
"placeholder": "Authentication signature"
},
"channels.timbot-ws.streamingMode": {
"label": "Streaming Mode",
"help": "off: no streaming; custom_modify: custom message modify; text_modify: text message modify; tim_stream: TIM native streaming"
},
"channels.timbot-ws.welcomeText": {
"label": "Welcome Text",
"placeholder": "Welcome message for new conversations"
}
}
}
}
}