@legioncodeinc/honeycomb 0.1.10 → 0.1.11

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.
@@ -5,13 +5,13 @@
5
5
  },
6
6
  "metadata": {
7
7
  "description": "Honeycomb — persistent memory daemon and thin harness clients for AI coding assistants",
8
- "version": "0.1.10"
8
+ "version": "0.1.11"
9
9
  },
10
10
  "plugins": [
11
11
  {
12
12
  "name": "honeycomb",
13
13
  "description": "Honeycomb Claude Code plugin — captures session activity and provides cross-session memory through the local daemon",
14
- "version": "0.1.10",
14
+ "version": "0.1.11",
15
15
  "source": "./harnesses/claude-code"
16
16
  }
17
17
  ]
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "honeycomb",
3
3
  "description": "Honeycomb — a long-lived daemon plus thin clients for six coding harnesses, the unified honeycomb CLI, the MCP server, and the embed daemon",
4
- "version": "0.1.10",
4
+ "version": "0.1.11",
5
5
  "author": {
6
6
  "name": "Honeycomb"
7
7
  },
package/bundle/cli.js CHANGED
@@ -17262,7 +17262,7 @@ function buildAllowedProperties(input) {
17262
17262
  }
17263
17263
  var systemTelemetryClock = () => (/* @__PURE__ */ new Date()).toISOString();
17264
17264
  var DEFAULT_EMIT_TIMEOUT_MS = 2e3;
17265
- var HONEYCOMB_VERSION = true ? "0.1.10" : "0.0.0-dev";
17265
+ var HONEYCOMB_VERSION = true ? "0.1.11" : "0.0.0-dev";
17266
17266
  async function emitTelemetry(event, opts, deps = {}) {
17267
17267
  const env = deps.env ?? process.env;
17268
17268
  const key = deps.posthogKey ?? POSTHOG_KEY;
@@ -17405,7 +17405,7 @@ function renderGlassBoxText(view) {
17405
17405
  // dist/src/shared/constants.js
17406
17406
  var DAEMON_PORT = 3850;
17407
17407
  var DAEMON_HOST = "127.0.0.1";
17408
- var HONEYCOMB_VERSION2 = true ? "0.1.10" : "0.0.0-dev";
17408
+ var HONEYCOMB_VERSION2 = true ? "0.1.11" : "0.0.0-dev";
17409
17409
  var PRODUCT_SLUG = "honeycomb";
17410
17410
 
17411
17411
  // dist/src/commands/install.js
@@ -20443,8 +20443,18 @@ function schtasksController(runner) {
20443
20443
  }
20444
20444
 
20445
20445
  // dist/src/cli/runtime.js
20446
+ function daemonHost() {
20447
+ const raw = process.env.HONEYCOMB_HOST?.trim();
20448
+ if (raw === "127.0.0.1" || raw === "localhost")
20449
+ return raw;
20450
+ return DAEMON_HOST;
20451
+ }
20452
+ function daemonPort() {
20453
+ const raw = Number.parseInt(process.env.HONEYCOMB_PORT ?? "", 10);
20454
+ return Number.isInteger(raw) && raw > 0 && raw <= 65535 ? raw : DAEMON_PORT;
20455
+ }
20446
20456
  function daemonBaseUrl2() {
20447
- return `http://${DAEMON_HOST}:${DAEMON_PORT}`;
20457
+ return `http://${daemonHost()}:${daemonPort()}`;
20448
20458
  }
20449
20459
  function tenancyHeaders(creds) {
20450
20460
  if (creds === null)
@@ -20610,9 +20620,9 @@ function buildDaemonLifecycle(client, options = {}) {
20610
20620
  }
20611
20621
  }
20612
20622
  if (running) {
20613
- return serviceManager !== void 0 ? { running, pid, port: DAEMON_PORT, serviceManager } : { running, pid, port: DAEMON_PORT };
20623
+ return serviceManager !== void 0 ? { running, pid, port: daemonPort(), serviceManager } : { running, pid, port: daemonPort() };
20614
20624
  }
20615
- return serviceManager !== void 0 ? { running: false, port: DAEMON_PORT, serviceManager } : { running: false, port: DAEMON_PORT };
20625
+ return serviceManager !== void 0 ? { running: false, port: daemonPort(), serviceManager } : { running: false, port: daemonPort() };
20616
20626
  },
20617
20627
  async restart() {
20618
20628
  const svc = serviceController();