helmpilot 0.4.3 → 0.4.4
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/index.ts +1 -1
- package/package.json +5 -4
package/index.ts
CHANGED
|
@@ -51,7 +51,7 @@ export default definePluginEntry({
|
|
|
51
51
|
api.registerChannel({ plugin: helmpilotPlugin });
|
|
52
52
|
|
|
53
53
|
// ── Timeout helper for client-blocking tool calls ──
|
|
54
|
-
const FILE_TOOL_TIMEOUT_MS =
|
|
54
|
+
const FILE_TOOL_TIMEOUT_MS = 120_000;
|
|
55
55
|
|
|
56
56
|
function waitForClientResponse(toolCallId: string, params: unknown, timeoutMs: number): Promise<string> {
|
|
57
57
|
const pendingMap = getPendingMap();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "helmpilot",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "Helmpilot desktop channel plugin for OpenClaw — interactive tools and gateway RPC bridge",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"blurb": "Connect to the Helmpilot desktop AI assistant client"
|
|
25
25
|
},
|
|
26
26
|
"compat": {
|
|
27
|
-
"pluginApi": ">=2026.
|
|
28
|
-
"minGatewayVersion": "2026.
|
|
27
|
+
"pluginApi": ">=2026.4.2",
|
|
28
|
+
"minGatewayVersion": "2026.4.2"
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"@types/ws": ">=8.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@types/ws": "^8.18.1"
|
|
36
|
+
"@types/ws": "^8.18.1",
|
|
37
|
+
"openclaw": "2026.4.2"
|
|
37
38
|
}
|
|
38
39
|
}
|