@sesamespace/hivemind 0.8.9 → 0.8.10

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/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Cognitive architecture for AI agents with multi-layered memory, context isolation, and multi-machine fleet distribution.
4
4
 
5
+ _Updated by Caitlin 2026-03-01_
6
+
5
7
  ## Quick Start
6
8
 
7
9
  ### One-Command Install (recommended)
@@ -6,7 +6,7 @@ import {
6
6
  PRIMARY_ROUTES,
7
7
  SesameClient2 as SesameClient,
8
8
  WORKER_ROUTES
9
- } from "./chunk-CMPDA2UR.js";
9
+ } from "./chunk-OG6GPQDK.js";
10
10
 
11
11
  // packages/runtime/src/watchdog.ts
12
12
  import { execSync } from "child_process";
@@ -1048,4 +1048,4 @@ export {
1048
1048
  WorkerMemorySync,
1049
1049
  PrimaryMemorySync
1050
1050
  };
1051
- //# sourceMappingURL=chunk-AC6ETJUC.js.map
1051
+ //# sourceMappingURL=chunk-A5LMEJIN.js.map
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  Watchdog
3
- } from "./chunk-AC6ETJUC.js";
3
+ } from "./chunk-A5LMEJIN.js";
4
4
  import {
5
5
  defaultSentinelConfig,
6
6
  loadConfig
7
- } from "./chunk-CMPDA2UR.js";
7
+ } from "./chunk-OG6GPQDK.js";
8
8
 
9
9
  // packages/cli/src/commands/watchdog.ts
10
10
  import { resolve } from "path";
@@ -76,4 +76,4 @@ Options:
76
76
  export {
77
77
  runWatchdogCommand
78
78
  };
79
- //# sourceMappingURL=chunk-DDFWLDFN.js.map
79
+ //# sourceMappingURL=chunk-F6EMICWP.js.map
@@ -6611,6 +6611,17 @@ function startHealthServer(port) {
6611
6611
  res.end();
6612
6612
  }
6613
6613
  });
6614
+ server.on("error", (err) => {
6615
+ if (err.code === "EADDRINUSE") {
6616
+ console.warn(`[hivemind] Health port ${port} in use \u2014 retrying in 2s`);
6617
+ setTimeout(() => {
6618
+ server.close();
6619
+ server.listen(port, "127.0.0.1");
6620
+ }, 2e3);
6621
+ } else {
6622
+ console.error("[hivemind] Health server error:", err.message);
6623
+ }
6624
+ });
6614
6625
  server.listen(port, "127.0.0.1", () => {
6615
6626
  console.log(`[hivemind] Health endpoint listening on http://127.0.0.1:${port}${HEALTH_PATH}`);
6616
6627
  });
@@ -7400,4 +7411,4 @@ smol-toml/dist/index.js:
7400
7411
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7401
7412
  *)
7402
7413
  */
7403
- //# sourceMappingURL=chunk-CMPDA2UR.js.map
7414
+ //# sourceMappingURL=chunk-OG6GPQDK.js.map