@modusensus/dsh-mneme 0.6.6 → 0.6.8
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/LICENSE +21 -21
- package/README.md +463 -457
- package/cordis.patch.yml +15 -15
- package/lib/api.js +783 -693
- package/lib/client.js +1757 -1656
- package/lib/commands.js +64 -64
- package/lib/config.js +288 -288
- package/lib/dream/clustering.js +118 -118
- package/lib/dream/decisions.js +439 -439
- package/lib/dream/sleep.js +561 -554
- package/lib/dream/tag-extractor.js +156 -156
- package/lib/dream.js +935 -929
- package/lib/embedding.js +154 -154
- package/lib/entities/extractor.js +242 -242
- package/lib/hot-memory.js +53 -53
- package/lib/index.js +361 -361
- package/lib/inject.js +208 -208
- package/lib/local-embedder.js +282 -282
- package/lib/mirror.js +170 -170
- package/lib/parser/tag.js +59 -59
- package/lib/parser/wiki-link.js +38 -38
- package/lib/quality-filter.js +123 -123
- package/lib/reranker.js +218 -218
- package/lib/search/adaptive.js +22 -22
- package/lib/search/bm25.js +96 -96
- package/lib/search/tag-boost.js +61 -61
- package/lib/service.js +1726 -1726
- package/lib/settings.js +172 -142
- package/lib/store.js +2238 -2238
- package/lib/summarize.js +236 -236
- package/lib/tools.js +290 -290
- package/lib/vector-index.js +116 -116
- package/package.json +80 -75
- package/scripts/benchmark-embed.js +201 -201
- package/scripts/benchmark-recall.js +133 -133
- package/scripts/benchmark-rerank.js +166 -166
- package/scripts/e2e-dsh.js +218 -218
- package/scripts/stress-dsh.js +255 -255
- package/scripts/sync-lib.js +52 -52
- package/src/api.js +783 -693
- package/src/commands.js +64 -64
- package/src/config.js +288 -288
- package/src/dream/clustering.js +118 -118
- package/src/dream/decisions.js +439 -439
- package/src/dream/sleep.js +561 -554
- package/src/dream/tag-extractor.js +156 -156
- package/src/dream.js +935 -929
- package/src/embedding.js +154 -154
- package/src/entities/extractor.js +242 -242
- package/src/hot-memory.js +53 -53
- package/src/index.js +361 -361
- package/src/inject.js +208 -208
- package/src/local-embedder.js +282 -282
- package/src/mirror.js +170 -170
- package/src/parser/tag.js +59 -59
- package/src/parser/wiki-link.js +38 -38
- package/src/quality-filter.js +123 -123
- package/src/reranker.js +218 -218
- package/src/search/adaptive.js +22 -22
- package/src/search/bm25.js +96 -96
- package/src/search/tag-boost.js +61 -61
- package/src/service.js +1726 -1726
- package/src/settings.js +172 -142
- package/src/store.js +2238 -2238
- package/src/summarize.js +236 -236
- package/src/tools.js +290 -290
- package/src/vector-index.js +116 -116
- package/test/api.test.js +594 -549
- package/test/audit.test.js +448 -448
- package/test/benchmark.test.js +35 -35
- package/test/boundary-v0625.test.js +82 -82
- package/test/client.test.js +368 -368
- package/test/clustering.test.js +100 -100
- package/test/commands.test.js +69 -69
- package/test/config.test.js +50 -50
- package/test/conflict-freeze.test.js +290 -290
- package/test/directory.test.js +134 -134
- package/test/dream.test.js +903 -901
- package/test/entities.test.js +522 -522
- package/test/epistemic.test.js +298 -298
- package/test/fnew-0112.test.js +311 -311
- package/test/fnew-03.test.js +422 -422
- package/test/graph-api.test.js +175 -175
- package/test/helpers/dream-mock.js +82 -82
- package/test/hot-memory.test.js +174 -174
- package/test/inject.test.js +103 -103
- package/test/llm-audit.test.js +279 -279
- package/test/local-embedder.test.js +227 -227
- package/test/mirror-dirty.test.js +424 -424
- package/test/mirror-edit-digest.test.js +187 -187
- package/test/mirror-generation.test.js +499 -499
- package/test/mirror.test.js +249 -249
- package/test/normalize-decisions.test.js +120 -120
- package/test/peer-blockers.test.js +190 -190
- package/test/policy-epoch.test.js +259 -259
- package/test/provenance.test.js +103 -103
- package/test/quality-filter.test.js +118 -118
- package/test/reasoning-effort.test.js +199 -199
- package/test/recall-evals.test.js +235 -235
- package/test/recall-layer.test.js +315 -315
- package/test/receipt-chain.test.js +451 -451
- package/test/reflection.test.js +226 -226
- package/test/reranker.test.js +240 -240
- package/test/search-fusion.test.js +90 -90
- package/test/semantic.test.js +124 -124
- package/test/service-search.test.js +199 -199
- package/test/service.test.js +435 -435
- package/test/settings.test.js +118 -101
- package/test/sleep.test.js +365 -365
- package/test/store.test.js +436 -436
- package/test/stress.test.js +209 -209
- package/test/summarize.test.js +191 -191
- package/test/tag-boost.test.js +125 -125
- package/test/tag.test.js +312 -312
- package/test/tools.test.js +285 -285
- package/test/vector-index.test.js +221 -221
- package/test/wiki-link.test.js +332 -332
|
@@ -1,156 +1,156 @@
|
|
|
1
|
-
// v0.6.2 auto-tag: a lightweight LLM pass that runs after an autoDream
|
|
2
|
-
// consolidation and extracts 1-3 tags per retained memory. Opt-in via
|
|
3
|
-
// config.autoTagEnabled (default false); autoTagMaxPerRun (default 10) bounds
|
|
4
|
-
// how many memories are tagged per run.
|
|
5
|
-
//
|
|
6
|
-
// Design notes:
|
|
7
|
-
// - ONE batched LLM call per run (the consolidation route is reused). Each
|
|
8
|
-
// memory is a prompt line; the model replies with a JSON array of
|
|
9
|
-
// {"id","tags"} entries — the per-memory contract is `{"tags":[...]}`.
|
|
10
|
-
// - Fail-safe everywhere: a missing route / aborted stream / unparseable
|
|
11
|
-
// JSON / unknown id / illegal tag are all skipped, never thrown. Tagging
|
|
12
|
-
// must never degrade the consolidation run it rides on.
|
|
13
|
-
// - The actual writes go through service.applyMemoryTags inside a
|
|
14
|
-
// service.transaction, so the mirror re-renders exactly once per pass and
|
|
15
|
-
// the write hooks fire once (never per memory).
|
|
16
|
-
import { sanitizeTags, MAX_TAG_LENGTH } from "../parser/tag.js";
|
|
17
|
-
|
|
18
|
-
const TAG_PROMPT = `你是记忆库标签助手。下面是保留的记忆条目(id、标题、内容)。
|
|
19
|
-
对每条记忆提取 1-3 个中文或英文标签,用于检索分类。
|
|
20
|
-
标签规则:
|
|
21
|
-
- 只允许字符:字母、数字、下划线、中文、连字符(如:linux、考研、deepseek-r1)
|
|
22
|
-
- 标签长度 ≤ ${MAX_TAG_LENGTH} 字符
|
|
23
|
-
- 宁缺毋滥:提取最核心的 1-3 个,不要凑数
|
|
24
|
-
- 不要输出内容里没有依据的标签
|
|
25
|
-
只输出一个 JSON 数组,每项形如 { "id": "<记忆id>", "tags": ["标签1", "标签2"] }。
|
|
26
|
-
不要输出其他文字。`;
|
|
27
|
-
|
|
28
|
-
/** Same stream consumption contract as dream.js. Returns accumulated text or
|
|
29
|
-
* undefined when the stream aborted/errored. */
|
|
30
|
-
async function streamText(ctx, options) {
|
|
31
|
-
if (!ctx?.llm?.stream) return undefined;
|
|
32
|
-
let text = "";
|
|
33
|
-
for await (const chunk of ctx.llm.stream(options)) {
|
|
34
|
-
if (chunk.type === "text-delta" && typeof chunk.text === "string") text += chunk.text;
|
|
35
|
-
if (chunk.type === "finish" && (chunk.reason?.kind === "error" || chunk.reason?.kind === "aborted")) {
|
|
36
|
-
return undefined;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
return text;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/** Pull the outermost JSON array out of a model reply (same tolerant contract
|
|
43
|
-
* as sleep.js parseJsonArray): find the first `[` … last `]` and parse. */
|
|
44
|
-
function parseJsonArray(text) {
|
|
45
|
-
if (typeof text !== "string") return undefined;
|
|
46
|
-
const start = text.indexOf("[");
|
|
47
|
-
const end = text.lastIndexOf("]");
|
|
48
|
-
if (start === -1 || end <= start) return undefined;
|
|
49
|
-
try {
|
|
50
|
-
const parsed = JSON.parse(text.slice(start, end + 1));
|
|
51
|
-
return Array.isArray(parsed) ? parsed : undefined;
|
|
52
|
-
} catch {
|
|
53
|
-
return undefined;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
/** Resolve the LLM route for the tag pass: the caller-provided consolidation
|
|
58
|
-
* route first, then dreamProvider/dreamModel. Falls through to undefined. */
|
|
59
|
-
function resolveTagRoute(route, config, logger) {
|
|
60
|
-
if (route?.provider && route?.model) return route;
|
|
61
|
-
if (config?.dreamProvider && config?.dreamModel) return { provider: config.dreamProvider, model: config.dreamModel };
|
|
62
|
-
logger?.warn?.("dsh-mneme auto-tag: no llm route available");
|
|
63
|
-
return undefined;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
/**
|
|
67
|
-
* Run the auto-tag pass over retained memories.
|
|
68
|
-
* @param {object} opts
|
|
69
|
-
* @param {object} opts.ctx — { llm, logger }
|
|
70
|
-
* @param {object} opts.service — service handle (all/transaction/applyMemoryTags)
|
|
71
|
-
* @param {object} opts.config — plugin config (autoTagMaxPerRun, dreamProvider…)
|
|
72
|
-
* @param {object} [opts.route] — already-resolved consolidation route
|
|
73
|
-
* @returns {Promise<{ok: boolean, tagged: number, skipped: number, failed: number, skippedBy: boolean}>}
|
|
74
|
-
*/
|
|
75
|
-
export async function runAutoTag({ ctx, service, config, route }) {
|
|
76
|
-
const logger = ctx?.logger;
|
|
77
|
-
const maxPerRun = Number.isInteger(config?.autoTagMaxPerRun) && config.autoTagMaxPerRun > 0
|
|
78
|
-
? config.autoTagMaxPerRun
|
|
79
|
-
: 10;
|
|
80
|
-
// Retained = post-consolidation active memories, newest first, capped.
|
|
81
|
-
// Skip memories that already carry live tags — otherwise every run re-picks
|
|
82
|
-
// the same "newest" batch (tagging doesn't bump updated_at) and older
|
|
83
|
-
// memories starve; manual tags are also left untouched this way.
|
|
84
|
-
const memories = service.all()
|
|
85
|
-
.filter((m) => !m.forgotten && !m.archived && !m.session_disposed_at && m.type !== "summary")
|
|
86
|
-
.filter((m) => (service.getMemoryTags?.(m.id) ?? []).length === 0)
|
|
87
|
-
.sort((a, b) => {
|
|
88
|
-
const ta = String(a.updated_at ?? "");
|
|
89
|
-
const tb = String(b.updated_at ?? "");
|
|
90
|
-
if (ta < tb) return 1;
|
|
91
|
-
if (ta > tb) return -1;
|
|
92
|
-
return a.id < b.id ? -1 : a.id > b.id ? 1 : 0;
|
|
93
|
-
})
|
|
94
|
-
.slice(0, Math.max(1, maxPerRun));
|
|
95
|
-
if (!memories.length) return { ok: true, tagged: 0, skipped: 0, failed: 0, skippedBy: "empty" };
|
|
96
|
-
const tagRoute = resolveTagRoute(route, config, logger);
|
|
97
|
-
if (!tagRoute) return { ok: false, tagged: 0, skipped: memories.length, failed: 0, skippedBy: "no-route" };
|
|
98
|
-
|
|
99
|
-
const listText = memories
|
|
100
|
-
.map((m) => `id=${m.id} | title=${m.title} | content=${m.content}`)
|
|
101
|
-
.join("\n");
|
|
102
|
-
const text = await streamText(ctx, {
|
|
103
|
-
provider: tagRoute.provider,
|
|
104
|
-
model: tagRoute.model,
|
|
105
|
-
purpose: "compaction",
|
|
106
|
-
maxTokens: Math.min(2048, config?.dreamMaxTokens ?? 2048),
|
|
107
|
-
messages: [
|
|
108
|
-
{ role: "system", content: [{ type: "text", text: TAG_PROMPT }] },
|
|
109
|
-
{ role: "user", content: [{ type: "text", text: listText }] }
|
|
110
|
-
]
|
|
111
|
-
});
|
|
112
|
-
if (text === undefined) return { ok: false, tagged: 0, skipped: memories.length, failed: 0, skippedBy: "llm-failed" };
|
|
113
|
-
|
|
114
|
-
const entries = parseJsonArray(text);
|
|
115
|
-
if (!entries) {
|
|
116
|
-
logger?.warn?.("dsh-mneme auto-tag: no json array in llm output");
|
|
117
|
-
return { ok: false, tagged: 0, skipped: memories.length, failed: 0, skippedBy: "bad-json" };
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
// Validate ids against the candidate set (unknown ids are ignored, never
|
|
121
|
-
// written — a stray id could otherwise tag an unrelated memory).
|
|
122
|
-
const candidateIds = new Set(memories.map((m) => m.id));
|
|
123
|
-
const toWrite = [];
|
|
124
|
-
let skipped = 0;
|
|
125
|
-
let failed = 0;
|
|
126
|
-
const seenIds = new Set();
|
|
127
|
-
for (const entry of entries) {
|
|
128
|
-
if (!entry || typeof entry !== "object") { failed++; continue; }
|
|
129
|
-
const id = typeof entry.id === "string" ? entry.id : undefined;
|
|
130
|
-
if (!id || !candidateIds.has(id)) { failed++; continue; }
|
|
131
|
-
if (seenIds.has(id)) continue; // first entry per id wins
|
|
132
|
-
seenIds.add(id);
|
|
133
|
-
// Reuse the shared sanitizer: strip, ≤20 chars, drop illegal, dedupe.
|
|
134
|
-
const tags = sanitizeTags(entry.tags);
|
|
135
|
-
if (!tags.length) { skipped++; continue; }
|
|
136
|
-
toWrite.push({ id, tags });
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
// Write the whole batch under one transaction: mirror re-renders once.
|
|
140
|
-
let tagged = 0;
|
|
141
|
-
try {
|
|
142
|
-
service.transaction(() => {
|
|
143
|
-
for (const { id, tags } of toWrite) {
|
|
144
|
-
// Merge with existing live tags (never clobber manual tags that landed
|
|
145
|
-
// between selection and write).
|
|
146
|
-
const existing = service.getMemoryTags?.(id) ?? [];
|
|
147
|
-
service.applyMemoryTags(id, [...new Set([...existing, ...tags])]);
|
|
148
|
-
tagged++;
|
|
149
|
-
}
|
|
150
|
-
});
|
|
151
|
-
} catch (error) {
|
|
152
|
-
logger?.warn?.(`dsh-mneme auto-tag: write failed: ${String(error)}`);
|
|
153
|
-
return { ok: false, tagged, skipped, failed, skippedBy: "write-failed" };
|
|
154
|
-
}
|
|
155
|
-
return { ok: true, tagged, skipped, failed, skippedBy: false };
|
|
156
|
-
}
|
|
1
|
+
// v0.6.2 auto-tag: a lightweight LLM pass that runs after an autoDream
|
|
2
|
+
// consolidation and extracts 1-3 tags per retained memory. Opt-in via
|
|
3
|
+
// config.autoTagEnabled (default false); autoTagMaxPerRun (default 10) bounds
|
|
4
|
+
// how many memories are tagged per run.
|
|
5
|
+
//
|
|
6
|
+
// Design notes:
|
|
7
|
+
// - ONE batched LLM call per run (the consolidation route is reused). Each
|
|
8
|
+
// memory is a prompt line; the model replies with a JSON array of
|
|
9
|
+
// {"id","tags"} entries — the per-memory contract is `{"tags":[...]}`.
|
|
10
|
+
// - Fail-safe everywhere: a missing route / aborted stream / unparseable
|
|
11
|
+
// JSON / unknown id / illegal tag are all skipped, never thrown. Tagging
|
|
12
|
+
// must never degrade the consolidation run it rides on.
|
|
13
|
+
// - The actual writes go through service.applyMemoryTags inside a
|
|
14
|
+
// service.transaction, so the mirror re-renders exactly once per pass and
|
|
15
|
+
// the write hooks fire once (never per memory).
|
|
16
|
+
import { sanitizeTags, MAX_TAG_LENGTH } from "../parser/tag.js";
|
|
17
|
+
|
|
18
|
+
const TAG_PROMPT = `你是记忆库标签助手。下面是保留的记忆条目(id、标题、内容)。
|
|
19
|
+
对每条记忆提取 1-3 个中文或英文标签,用于检索分类。
|
|
20
|
+
标签规则:
|
|
21
|
+
- 只允许字符:字母、数字、下划线、中文、连字符(如:linux、考研、deepseek-r1)
|
|
22
|
+
- 标签长度 ≤ ${MAX_TAG_LENGTH} 字符
|
|
23
|
+
- 宁缺毋滥:提取最核心的 1-3 个,不要凑数
|
|
24
|
+
- 不要输出内容里没有依据的标签
|
|
25
|
+
只输出一个 JSON 数组,每项形如 { "id": "<记忆id>", "tags": ["标签1", "标签2"] }。
|
|
26
|
+
不要输出其他文字。`;
|
|
27
|
+
|
|
28
|
+
/** Same stream consumption contract as dream.js. Returns accumulated text or
|
|
29
|
+
* undefined when the stream aborted/errored. */
|
|
30
|
+
async function streamText(ctx, options) {
|
|
31
|
+
if (!ctx?.llm?.stream) return undefined;
|
|
32
|
+
let text = "";
|
|
33
|
+
for await (const chunk of ctx.llm.stream(options)) {
|
|
34
|
+
if (chunk.type === "text-delta" && typeof chunk.text === "string") text += chunk.text;
|
|
35
|
+
if (chunk.type === "finish" && (chunk.reason?.kind === "error" || chunk.reason?.kind === "aborted")) {
|
|
36
|
+
return undefined;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
return text;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/** Pull the outermost JSON array out of a model reply (same tolerant contract
|
|
43
|
+
* as sleep.js parseJsonArray): find the first `[` … last `]` and parse. */
|
|
44
|
+
function parseJsonArray(text) {
|
|
45
|
+
if (typeof text !== "string") return undefined;
|
|
46
|
+
const start = text.indexOf("[");
|
|
47
|
+
const end = text.lastIndexOf("]");
|
|
48
|
+
if (start === -1 || end <= start) return undefined;
|
|
49
|
+
try {
|
|
50
|
+
const parsed = JSON.parse(text.slice(start, end + 1));
|
|
51
|
+
return Array.isArray(parsed) ? parsed : undefined;
|
|
52
|
+
} catch {
|
|
53
|
+
return undefined;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/** Resolve the LLM route for the tag pass: the caller-provided consolidation
|
|
58
|
+
* route first, then dreamProvider/dreamModel. Falls through to undefined. */
|
|
59
|
+
function resolveTagRoute(route, config, logger) {
|
|
60
|
+
if (route?.provider && route?.model) return route;
|
|
61
|
+
if (config?.dreamProvider && config?.dreamModel) return { provider: config.dreamProvider, model: config.dreamModel };
|
|
62
|
+
logger?.warn?.("dsh-mneme auto-tag: no llm route available");
|
|
63
|
+
return undefined;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Run the auto-tag pass over retained memories.
|
|
68
|
+
* @param {object} opts
|
|
69
|
+
* @param {object} opts.ctx — { llm, logger }
|
|
70
|
+
* @param {object} opts.service — service handle (all/transaction/applyMemoryTags)
|
|
71
|
+
* @param {object} opts.config — plugin config (autoTagMaxPerRun, dreamProvider…)
|
|
72
|
+
* @param {object} [opts.route] — already-resolved consolidation route
|
|
73
|
+
* @returns {Promise<{ok: boolean, tagged: number, skipped: number, failed: number, skippedBy: boolean}>}
|
|
74
|
+
*/
|
|
75
|
+
export async function runAutoTag({ ctx, service, config, route }) {
|
|
76
|
+
const logger = ctx?.logger;
|
|
77
|
+
const maxPerRun = Number.isInteger(config?.autoTagMaxPerRun) && config.autoTagMaxPerRun > 0
|
|
78
|
+
? config.autoTagMaxPerRun
|
|
79
|
+
: 10;
|
|
80
|
+
// Retained = post-consolidation active memories, newest first, capped.
|
|
81
|
+
// Skip memories that already carry live tags — otherwise every run re-picks
|
|
82
|
+
// the same "newest" batch (tagging doesn't bump updated_at) and older
|
|
83
|
+
// memories starve; manual tags are also left untouched this way.
|
|
84
|
+
const memories = service.all()
|
|
85
|
+
.filter((m) => !m.forgotten && !m.archived && !m.session_disposed_at && m.type !== "summary")
|
|
86
|
+
.filter((m) => (service.getMemoryTags?.(m.id) ?? []).length === 0)
|
|
87
|
+
.sort((a, b) => {
|
|
88
|
+
const ta = String(a.updated_at ?? "");
|
|
89
|
+
const tb = String(b.updated_at ?? "");
|
|
90
|
+
if (ta < tb) return 1;
|
|
91
|
+
if (ta > tb) return -1;
|
|
92
|
+
return a.id < b.id ? -1 : a.id > b.id ? 1 : 0;
|
|
93
|
+
})
|
|
94
|
+
.slice(0, Math.max(1, maxPerRun));
|
|
95
|
+
if (!memories.length) return { ok: true, tagged: 0, skipped: 0, failed: 0, skippedBy: "empty" };
|
|
96
|
+
const tagRoute = resolveTagRoute(route, config, logger);
|
|
97
|
+
if (!tagRoute) return { ok: false, tagged: 0, skipped: memories.length, failed: 0, skippedBy: "no-route" };
|
|
98
|
+
|
|
99
|
+
const listText = memories
|
|
100
|
+
.map((m) => `id=${m.id} | title=${m.title} | content=${m.content}`)
|
|
101
|
+
.join("\n");
|
|
102
|
+
const text = await streamText(ctx, {
|
|
103
|
+
provider: tagRoute.provider,
|
|
104
|
+
model: tagRoute.model,
|
|
105
|
+
purpose: "compaction",
|
|
106
|
+
maxTokens: Math.min(2048, config?.dreamMaxTokens ?? 2048),
|
|
107
|
+
messages: [
|
|
108
|
+
{ role: "system", content: [{ type: "text", text: TAG_PROMPT }] },
|
|
109
|
+
{ role: "user", content: [{ type: "text", text: listText }] }
|
|
110
|
+
]
|
|
111
|
+
});
|
|
112
|
+
if (text === undefined) return { ok: false, tagged: 0, skipped: memories.length, failed: 0, skippedBy: "llm-failed" };
|
|
113
|
+
|
|
114
|
+
const entries = parseJsonArray(text);
|
|
115
|
+
if (!entries) {
|
|
116
|
+
logger?.warn?.("dsh-mneme auto-tag: no json array in llm output");
|
|
117
|
+
return { ok: false, tagged: 0, skipped: memories.length, failed: 0, skippedBy: "bad-json" };
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// Validate ids against the candidate set (unknown ids are ignored, never
|
|
121
|
+
// written — a stray id could otherwise tag an unrelated memory).
|
|
122
|
+
const candidateIds = new Set(memories.map((m) => m.id));
|
|
123
|
+
const toWrite = [];
|
|
124
|
+
let skipped = 0;
|
|
125
|
+
let failed = 0;
|
|
126
|
+
const seenIds = new Set();
|
|
127
|
+
for (const entry of entries) {
|
|
128
|
+
if (!entry || typeof entry !== "object") { failed++; continue; }
|
|
129
|
+
const id = typeof entry.id === "string" ? entry.id : undefined;
|
|
130
|
+
if (!id || !candidateIds.has(id)) { failed++; continue; }
|
|
131
|
+
if (seenIds.has(id)) continue; // first entry per id wins
|
|
132
|
+
seenIds.add(id);
|
|
133
|
+
// Reuse the shared sanitizer: strip, ≤20 chars, drop illegal, dedupe.
|
|
134
|
+
const tags = sanitizeTags(entry.tags);
|
|
135
|
+
if (!tags.length) { skipped++; continue; }
|
|
136
|
+
toWrite.push({ id, tags });
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
// Write the whole batch under one transaction: mirror re-renders once.
|
|
140
|
+
let tagged = 0;
|
|
141
|
+
try {
|
|
142
|
+
service.transaction(() => {
|
|
143
|
+
for (const { id, tags } of toWrite) {
|
|
144
|
+
// Merge with existing live tags (never clobber manual tags that landed
|
|
145
|
+
// between selection and write).
|
|
146
|
+
const existing = service.getMemoryTags?.(id) ?? [];
|
|
147
|
+
service.applyMemoryTags(id, [...new Set([...existing, ...tags])]);
|
|
148
|
+
tagged++;
|
|
149
|
+
}
|
|
150
|
+
});
|
|
151
|
+
} catch (error) {
|
|
152
|
+
logger?.warn?.(`dsh-mneme auto-tag: write failed: ${String(error)}`);
|
|
153
|
+
return { ok: false, tagged, skipped, failed, skippedBy: "write-failed" };
|
|
154
|
+
}
|
|
155
|
+
return { ok: true, tagged, skipped, failed, skippedBy: false };
|
|
156
|
+
}
|