@legioncodeinc/honeycomb 0.1.4 → 0.1.5
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 +8 -3
- package/daemon/index.js +2 -2
- 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 +1 -1
|
@@ -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.5"
|
|
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.5",
|
|
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.5",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Honeycomb"
|
|
7
7
|
},
|
package/bundle/cli.js
CHANGED
|
@@ -16804,6 +16804,11 @@ async function start(deps, out) {
|
|
|
16804
16804
|
out("daemon: started on 127.0.0.1:3850.");
|
|
16805
16805
|
return { exitCode: 0 };
|
|
16806
16806
|
}
|
|
16807
|
+
const status3 = await deps.lifecycle.status();
|
|
16808
|
+
if (status3.running) {
|
|
16809
|
+
out(`daemon: starting \u2014 the process is up (pid ${status3.pid ?? "?"}) but has not answered /health within the start budget; it is likely still warming up. Re-check with \`honeycomb daemon status\`.`);
|
|
16810
|
+
return { exitCode: 0 };
|
|
16811
|
+
}
|
|
16807
16812
|
out("daemon: failed to start (did not become reachable on 127.0.0.1:3850).");
|
|
16808
16813
|
return { exitCode: 1 };
|
|
16809
16814
|
}
|
|
@@ -17042,7 +17047,7 @@ function buildAllowedProperties(input) {
|
|
|
17042
17047
|
}
|
|
17043
17048
|
var systemTelemetryClock = () => (/* @__PURE__ */ new Date()).toISOString();
|
|
17044
17049
|
var DEFAULT_EMIT_TIMEOUT_MS = 2e3;
|
|
17045
|
-
var HONEYCOMB_VERSION = true ? "0.1.
|
|
17050
|
+
var HONEYCOMB_VERSION = true ? "0.1.5" : "0.0.0-dev";
|
|
17046
17051
|
async function emitTelemetry(event, opts, deps = {}) {
|
|
17047
17052
|
const env = deps.env ?? process.env;
|
|
17048
17053
|
const key = deps.posthogKey ?? POSTHOG_KEY;
|
|
@@ -17185,7 +17190,7 @@ function renderGlassBoxText(view) {
|
|
|
17185
17190
|
// dist/src/shared/constants.js
|
|
17186
17191
|
var DAEMON_PORT = 3850;
|
|
17187
17192
|
var DAEMON_HOST = "127.0.0.1";
|
|
17188
|
-
var HONEYCOMB_VERSION2 = true ? "0.1.
|
|
17193
|
+
var HONEYCOMB_VERSION2 = true ? "0.1.5" : "0.0.0-dev";
|
|
17189
17194
|
var PRODUCT_SLUG = "honeycomb";
|
|
17190
17195
|
|
|
17191
17196
|
// dist/src/commands/install.js
|
|
@@ -19859,7 +19864,7 @@ function resolveDaemonEntry() {
|
|
|
19859
19864
|
const devSibling = resolve7(here, "..", "..", "..", "daemon", "index.js");
|
|
19860
19865
|
return process.env.HONEYCOMB_DAEMON_ENTRY ?? bundledSibling ?? devSibling;
|
|
19861
19866
|
}
|
|
19862
|
-
var DEFAULT_START_TIMEOUT_MS =
|
|
19867
|
+
var DEFAULT_START_TIMEOUT_MS = 45e3;
|
|
19863
19868
|
var START_POLL_INTERVAL_MS = 150;
|
|
19864
19869
|
function runtimeDir() {
|
|
19865
19870
|
return join12(homedir12(), ".honeycomb");
|
package/daemon/index.js
CHANGED
|
@@ -7369,7 +7369,7 @@ var require_dist = __commonJS({
|
|
|
7369
7369
|
// dist/src/shared/constants.js
|
|
7370
7370
|
var DAEMON_PORT = 3850;
|
|
7371
7371
|
var DAEMON_HOST = "127.0.0.1";
|
|
7372
|
-
var HONEYCOMB_VERSION = true ? "0.1.
|
|
7372
|
+
var HONEYCOMB_VERSION = true ? "0.1.5" : "0.0.0-dev";
|
|
7373
7373
|
|
|
7374
7374
|
// node_modules/zod/v4/classic/external.js
|
|
7375
7375
|
var external_exports = {};
|
|
@@ -28265,7 +28265,7 @@ function buildAllowedProperties(input) {
|
|
|
28265
28265
|
}
|
|
28266
28266
|
var systemTelemetryClock = () => (/* @__PURE__ */ new Date()).toISOString();
|
|
28267
28267
|
var DEFAULT_EMIT_TIMEOUT_MS = 2e3;
|
|
28268
|
-
var HONEYCOMB_VERSION2 = true ? "0.1.
|
|
28268
|
+
var HONEYCOMB_VERSION2 = true ? "0.1.5" : "0.0.0-dev";
|
|
28269
28269
|
async function emitTelemetry(event, opts, deps = {}) {
|
|
28270
28270
|
const env = deps.env ?? process.env;
|
|
28271
28271
|
const key = deps.posthogKey ?? POSTHOG_KEY;
|
|
@@ -3,7 +3,7 @@ globalThis.__honeycomb_tuning__ ??= {};
|
|
|
3
3
|
// src/shared/constants.ts
|
|
4
4
|
var DAEMON_PORT = 3850;
|
|
5
5
|
var DAEMON_HOST = "127.0.0.1";
|
|
6
|
-
var HONEYCOMB_VERSION = true ? "0.1.
|
|
6
|
+
var HONEYCOMB_VERSION = true ? "0.1.5" : "0.0.0-dev";
|
|
7
7
|
|
|
8
8
|
// src/daemon-client/index.ts
|
|
9
9
|
function createDaemonClient(endpoint) {
|
package/mcp/bundle/server.js
CHANGED
|
@@ -6892,7 +6892,7 @@ var require_dist = __commonJS({
|
|
|
6892
6892
|
// dist/src/shared/constants.js
|
|
6893
6893
|
var DAEMON_PORT = 3850;
|
|
6894
6894
|
var DAEMON_HOST = "127.0.0.1";
|
|
6895
|
-
var HONEYCOMB_VERSION = true ? "0.1.
|
|
6895
|
+
var HONEYCOMB_VERSION = true ? "0.1.5" : "0.0.0-dev";
|
|
6896
6896
|
|
|
6897
6897
|
// dist/src/daemon-client/index.js
|
|
6898
6898
|
function createDaemonClient(endpoint) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legioncodeinc/honeycomb",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"//go-public": "Go-public switches are flipped: scoped name, public+provenance publishConfig live, `private` removed. CI auth is npm Trusted Publishing (OIDC); there is NO NPM_TOKEN. The go-live procedure is RELEASING.md 'Cut the release': the first publish is a one-time manual 2FA bootstrap that creates the package, after which every CI publish from release.yaml is tokenless OIDC.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|