clawnexus 0.2.6 → 0.2.7
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/health/checker.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Health Checker — periodically pings known instances and updates status
|
|
3
|
-
// Enhanced with dual-channel connectivity detection
|
|
3
|
+
// Enhanced with dual-channel connectivity detection
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.HealthChecker = void 0;
|
|
6
6
|
const node_events_1 = require("node:events");
|
package/dist/mdns/listener.js
CHANGED
|
@@ -93,7 +93,7 @@ class MdnsListener extends node_events_1.EventEmitter {
|
|
|
93
93
|
// Fetch agent_id from the OpenClaw instance
|
|
94
94
|
const agentId = await this.fetchAgentId(address, port, txt["gatewayTls"] === "1");
|
|
95
95
|
if (!agentId) {
|
|
96
|
-
// Record unreachable instance for diagnostics
|
|
96
|
+
// Record unreachable instance for diagnostics
|
|
97
97
|
this.emit("mdns:unreachable", {
|
|
98
98
|
address,
|
|
99
99
|
port,
|
package/dist/registry/client.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// RegistryClient — HTTP client for ClawNexus
|
|
2
|
+
// RegistryClient — HTTP client for the ClawNexus public registry
|
|
3
3
|
// Handles register, resolve, getToken, checkName with signature and retry logic
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.RegistryClient = exports.RegistryError = void 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawnexus",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "ClawNexus daemon and CLI — AI instance registry for OpenClaw",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "alan-silverstreams <alan@silverstream.tech>",
|
|
@@ -24,6 +24,12 @@
|
|
|
24
24
|
],
|
|
25
25
|
"main": "dist/index.js",
|
|
26
26
|
"types": "dist/index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"default": "./dist/index.js"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
27
33
|
"bin": {
|
|
28
34
|
"clawnexus": "dist/cli/index.js"
|
|
29
35
|
},
|