@legioncodeinc/honeycomb 0.1.6 → 0.1.7

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.6"
8
+ "version": "0.1.7"
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.6",
14
+ "version": "0.1.7",
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.6",
4
+ "version": "0.1.7",
5
5
  "author": {
6
6
  "name": "Honeycomb"
7
7
  },
package/bundle/cli.js CHANGED
@@ -15981,7 +15981,17 @@ var StorageConfigSchema = external_exports.object({
15981
15981
  /** Per-statement timeout, clamped non-negative. */
15982
15982
  queryTimeoutMs: QueryTimeoutMs.default(DEFAULT_QUERY_TIMEOUT_MS),
15983
15983
  /** SQL tracing gate (FR-6). Evaluated at call time, see client.ts. */
15984
- traceSql: external_exports.boolean().default(false)
15984
+ traceSql: external_exports.boolean().default(false),
15985
+ /**
15986
+ * Query-meter persistence gate (PRD-062a). RESERVED, NOT YET IMPLEMENTED. The
15987
+ * query meter's default posture is in-memory + structured-log only and adds
15988
+ * ZERO DeepLake queries; persisting per-source counts to the existing
15989
+ * `telemetry_counters` tenant group is a later, separate concern and would add
15990
+ * write cost, so it is gated behind this flag. Today the flag is parsed and
15991
+ * carried but nothing reads it for behavior — wiring persistence is out of
15992
+ * scope for this sub-PRD (it must not make the meter itself a write-cost driver).
15993
+ */
15994
+ queryMeterPersist: external_exports.boolean().default(false)
15985
15995
  });
15986
15996
 
15987
15997
  // dist/src/daemon/storage/converge.js
@@ -17225,7 +17235,7 @@ function buildAllowedProperties(input) {
17225
17235
  }
17226
17236
  var systemTelemetryClock = () => (/* @__PURE__ */ new Date()).toISOString();
17227
17237
  var DEFAULT_EMIT_TIMEOUT_MS = 2e3;
17228
- var HONEYCOMB_VERSION = true ? "0.1.6" : "0.0.0-dev";
17238
+ var HONEYCOMB_VERSION = true ? "0.1.7" : "0.0.0-dev";
17229
17239
  async function emitTelemetry(event, opts, deps = {}) {
17230
17240
  const env = deps.env ?? process.env;
17231
17241
  const key = deps.posthogKey ?? POSTHOG_KEY;
@@ -17253,8 +17263,8 @@ async function emitTelemetry(event, opts, deps = {}) {
17253
17263
  if (isReported(state, event))
17254
17264
  return { sent: false, skipped: "already_reported", properties };
17255
17265
  const distinctId = state.installId;
17256
- const ok = await postCapture(event, properties, distinctId, key, deps);
17257
- if (!ok)
17266
+ const ok2 = await postCapture(event, properties, distinctId, key, deps);
17267
+ if (!ok2)
17258
17268
  return { sent: false, skipped: "send_failed", properties };
17259
17269
  const clock = deps.clock ?? systemTelemetryClock;
17260
17270
  const at = clock();
@@ -17368,7 +17378,7 @@ function renderGlassBoxText(view) {
17368
17378
  // dist/src/shared/constants.js
17369
17379
  var DAEMON_PORT = 3850;
17370
17380
  var DAEMON_HOST = "127.0.0.1";
17371
- var HONEYCOMB_VERSION2 = true ? "0.1.6" : "0.0.0-dev";
17381
+ var HONEYCOMB_VERSION2 = true ? "0.1.7" : "0.0.0-dev";
17372
17382
  var PRODUCT_SLUG = "honeycomb";
17373
17383
 
17374
17384
  // dist/src/commands/install.js
@@ -19826,8 +19836,8 @@ function probeCli() {
19826
19836
  function probeCursorAgent() {
19827
19837
  try {
19828
19838
  const probe = process.platform === "win32" ? spawnSync2("where", ["cursor-agent"], { stdio: "ignore", windowsHide: true }) : spawnSync2("which", ["cursor-agent"], { stdio: "ignore", windowsHide: true });
19829
- const ok = probe.status === 0;
19830
- return ok ? { ok: true, detail: "on PATH" } : { ok: false, detail: "cursor-agent not on PATH" };
19839
+ const ok2 = probe.status === 0;
19840
+ return ok2 ? { ok: true, detail: "on PATH" } : { ok: false, detail: "cursor-agent not on PATH" };
19831
19841
  } catch (err) {
19832
19842
  return { ok: false, detail: err instanceof Error ? err.message : "probe failed" };
19833
19843
  }