claw-control-center 0.1.13 → 0.1.15
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/.codebuddy-plugin/plugin.json +18 -0
- package/.mcp.json +23 -0
- package/openclaw.plugin.json +27 -0
- package/package.json +4 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "53aihub-workbuddy",
|
|
3
|
+
"version": "0.1.13",
|
|
4
|
+
"description": "53AIHub Channel plugin for WorkBuddy and CodeBuddy.",
|
|
5
|
+
"description_en": "Bridge 53AIHub WebSocket chat messages into WorkBuddy/CodeBuddy channels and reply through MCP.",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "53AI"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://www.53ai.com",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"53aihub",
|
|
13
|
+
"workbuddy",
|
|
14
|
+
"codebuddy",
|
|
15
|
+
"channel",
|
|
16
|
+
"mcp"
|
|
17
|
+
]
|
|
18
|
+
}
|
package/.mcp.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"53aihub-channel": {
|
|
4
|
+
"command": "node",
|
|
5
|
+
"args": [
|
|
6
|
+
"dist/workbuddy-supervisor.cjs"
|
|
7
|
+
],
|
|
8
|
+
"env": {
|
|
9
|
+
"HUB53AI_WS_URL": "",
|
|
10
|
+
"HUB53AI_BOT_ID": "",
|
|
11
|
+
"HUB53AI_SECRET": "",
|
|
12
|
+
"HUB53AI_ACCESS_POLICY": "open",
|
|
13
|
+
"HUB53AI_ALLOW_FROM": "",
|
|
14
|
+
"HUB53AI_SEND_THINKING_MESSAGE": "true",
|
|
15
|
+
"HUB53AI_CHANNEL_ENTRY_PATH": "",
|
|
16
|
+
"HUB53AI_WORKBUDDY_HOME": "",
|
|
17
|
+
"HUB53AI_WORKBUDDY_WORKSPACE": "",
|
|
18
|
+
"HUB53AI_WORKBUDDY_HISTORY_SCOPE": "all",
|
|
19
|
+
"HUB53AI_WORKBUDDY_SESSION_ID": "53aihub-workbuddy-shared"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
package/openclaw.plugin.json
CHANGED
|
@@ -87,6 +87,33 @@
|
|
|
87
87
|
"maxReconnectAttempts": {
|
|
88
88
|
"type": "number",
|
|
89
89
|
"default": 10
|
|
90
|
+
},
|
|
91
|
+
"detectCreatedFiles": {
|
|
92
|
+
"type": "boolean",
|
|
93
|
+
"default": true,
|
|
94
|
+
"description": "When true, scan local workspace directories before and after each 53AIHub run and return newly created files as output_files."
|
|
95
|
+
},
|
|
96
|
+
"fileWorkspaceDirs": {
|
|
97
|
+
"type": "array",
|
|
98
|
+
"items": {
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
"description": "Optional workspace directories to scan for newly created output files. Inferred QClaw/OpenClaw workspaces are also used when available."
|
|
102
|
+
},
|
|
103
|
+
"createdFilesMaxFileBytes": {
|
|
104
|
+
"type": "number",
|
|
105
|
+
"default": 10485760
|
|
106
|
+
},
|
|
107
|
+
"createdFilesMaxCount": {
|
|
108
|
+
"type": "number",
|
|
109
|
+
"default": 20
|
|
110
|
+
},
|
|
111
|
+
"createdFilesExclude": {
|
|
112
|
+
"type": "array",
|
|
113
|
+
"items": {
|
|
114
|
+
"type": "string"
|
|
115
|
+
},
|
|
116
|
+
"description": "Glob-like path patterns excluded from local output file detection."
|
|
90
117
|
}
|
|
91
118
|
}
|
|
92
119
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claw-control-center",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
12
|
"openclaw.plugin.json",
|
|
13
|
+
".codebuddy-plugin",
|
|
14
|
+
".mcp.json",
|
|
13
15
|
"bin",
|
|
14
16
|
"web-dist",
|
|
15
17
|
"hermes"
|
|
@@ -24,6 +26,7 @@
|
|
|
24
26
|
},
|
|
25
27
|
"devDependencies": {
|
|
26
28
|
"@inquirer/prompts": "^8.5.2",
|
|
29
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
27
30
|
"@types/node": "^24.10.1",
|
|
28
31
|
"@types/ws": "^8.18.1",
|
|
29
32
|
"openclaw": "2026.5.18",
|