@legioncodeinc/honeycomb 0.1.10 → 0.1.12
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/bundle/cli.js +16 -6
- package/daemon/index.js +8716 -7522
- package/embeddings/embed-daemon.js +1 -1
- package/harnesses/claude-code/.claude-plugin/plugin.json +1 -1
- package/harnesses/codex/package.json +1 -1
- package/harnesses/openclaw/dist/index.js +1 -1
- package/harnesses/openclaw/openclaw.plugin.json +1 -1
- package/harnesses/openclaw/package.json +1 -1
- package/mcp/bundle/server.js +1 -1
- package/package.json +5 -2
|
@@ -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.
|
|
8
|
+
"version": "0.1.12"
|
|
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.
|
|
14
|
+
"version": "0.1.12",
|
|
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.
|
|
4
|
+
"version": "0.1.12",
|
|
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.
|
|
17265
|
+
var HONEYCOMB_VERSION = true ? "0.1.12" : "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.
|
|
17408
|
+
var HONEYCOMB_VERSION2 = true ? "0.1.12" : "0.0.0-dev";
|
|
17409
17409
|
var PRODUCT_SLUG = "honeycomb";
|
|
17410
17410
|
|
|
17411
17411
|
// dist/src/commands/install.js
|
|
@@ -20356,7 +20356,7 @@ function launchdController(runner) {
|
|
|
20356
20356
|
return { ok: true, manager: "launchd" };
|
|
20357
20357
|
},
|
|
20358
20358
|
stop(_spec) {
|
|
20359
|
-
runner.run("launchctl", ["
|
|
20359
|
+
runner.run("launchctl", ["bootout", `${domain2()}/${SERVICE_LABEL}`]);
|
|
20360
20360
|
return { ok: true, manager: "launchd" };
|
|
20361
20361
|
},
|
|
20362
20362
|
isRegistered(spec) {
|
|
@@ -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://${
|
|
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:
|
|
20623
|
+
return serviceManager !== void 0 ? { running, pid, port: daemonPort(), serviceManager } : { running, pid, port: daemonPort() };
|
|
20614
20624
|
}
|
|
20615
|
-
return serviceManager !== void 0 ? { running: false, 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();
|