@legioncodeinc/honeycomb 0.1.12 → 0.1.13
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 +2 -2
- 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.13"
|
|
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.13",
|
|
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.13",
|
|
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.13" : "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.13" : "0.0.0-dev";
|
|
17409
17409
|
var PRODUCT_SLUG = "honeycomb";
|
|
17410
17410
|
|
|
17411
17411
|
// dist/src/commands/install.js
|
package/daemon/index.js
CHANGED
|
@@ -7373,7 +7373,7 @@ import { pathToFileURL } from "node:url";
|
|
|
7373
7373
|
// dist/src/shared/constants.js
|
|
7374
7374
|
var DAEMON_PORT = 3850;
|
|
7375
7375
|
var DAEMON_HOST = "127.0.0.1";
|
|
7376
|
-
var HONEYCOMB_VERSION = true ? "0.1.
|
|
7376
|
+
var HONEYCOMB_VERSION = true ? "0.1.13" : "0.0.0-dev";
|
|
7377
7377
|
|
|
7378
7378
|
// dist/src/daemon/runtime/assemble.js
|
|
7379
7379
|
import { mkdirSync as mkdirSync21, mkdtempSync, readFileSync as readFileSync23, rmSync as rmSync10, writeFileSync as writeFileSync17 } from "node:fs";
|
|
@@ -22414,7 +22414,7 @@ function buildAllowedProperties(input) {
|
|
|
22414
22414
|
}
|
|
22415
22415
|
var systemTelemetryClock = () => (/* @__PURE__ */ new Date()).toISOString();
|
|
22416
22416
|
var DEFAULT_EMIT_TIMEOUT_MS = 2e3;
|
|
22417
|
-
var HONEYCOMB_VERSION2 = true ? "0.1.
|
|
22417
|
+
var HONEYCOMB_VERSION2 = true ? "0.1.13" : "0.0.0-dev";
|
|
22418
22418
|
async function emitTelemetry(event, opts, deps = {}) {
|
|
22419
22419
|
const env = deps.env ?? process.env;
|
|
22420
22420
|
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.13" : "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.13" : "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.13",
|
|
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",
|