memhtml 0.2.5 → 0.3.0

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/dist/memhtml.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
- import { $ as STATE_SIDECAR_PATH, A as makeIndexRecorder, B as makeGitPort, C as ModelClientLive, D as EMBED_DIM, E as EmbeddingsLive, F as reinforce, G as STATE_MIGRATIONS_DIR, H as DatabaseService, I as Indexer, J as expandRoot, K as STATE_SCHEMA, L as makeIndexer, M as readWatermark, N as Retrieval, O as EMBED_WATERMARK, P as makeRetrieval, Q as STATE_DB_PATH, R as readIndexState, S as ModelClient, T as Embeddings, U as makeDatabase, V as sanitizeFtsQuery, W as MIGRATIONS_DIR, X as INDEX_DB_PATH, Y as makeStore, _ as unlink, a as parseSidecar, at as commitSubject, b as discriminationGate, c as generateArtifacts, ct as isValidDatetime, d as danglingEdges, dt as REINFORCE_SIGNALS, et as attemptIo, f as publishRows, ft as frameKeyOf, g as meta, h as link, i as makeSleep, it as makeGit, j as persistScanned, k as IndexRecorder, l as accessRows, lt as closesFence, m as hrefFor, n as scanTraceRoot, nt as readFileOrNull, o as renderSidecar, ot as checkMemory, p as applyHeadEdits, q as Store, r as Sleep, rt as Git, s as archivedFormOf, st as setMeta, t as mergeTailExtract, tt as initRepo, u as allPaths, ut as fenceOpeningOf, v as SLEEP_PHASES, w as wrapAsData, x as runDiscrimination, y as isSleepPhase, z as IndexGit } from "./dist-Uj47oBRC.mjs";
3
- import { B as ModelUnavailable, G as MEMORY_RELS, H as StorageFailure, J as relClassFor, K as TASK_RELS, N as hasConsolidatorCredentials, Q as INBOX_DIR, R as InvalidMemory, gt as TASK_STATUSES, i as makeConsolidator, ot as normalizePath, q as isEdgeRel, tt as TASKS_SUBDIR, vt as WRITABLE_MEMORY_TYPES, yt as isTaskStatus } from "./dist-t84Q_98w.mjs";
2
+ import { $ as STATE_SIDECAR_PATH, A as makeIndexRecorder, B as makeGitPort, C as ModelClientLive, D as EMBED_DIM, E as EmbeddingsLive, F as reinforce, G as STATE_MIGRATIONS_DIR, H as DatabaseService, I as Indexer, J as expandRoot, K as STATE_SCHEMA, L as makeIndexer, M as readWatermark, N as Retrieval, O as EMBED_WATERMARK, P as makeRetrieval, Q as STATE_DB_PATH, R as readIndexState, S as ModelClient, T as Embeddings, U as makeDatabase, V as sanitizeFtsQuery, W as MIGRATIONS_DIR, X as INDEX_DB_PATH, Y as makeStore, _ as unlink, a as parseSidecar, at as commitSubject, b as discriminationGate, c as generateArtifacts, ct as isValidDatetime, d as danglingEdges, dt as REINFORCE_SIGNALS, et as attemptIo, f as publishRows, ft as frameKeyOf, g as meta, h as link, i as makeSleep, it as makeGit, j as persistScanned, k as IndexRecorder, l as accessRows, lt as closesFence, m as hrefFor, n as scanTraceRoot, nt as readFileOrNull, o as renderSidecar, ot as checkMemory, p as applyHeadEdits, q as Store, r as Sleep, rt as Git, s as archivedFormOf, st as setMeta, t as mergeTailExtract, tt as initRepo, u as allPaths, ut as fenceOpeningOf, v as SLEEP_PHASES, w as wrapAsData, x as runDiscrimination, y as isSleepPhase, z as IndexGit } from "./dist-B3yDga97.mjs";
3
+ import { $ as INBOX_DIR, B as ModelUnavailable, G as MEMORY_RELS, H as StorageFailure, J as relClassFor, K as TASK_RELS, N as hasConsolidatorCredentials, R as InvalidMemory, _t as TASK_STATUSES, bt as isTaskStatus, i as makeConsolidator, nt as TASKS_SUBDIR, q as isEdgeRel, st as normalizePath, yt as WRITABLE_MEMORY_TYPES } from "./dist-CSo_XRfz.mjs";
4
4
  import { createRequire } from "node:module";
5
5
  import { Config, Context, Effect, Layer, Logger } from "effect";
6
6
  import { access, mkdir, readFile, writeFile } from "node:fs/promises";
@@ -82,7 +82,7 @@ const CONFIG_VARS = [
82
82
  },
83
83
  {
84
84
  name: "MEMHTML_AWS_REGION",
85
- description: "The Bedrock region for embeddings and the sleep cycle's four LLM phases.",
85
+ description: "The Bedrock region for embeddings and the sleep cycle's model-calling phases.",
86
86
  fallback: "us-east-1"
87
87
  },
88
88
  {
@@ -97,7 +97,7 @@ const CONFIG_VARS = [
97
97
  },
98
98
  {
99
99
  name: "MEMHTML_LLM",
100
- description: "`off` makes the four LLM sleep phases report `no model bound` and stay `ok`, so a credential-free run is honest rather than red.",
100
+ description: "`off` makes every model-calling sleep phase report `no model bound` and stay `ok`, so a credential-free run is honest rather than red. `entity-resolution` still runs its deterministic normalization and character-overlap passes; the others do nothing.",
101
101
  fallback: "on"
102
102
  },
103
103
  {
@@ -2884,7 +2884,7 @@ const GUIDE_TOPICS = GUIDE.map((block) => block.topic);
2884
2884
  */
2885
2885
  const buildManifest = () => ({
2886
2886
  name: "memhtml",
2887
- version: "0.2.5",
2887
+ version: "0.3.0",
2888
2888
  summary: "Read, write, and curate the git-backed memory repo.",
2889
2889
  apiVersion: "1",
2890
2890
  /**
@@ -3983,7 +3983,7 @@ const runExec = (input) => Effect.gen(function* () {
3983
3983
  catch: (cause) => StorageFailure.make({ operation: `exec.sandbox-load: ${String(cause)}` })
3984
3984
  });
3985
3985
  const { mountReadOnlyRoots } = yield* Effect.tryPromise({
3986
- try: () => import("./dist-Dj-MYf9q.mjs"),
3986
+ try: () => import("./dist-FgNX_rxc.mjs"),
3987
3987
  catch: (cause) => StorageFailure.make({ operation: `exec.mount-load: ${String(cause)}` })
3988
3988
  });
3989
3989
  const helperSource = yield* Effect.tryPromise({
@@ -4128,7 +4128,7 @@ const execCommand = (input) => Effect.gen(function* () {
4128
4128
  * would not cover.
4129
4129
  */
4130
4130
  const { pinCorpusSnapshot } = yield* Effect.tryPromise({
4131
- try: () => import("./dist-Dj-MYf9q.mjs"),
4131
+ try: () => import("./dist-FgNX_rxc.mjs"),
4132
4132
  catch: (cause) => StorageFailure.make({ operation: `exec.mount-load: ${String(cause)}` })
4133
4133
  });
4134
4134
  const snapshot = yield* Effect.acquireRelease(Effect.tryPromise({