kv1nt-agents 0.1.2 → 0.1.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/dist-server/server.mjs +1 -1
- package/package.json +1 -2
package/dist-server/server.mjs
CHANGED
|
@@ -748667,7 +748667,7 @@ var init_WebSocketManager = __esm({
|
|
|
748667
748667
|
for (const [ws2, clientInfo] of this.clients) {
|
|
748668
748668
|
if (this.isClientTimeout(clientInfo, now)) {
|
|
748669
748669
|
console.log("[WebSocketManager] Client heartbeat timeout, closing connection");
|
|
748670
|
-
ws2.close(WEBSOCKET_CONFIG.CLOSE_CODES.
|
|
748670
|
+
ws2.close(WEBSOCKET_CONFIG.CLOSE_CODES.NORMAL_CLOSURE, "Heartbeat timeout");
|
|
748671
748671
|
this.clients.delete(ws2);
|
|
748672
748672
|
continue;
|
|
748673
748673
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kv1nt-agents",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "kv1nt Agents - Control local AI agents from your browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"debug:mcp:validate": "bunx tsx scripts/debug-mcp.ts validate",
|
|
71
71
|
"debug:custom-agent": "bunx tsx scripts/debug-custom-agent.ts",
|
|
72
72
|
"test:e2e": "playwright test --config playwright.config.ts",
|
|
73
|
-
"prepare": "husky",
|
|
74
73
|
"test:packaged:bun": "vitest run tests/integration/bundled-bun-packaged.test.ts",
|
|
75
74
|
"test:bun": "bun test src/process/services/database/drivers/*.bun.test.ts",
|
|
76
75
|
"server:start": "NODE_ENV=development bun dist-server/server.mjs",
|