claude-memory-layer 1.0.24 → 1.0.25
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/settings.local.json +15 -1
- package/dist/cli/index.js +152 -969
- package/dist/cli/index.js.map +4 -4
- package/dist/core/index.js +31 -66
- package/dist/core/index.js.map +3 -3
- package/dist/hooks/post-tool-use.js +181 -967
- package/dist/hooks/post-tool-use.js.map +4 -4
- package/dist/hooks/semantic-daemon.js +148 -965
- package/dist/hooks/semantic-daemon.js.map +4 -4
- package/dist/hooks/session-end.js +148 -965
- package/dist/hooks/session-end.js.map +4 -4
- package/dist/hooks/session-start.js +150 -965
- package/dist/hooks/session-start.js.map +4 -4
- package/dist/hooks/stop.js +156 -965
- package/dist/hooks/stop.js.map +4 -4
- package/dist/hooks/user-prompt-submit.js +150 -967
- package/dist/hooks/user-prompt-submit.js.map +4 -4
- package/dist/server/api/index.js +148 -965
- package/dist/server/api/index.js.map +4 -4
- package/dist/server/index.js +148 -965
- package/dist/server/index.js.map +4 -4
- package/dist/services/memory-service.js +148 -965
- package/dist/services/memory-service.js.map +4 -4
- package/memory/agent_response/uncategorized/2026-03-04.md +217 -1
- package/memory/session_summary/uncategorized/2026-03-04.md +20 -1
- package/memory/tool_observation/uncategorized/2026-03-04.md +237 -1
- package/memory/user_prompt/uncategorized/2026-03-04.md +185 -1
- package/package.json +1 -2
- package/specs/memory-utilization-improvements/context.md +145 -0
- package/specs/memory-utilization-improvements/plan.md +361 -0
- package/specs/memory-utilization-improvements/spec.md +308 -0
- package/specs/optional-duckdb/context.md +77 -0
- package/specs/optional-duckdb/plan.md +142 -0
- package/specs/optional-duckdb/spec.md +35 -0
- package/src/core/db-wrapper.ts +18 -73
- package/src/core/sqlite-event-store.ts +24 -0
- package/src/hooks/post-tool-use.ts +25 -0
- package/src/hooks/session-start.ts +4 -0
- package/src/hooks/stop.ts +14 -0
- package/src/services/memory-service.ts +62 -58
|
@@ -11,744 +11,31 @@ import * as os from "os";
|
|
|
11
11
|
import * as fs4 from "fs";
|
|
12
12
|
import * as crypto2 from "crypto";
|
|
13
13
|
|
|
14
|
-
// src/core/event-store.ts
|
|
15
|
-
import { randomUUID } from "crypto";
|
|
16
|
-
|
|
17
|
-
// src/core/canonical-key.ts
|
|
18
|
-
import { createHash } from "crypto";
|
|
19
|
-
var MAX_KEY_LENGTH = 200;
|
|
20
|
-
function makeCanonicalKey(title, context) {
|
|
21
|
-
let normalized = title.normalize("NFKC");
|
|
22
|
-
normalized = normalized.toLowerCase();
|
|
23
|
-
normalized = normalized.replace(/[^\p{L}\p{N}\s]/gu, "");
|
|
24
|
-
normalized = normalized.replace(/\s+/g, " ").trim();
|
|
25
|
-
let key = normalized;
|
|
26
|
-
if (context?.project) {
|
|
27
|
-
key = `${context.project}::${key}`;
|
|
28
|
-
}
|
|
29
|
-
if (key.length > MAX_KEY_LENGTH) {
|
|
30
|
-
const hashSuffix = createHash("md5").update(key).digest("hex").slice(0, 8);
|
|
31
|
-
key = key.slice(0, MAX_KEY_LENGTH - 9) + "_" + hashSuffix;
|
|
32
|
-
}
|
|
33
|
-
return key;
|
|
34
|
-
}
|
|
35
|
-
function makeDedupeKey(content, sessionId) {
|
|
36
|
-
const contentHash = createHash("sha256").update(content).digest("hex");
|
|
37
|
-
return `${sessionId}:${contentHash}`;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
// src/core/db-wrapper.ts
|
|
41
|
-
import duckdb from "duckdb";
|
|
42
|
-
function convertBigInts(obj) {
|
|
43
|
-
if (obj === null || obj === void 0)
|
|
44
|
-
return obj;
|
|
45
|
-
if (typeof obj === "bigint")
|
|
46
|
-
return Number(obj);
|
|
47
|
-
if (obj instanceof Date)
|
|
48
|
-
return obj;
|
|
49
|
-
if (Array.isArray(obj))
|
|
50
|
-
return obj.map(convertBigInts);
|
|
51
|
-
if (typeof obj === "object") {
|
|
52
|
-
const result = {};
|
|
53
|
-
for (const [key, value] of Object.entries(obj)) {
|
|
54
|
-
result[key] = convertBigInts(value);
|
|
55
|
-
}
|
|
56
|
-
return result;
|
|
57
|
-
}
|
|
58
|
-
return obj;
|
|
59
|
-
}
|
|
60
|
-
function toDate(value) {
|
|
61
|
-
if (value instanceof Date)
|
|
62
|
-
return value;
|
|
63
|
-
if (typeof value === "string")
|
|
64
|
-
return new Date(value);
|
|
65
|
-
if (typeof value === "number")
|
|
66
|
-
return new Date(value);
|
|
67
|
-
return new Date(String(value));
|
|
68
|
-
}
|
|
69
|
-
function createDatabase(path4, options) {
|
|
70
|
-
if (options?.readOnly) {
|
|
71
|
-
return new duckdb.Database(path4, { access_mode: "READ_ONLY" });
|
|
72
|
-
}
|
|
73
|
-
return new duckdb.Database(path4);
|
|
74
|
-
}
|
|
75
|
-
function dbRun(db, sql, params = []) {
|
|
76
|
-
return new Promise((resolve2, reject) => {
|
|
77
|
-
if (params.length === 0) {
|
|
78
|
-
db.run(sql, (err) => {
|
|
79
|
-
if (err)
|
|
80
|
-
reject(err);
|
|
81
|
-
else
|
|
82
|
-
resolve2();
|
|
83
|
-
});
|
|
84
|
-
} else {
|
|
85
|
-
db.run(sql, ...params, (err) => {
|
|
86
|
-
if (err)
|
|
87
|
-
reject(err);
|
|
88
|
-
else
|
|
89
|
-
resolve2();
|
|
90
|
-
});
|
|
91
|
-
}
|
|
92
|
-
});
|
|
93
|
-
}
|
|
94
|
-
function dbAll(db, sql, params = []) {
|
|
95
|
-
return new Promise((resolve2, reject) => {
|
|
96
|
-
if (params.length === 0) {
|
|
97
|
-
db.all(sql, (err, rows) => {
|
|
98
|
-
if (err)
|
|
99
|
-
reject(err);
|
|
100
|
-
else
|
|
101
|
-
resolve2(convertBigInts(rows || []));
|
|
102
|
-
});
|
|
103
|
-
} else {
|
|
104
|
-
db.all(sql, ...params, (err, rows) => {
|
|
105
|
-
if (err)
|
|
106
|
-
reject(err);
|
|
107
|
-
else
|
|
108
|
-
resolve2(convertBigInts(rows || []));
|
|
109
|
-
});
|
|
110
|
-
}
|
|
111
|
-
});
|
|
112
|
-
}
|
|
113
|
-
function dbClose(db) {
|
|
114
|
-
return new Promise((resolve2, reject) => {
|
|
115
|
-
db.close((err) => {
|
|
116
|
-
if (err)
|
|
117
|
-
reject(err);
|
|
118
|
-
else
|
|
119
|
-
resolve2();
|
|
120
|
-
});
|
|
121
|
-
});
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
// src/core/event-store.ts
|
|
125
|
-
var EventStore = class {
|
|
126
|
-
constructor(dbPath, options) {
|
|
127
|
-
this.dbPath = dbPath;
|
|
128
|
-
this.readOnly = options?.readOnly ?? false;
|
|
129
|
-
this.db = createDatabase(dbPath, { readOnly: this.readOnly });
|
|
130
|
-
}
|
|
131
|
-
db;
|
|
132
|
-
initialized = false;
|
|
133
|
-
readOnly;
|
|
134
|
-
/**
|
|
135
|
-
* Initialize database schema
|
|
136
|
-
*/
|
|
137
|
-
async initialize() {
|
|
138
|
-
if (this.initialized)
|
|
139
|
-
return;
|
|
140
|
-
if (this.readOnly) {
|
|
141
|
-
this.initialized = true;
|
|
142
|
-
return;
|
|
143
|
-
}
|
|
144
|
-
await dbRun(this.db, `
|
|
145
|
-
CREATE TABLE IF NOT EXISTS events (
|
|
146
|
-
id VARCHAR PRIMARY KEY,
|
|
147
|
-
event_type VARCHAR NOT NULL,
|
|
148
|
-
session_id VARCHAR NOT NULL,
|
|
149
|
-
timestamp TIMESTAMP NOT NULL,
|
|
150
|
-
content TEXT NOT NULL,
|
|
151
|
-
canonical_key VARCHAR NOT NULL,
|
|
152
|
-
dedupe_key VARCHAR UNIQUE,
|
|
153
|
-
metadata JSON
|
|
154
|
-
)
|
|
155
|
-
`);
|
|
156
|
-
await dbRun(this.db, `
|
|
157
|
-
CREATE TABLE IF NOT EXISTS event_dedup (
|
|
158
|
-
dedupe_key VARCHAR PRIMARY KEY,
|
|
159
|
-
event_id VARCHAR NOT NULL,
|
|
160
|
-
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
161
|
-
)
|
|
162
|
-
`);
|
|
163
|
-
await dbRun(this.db, `
|
|
164
|
-
CREATE TABLE IF NOT EXISTS sessions (
|
|
165
|
-
id VARCHAR PRIMARY KEY,
|
|
166
|
-
started_at TIMESTAMP NOT NULL,
|
|
167
|
-
ended_at TIMESTAMP,
|
|
168
|
-
project_path VARCHAR,
|
|
169
|
-
summary TEXT,
|
|
170
|
-
tags JSON
|
|
171
|
-
)
|
|
172
|
-
`);
|
|
173
|
-
await dbRun(this.db, `
|
|
174
|
-
CREATE TABLE IF NOT EXISTS insights (
|
|
175
|
-
id VARCHAR PRIMARY KEY,
|
|
176
|
-
insight_type VARCHAR NOT NULL,
|
|
177
|
-
content TEXT NOT NULL,
|
|
178
|
-
canonical_key VARCHAR NOT NULL,
|
|
179
|
-
confidence FLOAT,
|
|
180
|
-
source_events JSON,
|
|
181
|
-
created_at TIMESTAMP,
|
|
182
|
-
last_updated TIMESTAMP
|
|
183
|
-
)
|
|
184
|
-
`);
|
|
185
|
-
await dbRun(this.db, `
|
|
186
|
-
CREATE TABLE IF NOT EXISTS embedding_outbox (
|
|
187
|
-
id VARCHAR PRIMARY KEY,
|
|
188
|
-
event_id VARCHAR NOT NULL,
|
|
189
|
-
content TEXT NOT NULL,
|
|
190
|
-
status VARCHAR DEFAULT 'pending',
|
|
191
|
-
retry_count INT DEFAULT 0,
|
|
192
|
-
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
193
|
-
processed_at TIMESTAMP,
|
|
194
|
-
error_message TEXT
|
|
195
|
-
)
|
|
196
|
-
`);
|
|
197
|
-
await dbRun(this.db, `
|
|
198
|
-
CREATE TABLE IF NOT EXISTS projection_offsets (
|
|
199
|
-
projection_name VARCHAR PRIMARY KEY,
|
|
200
|
-
last_event_id VARCHAR,
|
|
201
|
-
last_timestamp TIMESTAMP,
|
|
202
|
-
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
203
|
-
)
|
|
204
|
-
`);
|
|
205
|
-
await dbRun(this.db, `
|
|
206
|
-
CREATE TABLE IF NOT EXISTS memory_levels (
|
|
207
|
-
event_id VARCHAR PRIMARY KEY,
|
|
208
|
-
level VARCHAR NOT NULL DEFAULT 'L0',
|
|
209
|
-
promoted_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
210
|
-
)
|
|
211
|
-
`);
|
|
212
|
-
await dbRun(this.db, `
|
|
213
|
-
CREATE TABLE IF NOT EXISTS entries (
|
|
214
|
-
entry_id VARCHAR PRIMARY KEY,
|
|
215
|
-
created_ts TIMESTAMP NOT NULL,
|
|
216
|
-
entry_type VARCHAR NOT NULL,
|
|
217
|
-
title VARCHAR NOT NULL,
|
|
218
|
-
content_json JSON NOT NULL,
|
|
219
|
-
stage VARCHAR NOT NULL DEFAULT 'raw',
|
|
220
|
-
status VARCHAR DEFAULT 'active',
|
|
221
|
-
superseded_by VARCHAR,
|
|
222
|
-
build_id VARCHAR,
|
|
223
|
-
evidence_json JSON,
|
|
224
|
-
canonical_key VARCHAR,
|
|
225
|
-
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
226
|
-
)
|
|
227
|
-
`);
|
|
228
|
-
await dbRun(this.db, `
|
|
229
|
-
CREATE TABLE IF NOT EXISTS entities (
|
|
230
|
-
entity_id VARCHAR PRIMARY KEY,
|
|
231
|
-
entity_type VARCHAR NOT NULL,
|
|
232
|
-
canonical_key VARCHAR NOT NULL,
|
|
233
|
-
title VARCHAR NOT NULL,
|
|
234
|
-
stage VARCHAR NOT NULL DEFAULT 'raw',
|
|
235
|
-
status VARCHAR NOT NULL DEFAULT 'active',
|
|
236
|
-
current_json JSON NOT NULL,
|
|
237
|
-
title_norm VARCHAR,
|
|
238
|
-
search_text VARCHAR,
|
|
239
|
-
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
240
|
-
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
241
|
-
)
|
|
242
|
-
`);
|
|
243
|
-
await dbRun(this.db, `
|
|
244
|
-
CREATE TABLE IF NOT EXISTS entity_aliases (
|
|
245
|
-
entity_type VARCHAR NOT NULL,
|
|
246
|
-
canonical_key VARCHAR NOT NULL,
|
|
247
|
-
entity_id VARCHAR NOT NULL,
|
|
248
|
-
is_primary BOOLEAN DEFAULT FALSE,
|
|
249
|
-
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
250
|
-
PRIMARY KEY(entity_type, canonical_key)
|
|
251
|
-
)
|
|
252
|
-
`);
|
|
253
|
-
await dbRun(this.db, `
|
|
254
|
-
CREATE TABLE IF NOT EXISTS edges (
|
|
255
|
-
edge_id VARCHAR PRIMARY KEY,
|
|
256
|
-
src_type VARCHAR NOT NULL,
|
|
257
|
-
src_id VARCHAR NOT NULL,
|
|
258
|
-
rel_type VARCHAR NOT NULL,
|
|
259
|
-
dst_type VARCHAR NOT NULL,
|
|
260
|
-
dst_id VARCHAR NOT NULL,
|
|
261
|
-
meta_json JSON,
|
|
262
|
-
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
263
|
-
)
|
|
264
|
-
`);
|
|
265
|
-
await dbRun(this.db, `
|
|
266
|
-
CREATE TABLE IF NOT EXISTS vector_outbox (
|
|
267
|
-
job_id VARCHAR PRIMARY KEY,
|
|
268
|
-
item_kind VARCHAR NOT NULL,
|
|
269
|
-
item_id VARCHAR NOT NULL,
|
|
270
|
-
embedding_version VARCHAR NOT NULL,
|
|
271
|
-
status VARCHAR NOT NULL DEFAULT 'pending',
|
|
272
|
-
retry_count INT DEFAULT 0,
|
|
273
|
-
error VARCHAR,
|
|
274
|
-
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
275
|
-
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
276
|
-
UNIQUE(item_kind, item_id, embedding_version)
|
|
277
|
-
)
|
|
278
|
-
`);
|
|
279
|
-
await dbRun(this.db, `
|
|
280
|
-
CREATE TABLE IF NOT EXISTS build_runs (
|
|
281
|
-
build_id VARCHAR PRIMARY KEY,
|
|
282
|
-
started_at TIMESTAMP NOT NULL,
|
|
283
|
-
finished_at TIMESTAMP,
|
|
284
|
-
extractor_model VARCHAR NOT NULL,
|
|
285
|
-
extractor_prompt_hash VARCHAR NOT NULL,
|
|
286
|
-
embedder_model VARCHAR NOT NULL,
|
|
287
|
-
embedding_version VARCHAR NOT NULL,
|
|
288
|
-
idris_version VARCHAR NOT NULL,
|
|
289
|
-
schema_version VARCHAR NOT NULL,
|
|
290
|
-
status VARCHAR NOT NULL DEFAULT 'running',
|
|
291
|
-
error VARCHAR
|
|
292
|
-
)
|
|
293
|
-
`);
|
|
294
|
-
await dbRun(this.db, `
|
|
295
|
-
CREATE TABLE IF NOT EXISTS pipeline_metrics (
|
|
296
|
-
id VARCHAR PRIMARY KEY,
|
|
297
|
-
ts TIMESTAMP NOT NULL,
|
|
298
|
-
stage VARCHAR NOT NULL,
|
|
299
|
-
latency_ms DOUBLE NOT NULL,
|
|
300
|
-
success BOOLEAN NOT NULL,
|
|
301
|
-
error VARCHAR,
|
|
302
|
-
session_id VARCHAR
|
|
303
|
-
)
|
|
304
|
-
`);
|
|
305
|
-
await dbRun(this.db, `
|
|
306
|
-
CREATE TABLE IF NOT EXISTS working_set (
|
|
307
|
-
id VARCHAR PRIMARY KEY,
|
|
308
|
-
event_id VARCHAR NOT NULL,
|
|
309
|
-
added_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
310
|
-
relevance_score FLOAT DEFAULT 1.0,
|
|
311
|
-
topics JSON,
|
|
312
|
-
expires_at TIMESTAMP
|
|
313
|
-
)
|
|
314
|
-
`);
|
|
315
|
-
await dbRun(this.db, `
|
|
316
|
-
CREATE TABLE IF NOT EXISTS consolidated_memories (
|
|
317
|
-
memory_id VARCHAR PRIMARY KEY,
|
|
318
|
-
summary TEXT NOT NULL,
|
|
319
|
-
topics JSON,
|
|
320
|
-
source_events JSON,
|
|
321
|
-
confidence FLOAT DEFAULT 0.5,
|
|
322
|
-
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
323
|
-
accessed_at TIMESTAMP,
|
|
324
|
-
access_count INTEGER DEFAULT 0
|
|
325
|
-
)
|
|
326
|
-
`);
|
|
327
|
-
await dbRun(this.db, `
|
|
328
|
-
CREATE TABLE IF NOT EXISTS continuity_log (
|
|
329
|
-
log_id VARCHAR PRIMARY KEY,
|
|
330
|
-
from_context_id VARCHAR,
|
|
331
|
-
to_context_id VARCHAR,
|
|
332
|
-
continuity_score FLOAT,
|
|
333
|
-
transition_type VARCHAR,
|
|
334
|
-
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
335
|
-
)
|
|
336
|
-
`);
|
|
337
|
-
await dbRun(this.db, `
|
|
338
|
-
CREATE TABLE IF NOT EXISTS consolidated_rules (
|
|
339
|
-
rule_id VARCHAR PRIMARY KEY,
|
|
340
|
-
rule TEXT NOT NULL,
|
|
341
|
-
topics JSON,
|
|
342
|
-
source_memory_ids JSON,
|
|
343
|
-
source_events JSON,
|
|
344
|
-
confidence FLOAT DEFAULT 0.5,
|
|
345
|
-
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
346
|
-
)
|
|
347
|
-
`);
|
|
348
|
-
await dbRun(this.db, `
|
|
349
|
-
CREATE TABLE IF NOT EXISTS endless_config (
|
|
350
|
-
key VARCHAR PRIMARY KEY,
|
|
351
|
-
value JSON,
|
|
352
|
-
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
353
|
-
)
|
|
354
|
-
`);
|
|
355
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_entries_type ON entries(entry_type)`);
|
|
356
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_entries_stage ON entries(stage)`);
|
|
357
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_entries_canonical ON entries(canonical_key)`);
|
|
358
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_entities_type_key ON entities(entity_type, canonical_key)`);
|
|
359
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_entities_status ON entities(status)`);
|
|
360
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_edges_src ON edges(src_id, rel_type)`);
|
|
361
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_edges_dst ON edges(dst_id, rel_type)`);
|
|
362
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_edges_rel ON edges(rel_type)`);
|
|
363
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_outbox_status ON vector_outbox(status)`);
|
|
364
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_working_set_expires ON working_set(expires_at)`);
|
|
365
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_working_set_relevance ON working_set(relevance_score DESC)`);
|
|
366
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_consolidated_confidence ON consolidated_memories(confidence DESC)`);
|
|
367
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_consolidated_rules_confidence ON consolidated_rules(confidence DESC)`);
|
|
368
|
-
await dbRun(this.db, `CREATE INDEX IF NOT EXISTS idx_continuity_created ON continuity_log(created_at)`);
|
|
369
|
-
this.initialized = true;
|
|
370
|
-
}
|
|
371
|
-
/**
|
|
372
|
-
* Append event to store (AXIOMMIND Principle 2: Append-only)
|
|
373
|
-
* Returns existing event ID if duplicate (Principle 3: Idempotency)
|
|
374
|
-
*/
|
|
375
|
-
async append(input) {
|
|
376
|
-
await this.initialize();
|
|
377
|
-
const canonicalKey = makeCanonicalKey(input.content);
|
|
378
|
-
const dedupeKey = makeDedupeKey(input.content, input.sessionId);
|
|
379
|
-
const existing = await dbAll(
|
|
380
|
-
this.db,
|
|
381
|
-
`SELECT event_id FROM event_dedup WHERE dedupe_key = ?`,
|
|
382
|
-
[dedupeKey]
|
|
383
|
-
);
|
|
384
|
-
if (existing.length > 0) {
|
|
385
|
-
return {
|
|
386
|
-
success: true,
|
|
387
|
-
eventId: existing[0].event_id,
|
|
388
|
-
isDuplicate: true
|
|
389
|
-
};
|
|
390
|
-
}
|
|
391
|
-
const id = randomUUID();
|
|
392
|
-
const timestamp = input.timestamp.toISOString();
|
|
393
|
-
try {
|
|
394
|
-
await dbRun(
|
|
395
|
-
this.db,
|
|
396
|
-
`INSERT INTO events (id, event_type, session_id, timestamp, content, canonical_key, dedupe_key, metadata)
|
|
397
|
-
VALUES (?, ?, ?, ?, ?, ?, ?, ?)`,
|
|
398
|
-
[
|
|
399
|
-
id,
|
|
400
|
-
input.eventType,
|
|
401
|
-
input.sessionId,
|
|
402
|
-
timestamp,
|
|
403
|
-
input.content,
|
|
404
|
-
canonicalKey,
|
|
405
|
-
dedupeKey,
|
|
406
|
-
JSON.stringify(input.metadata || {})
|
|
407
|
-
]
|
|
408
|
-
);
|
|
409
|
-
await dbRun(
|
|
410
|
-
this.db,
|
|
411
|
-
`INSERT INTO event_dedup (dedupe_key, event_id) VALUES (?, ?)`,
|
|
412
|
-
[dedupeKey, id]
|
|
413
|
-
);
|
|
414
|
-
await dbRun(
|
|
415
|
-
this.db,
|
|
416
|
-
`INSERT INTO memory_levels (event_id, level) VALUES (?, 'L0')`,
|
|
417
|
-
[id]
|
|
418
|
-
);
|
|
419
|
-
return { success: true, eventId: id, isDuplicate: false };
|
|
420
|
-
} catch (error) {
|
|
421
|
-
return {
|
|
422
|
-
success: false,
|
|
423
|
-
error: error instanceof Error ? error.message : String(error)
|
|
424
|
-
};
|
|
425
|
-
}
|
|
426
|
-
}
|
|
427
|
-
/**
|
|
428
|
-
* Get events by session ID
|
|
429
|
-
*/
|
|
430
|
-
async getSessionEvents(sessionId) {
|
|
431
|
-
await this.initialize();
|
|
432
|
-
const rows = await dbAll(
|
|
433
|
-
this.db,
|
|
434
|
-
`SELECT * FROM events WHERE session_id = ? ORDER BY timestamp ASC`,
|
|
435
|
-
[sessionId]
|
|
436
|
-
);
|
|
437
|
-
return rows.map(this.rowToEvent);
|
|
438
|
-
}
|
|
439
|
-
/**
|
|
440
|
-
* Get recent events
|
|
441
|
-
*/
|
|
442
|
-
async getRecentEvents(limit = 100) {
|
|
443
|
-
await this.initialize();
|
|
444
|
-
const rows = await dbAll(
|
|
445
|
-
this.db,
|
|
446
|
-
`SELECT * FROM events ORDER BY timestamp DESC LIMIT ?`,
|
|
447
|
-
[limit]
|
|
448
|
-
);
|
|
449
|
-
return rows.map(this.rowToEvent);
|
|
450
|
-
}
|
|
451
|
-
/**
|
|
452
|
-
* Get event by ID
|
|
453
|
-
*/
|
|
454
|
-
async getEvent(id) {
|
|
455
|
-
await this.initialize();
|
|
456
|
-
const rows = await dbAll(
|
|
457
|
-
this.db,
|
|
458
|
-
`SELECT * FROM events WHERE id = ?`,
|
|
459
|
-
[id]
|
|
460
|
-
);
|
|
461
|
-
if (rows.length === 0)
|
|
462
|
-
return null;
|
|
463
|
-
return this.rowToEvent(rows[0]);
|
|
464
|
-
}
|
|
465
|
-
/**
|
|
466
|
-
* Create or update session
|
|
467
|
-
*/
|
|
468
|
-
async upsertSession(session) {
|
|
469
|
-
await this.initialize();
|
|
470
|
-
const existing = await dbAll(
|
|
471
|
-
this.db,
|
|
472
|
-
`SELECT id FROM sessions WHERE id = ?`,
|
|
473
|
-
[session.id]
|
|
474
|
-
);
|
|
475
|
-
if (existing.length === 0) {
|
|
476
|
-
await dbRun(
|
|
477
|
-
this.db,
|
|
478
|
-
`INSERT INTO sessions (id, started_at, project_path, tags)
|
|
479
|
-
VALUES (?, ?, ?, ?)`,
|
|
480
|
-
[
|
|
481
|
-
session.id,
|
|
482
|
-
(session.startedAt || /* @__PURE__ */ new Date()).toISOString(),
|
|
483
|
-
session.projectPath || null,
|
|
484
|
-
JSON.stringify(session.tags || [])
|
|
485
|
-
]
|
|
486
|
-
);
|
|
487
|
-
} else {
|
|
488
|
-
const updates = [];
|
|
489
|
-
const values = [];
|
|
490
|
-
if (session.endedAt) {
|
|
491
|
-
updates.push("ended_at = ?");
|
|
492
|
-
values.push(session.endedAt.toISOString());
|
|
493
|
-
}
|
|
494
|
-
if (session.summary) {
|
|
495
|
-
updates.push("summary = ?");
|
|
496
|
-
values.push(session.summary);
|
|
497
|
-
}
|
|
498
|
-
if (session.tags) {
|
|
499
|
-
updates.push("tags = ?");
|
|
500
|
-
values.push(JSON.stringify(session.tags));
|
|
501
|
-
}
|
|
502
|
-
if (updates.length > 0) {
|
|
503
|
-
values.push(session.id);
|
|
504
|
-
await dbRun(
|
|
505
|
-
this.db,
|
|
506
|
-
`UPDATE sessions SET ${updates.join(", ")} WHERE id = ?`,
|
|
507
|
-
values
|
|
508
|
-
);
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
/**
|
|
513
|
-
* Get session by ID
|
|
514
|
-
*/
|
|
515
|
-
async getSession(id) {
|
|
516
|
-
await this.initialize();
|
|
517
|
-
const rows = await dbAll(
|
|
518
|
-
this.db,
|
|
519
|
-
`SELECT * FROM sessions WHERE id = ?`,
|
|
520
|
-
[id]
|
|
521
|
-
);
|
|
522
|
-
if (rows.length === 0)
|
|
523
|
-
return null;
|
|
524
|
-
const row = rows[0];
|
|
525
|
-
return {
|
|
526
|
-
id: row.id,
|
|
527
|
-
startedAt: toDate(row.started_at),
|
|
528
|
-
endedAt: row.ended_at ? toDate(row.ended_at) : void 0,
|
|
529
|
-
projectPath: row.project_path,
|
|
530
|
-
summary: row.summary,
|
|
531
|
-
tags: row.tags ? JSON.parse(row.tags) : void 0
|
|
532
|
-
};
|
|
533
|
-
}
|
|
534
|
-
/**
|
|
535
|
-
* Add to embedding outbox (Single-Writer Pattern)
|
|
536
|
-
*/
|
|
537
|
-
async enqueueForEmbedding(eventId, content) {
|
|
538
|
-
await this.initialize();
|
|
539
|
-
const id = randomUUID();
|
|
540
|
-
await dbRun(
|
|
541
|
-
this.db,
|
|
542
|
-
`INSERT INTO embedding_outbox (id, event_id, content, status, retry_count)
|
|
543
|
-
VALUES (?, ?, ?, 'pending', 0)`,
|
|
544
|
-
[id, eventId, content]
|
|
545
|
-
);
|
|
546
|
-
return id;
|
|
547
|
-
}
|
|
548
|
-
/**
|
|
549
|
-
* Get pending outbox items
|
|
550
|
-
*/
|
|
551
|
-
async getPendingOutboxItems(limit = 32) {
|
|
552
|
-
await this.initialize();
|
|
553
|
-
const pending = await dbAll(
|
|
554
|
-
this.db,
|
|
555
|
-
`SELECT * FROM embedding_outbox
|
|
556
|
-
WHERE status = 'pending'
|
|
557
|
-
ORDER BY created_at
|
|
558
|
-
LIMIT ?`,
|
|
559
|
-
[limit]
|
|
560
|
-
);
|
|
561
|
-
if (pending.length === 0)
|
|
562
|
-
return [];
|
|
563
|
-
const ids = pending.map((r) => r.id);
|
|
564
|
-
const placeholders = ids.map(() => "?").join(",");
|
|
565
|
-
await dbRun(
|
|
566
|
-
this.db,
|
|
567
|
-
`UPDATE embedding_outbox SET status = 'processing' WHERE id IN (${placeholders})`,
|
|
568
|
-
ids
|
|
569
|
-
);
|
|
570
|
-
return pending.map((row) => ({
|
|
571
|
-
id: row.id,
|
|
572
|
-
eventId: row.event_id,
|
|
573
|
-
content: row.content,
|
|
574
|
-
status: "processing",
|
|
575
|
-
retryCount: row.retry_count,
|
|
576
|
-
createdAt: toDate(row.created_at),
|
|
577
|
-
errorMessage: row.error_message
|
|
578
|
-
}));
|
|
579
|
-
}
|
|
580
|
-
/**
|
|
581
|
-
* Mark outbox items as done
|
|
582
|
-
*/
|
|
583
|
-
async completeOutboxItems(ids) {
|
|
584
|
-
if (ids.length === 0)
|
|
585
|
-
return;
|
|
586
|
-
const placeholders = ids.map(() => "?").join(",");
|
|
587
|
-
await dbRun(
|
|
588
|
-
this.db,
|
|
589
|
-
`DELETE FROM embedding_outbox WHERE id IN (${placeholders})`,
|
|
590
|
-
ids
|
|
591
|
-
);
|
|
592
|
-
}
|
|
593
|
-
/**
|
|
594
|
-
* Mark outbox items as failed
|
|
595
|
-
*/
|
|
596
|
-
async failOutboxItems(ids, error) {
|
|
597
|
-
if (ids.length === 0)
|
|
598
|
-
return;
|
|
599
|
-
const placeholders = ids.map(() => "?").join(",");
|
|
600
|
-
await dbRun(
|
|
601
|
-
this.db,
|
|
602
|
-
`UPDATE embedding_outbox
|
|
603
|
-
SET status = CASE WHEN retry_count >= 3 THEN 'failed' ELSE 'pending' END,
|
|
604
|
-
retry_count = retry_count + 1,
|
|
605
|
-
error_message = ?
|
|
606
|
-
WHERE id IN (${placeholders})`,
|
|
607
|
-
[error, ...ids]
|
|
608
|
-
);
|
|
609
|
-
}
|
|
610
|
-
/**
|
|
611
|
-
* Update memory level
|
|
612
|
-
*/
|
|
613
|
-
async updateMemoryLevel(eventId, level) {
|
|
614
|
-
await this.initialize();
|
|
615
|
-
await dbRun(
|
|
616
|
-
this.db,
|
|
617
|
-
`UPDATE memory_levels SET level = ?, promoted_at = CURRENT_TIMESTAMP WHERE event_id = ?`,
|
|
618
|
-
[level, eventId]
|
|
619
|
-
);
|
|
620
|
-
}
|
|
621
|
-
/**
|
|
622
|
-
* Get memory level statistics
|
|
623
|
-
*/
|
|
624
|
-
async getLevelStats() {
|
|
625
|
-
await this.initialize();
|
|
626
|
-
const rows = await dbAll(
|
|
627
|
-
this.db,
|
|
628
|
-
`SELECT level, COUNT(*) as count FROM memory_levels GROUP BY level`
|
|
629
|
-
);
|
|
630
|
-
return rows;
|
|
631
|
-
}
|
|
632
|
-
/**
|
|
633
|
-
* Get events by memory level
|
|
634
|
-
*/
|
|
635
|
-
async getEventsByLevel(level, options) {
|
|
636
|
-
await this.initialize();
|
|
637
|
-
const limit = options?.limit || 50;
|
|
638
|
-
const offset = options?.offset || 0;
|
|
639
|
-
const rows = await dbAll(
|
|
640
|
-
this.db,
|
|
641
|
-
`SELECT e.* FROM events e
|
|
642
|
-
INNER JOIN memory_levels ml ON e.id = ml.event_id
|
|
643
|
-
WHERE ml.level = ?
|
|
644
|
-
ORDER BY e.timestamp DESC
|
|
645
|
-
LIMIT ? OFFSET ?`,
|
|
646
|
-
[level, limit, offset]
|
|
647
|
-
);
|
|
648
|
-
return rows.map((row) => this.rowToEvent(row));
|
|
649
|
-
}
|
|
650
|
-
/**
|
|
651
|
-
* Get memory level for a specific event
|
|
652
|
-
*/
|
|
653
|
-
async getEventLevel(eventId) {
|
|
654
|
-
await this.initialize();
|
|
655
|
-
const rows = await dbAll(
|
|
656
|
-
this.db,
|
|
657
|
-
`SELECT level FROM memory_levels WHERE event_id = ?`,
|
|
658
|
-
[eventId]
|
|
659
|
-
);
|
|
660
|
-
return rows.length > 0 ? rows[0].level : null;
|
|
661
|
-
}
|
|
662
|
-
// ============================================================
|
|
663
|
-
// Endless Mode Helper Methods
|
|
664
|
-
// ============================================================
|
|
665
|
-
/**
|
|
666
|
-
* Get database instance for Endless Mode stores
|
|
667
|
-
*/
|
|
668
|
-
getDatabase() {
|
|
669
|
-
return this.db;
|
|
670
|
-
}
|
|
671
|
-
/**
|
|
672
|
-
* Get config value for endless mode
|
|
673
|
-
*/
|
|
674
|
-
async getEndlessConfig(key) {
|
|
675
|
-
await this.initialize();
|
|
676
|
-
const rows = await dbAll(
|
|
677
|
-
this.db,
|
|
678
|
-
`SELECT value FROM endless_config WHERE key = ?`,
|
|
679
|
-
[key]
|
|
680
|
-
);
|
|
681
|
-
if (rows.length === 0)
|
|
682
|
-
return null;
|
|
683
|
-
return JSON.parse(rows[0].value);
|
|
684
|
-
}
|
|
685
|
-
/**
|
|
686
|
-
* Set config value for endless mode
|
|
687
|
-
*/
|
|
688
|
-
async setEndlessConfig(key, value) {
|
|
689
|
-
await this.initialize();
|
|
690
|
-
await dbRun(
|
|
691
|
-
this.db,
|
|
692
|
-
`INSERT OR REPLACE INTO endless_config (key, value, updated_at)
|
|
693
|
-
VALUES (?, ?, CURRENT_TIMESTAMP)`,
|
|
694
|
-
[key, JSON.stringify(value)]
|
|
695
|
-
);
|
|
696
|
-
}
|
|
697
|
-
/**
|
|
698
|
-
* Get all sessions
|
|
699
|
-
*/
|
|
700
|
-
async getAllSessions() {
|
|
701
|
-
await this.initialize();
|
|
702
|
-
const rows = await dbAll(
|
|
703
|
-
this.db,
|
|
704
|
-
`SELECT * FROM sessions ORDER BY started_at DESC`
|
|
705
|
-
);
|
|
706
|
-
return rows.map((row) => ({
|
|
707
|
-
id: row.id,
|
|
708
|
-
startedAt: toDate(row.started_at),
|
|
709
|
-
endedAt: row.ended_at ? toDate(row.ended_at) : void 0,
|
|
710
|
-
projectPath: row.project_path,
|
|
711
|
-
summary: row.summary,
|
|
712
|
-
tags: row.tags ? JSON.parse(row.tags) : void 0
|
|
713
|
-
}));
|
|
714
|
-
}
|
|
715
|
-
/**
|
|
716
|
-
* Increment access count for events (stub for compatibility)
|
|
717
|
-
*/
|
|
718
|
-
async incrementAccessCount(eventIds) {
|
|
719
|
-
return Promise.resolve();
|
|
720
|
-
}
|
|
721
|
-
/**
|
|
722
|
-
* Get most accessed memories (stub for compatibility)
|
|
723
|
-
*/
|
|
724
|
-
async getMostAccessed(limit = 10) {
|
|
725
|
-
return [];
|
|
726
|
-
}
|
|
727
|
-
/**
|
|
728
|
-
* Close database connection
|
|
729
|
-
*/
|
|
730
|
-
async close() {
|
|
731
|
-
await dbClose(this.db);
|
|
14
|
+
// src/core/sqlite-event-store.ts
|
|
15
|
+
import { randomUUID } from "crypto";
|
|
16
|
+
|
|
17
|
+
// src/core/canonical-key.ts
|
|
18
|
+
import { createHash } from "crypto";
|
|
19
|
+
var MAX_KEY_LENGTH = 200;
|
|
20
|
+
function makeCanonicalKey(title, context) {
|
|
21
|
+
let normalized = title.normalize("NFKC");
|
|
22
|
+
normalized = normalized.toLowerCase();
|
|
23
|
+
normalized = normalized.replace(/[^\p{L}\p{N}\s]/gu, "");
|
|
24
|
+
normalized = normalized.replace(/\s+/g, " ").trim();
|
|
25
|
+
let key = normalized;
|
|
26
|
+
if (context?.project) {
|
|
27
|
+
key = `${context.project}::${key}`;
|
|
732
28
|
}
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
rowToEvent(row) {
|
|
737
|
-
return {
|
|
738
|
-
id: row.id,
|
|
739
|
-
eventType: row.event_type,
|
|
740
|
-
sessionId: row.session_id,
|
|
741
|
-
timestamp: toDate(row.timestamp),
|
|
742
|
-
content: row.content,
|
|
743
|
-
canonicalKey: row.canonical_key,
|
|
744
|
-
dedupeKey: row.dedupe_key,
|
|
745
|
-
metadata: row.metadata ? JSON.parse(row.metadata) : void 0
|
|
746
|
-
};
|
|
29
|
+
if (key.length > MAX_KEY_LENGTH) {
|
|
30
|
+
const hashSuffix = createHash("md5").update(key).digest("hex").slice(0, 8);
|
|
31
|
+
key = key.slice(0, MAX_KEY_LENGTH - 9) + "_" + hashSuffix;
|
|
747
32
|
}
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
33
|
+
return key;
|
|
34
|
+
}
|
|
35
|
+
function makeDedupeKey(content, sessionId) {
|
|
36
|
+
const contentHash = createHash("sha256").update(content).digest("hex");
|
|
37
|
+
return `${sessionId}:${contentHash}`;
|
|
38
|
+
}
|
|
752
39
|
|
|
753
40
|
// src/core/sqlite-wrapper.ts
|
|
754
41
|
import Database from "better-sqlite3";
|
|
@@ -1263,7 +550,7 @@ var SQLiteEventStore = class {
|
|
|
1263
550
|
isDuplicate: true
|
|
1264
551
|
};
|
|
1265
552
|
}
|
|
1266
|
-
const id =
|
|
553
|
+
const id = randomUUID();
|
|
1267
554
|
const timestamp = toSQLiteTimestamp(input.timestamp);
|
|
1268
555
|
try {
|
|
1269
556
|
const metadata = input.metadata || {};
|
|
@@ -1317,6 +604,29 @@ var SQLiteEventStore = class {
|
|
|
1317
604
|
};
|
|
1318
605
|
}
|
|
1319
606
|
}
|
|
607
|
+
/**
|
|
608
|
+
* Get session IDs that have events but no session_summary event.
|
|
609
|
+
* Used to backfill summaries for sessions that ended without Stop hook.
|
|
610
|
+
*/
|
|
611
|
+
async getSessionsWithoutSummary(currentSessionId, limit = 5) {
|
|
612
|
+
await this.initialize();
|
|
613
|
+
const rows = sqliteAll(
|
|
614
|
+
this.db,
|
|
615
|
+
`SELECT DISTINCT e.session_id
|
|
616
|
+
FROM events e
|
|
617
|
+
WHERE e.session_id != ?
|
|
618
|
+
AND e.event_type != 'session_summary'
|
|
619
|
+
AND e.session_id NOT IN (
|
|
620
|
+
SELECT DISTINCT session_id FROM events WHERE event_type = 'session_summary'
|
|
621
|
+
)
|
|
622
|
+
GROUP BY e.session_id
|
|
623
|
+
HAVING COUNT(*) >= 3
|
|
624
|
+
ORDER BY MAX(e.timestamp) DESC
|
|
625
|
+
LIMIT ?`,
|
|
626
|
+
[currentSessionId, limit]
|
|
627
|
+
);
|
|
628
|
+
return rows.map((r) => r.session_id);
|
|
629
|
+
}
|
|
1320
630
|
/**
|
|
1321
631
|
* Get events by session ID
|
|
1322
632
|
*/
|
|
@@ -1544,7 +854,7 @@ var SQLiteEventStore = class {
|
|
|
1544
854
|
*/
|
|
1545
855
|
async enqueueForEmbedding(eventId, content) {
|
|
1546
856
|
await this.initialize();
|
|
1547
|
-
const id =
|
|
857
|
+
const id = randomUUID();
|
|
1548
858
|
sqliteRun(
|
|
1549
859
|
this.db,
|
|
1550
860
|
`INSERT INTO embedding_outbox (id, event_id, content, status, retry_count)
|
|
@@ -1825,7 +1135,7 @@ var SQLiteEventStore = class {
|
|
|
1825
1135
|
if (this.readOnly)
|
|
1826
1136
|
return;
|
|
1827
1137
|
await this.initialize();
|
|
1828
|
-
const id =
|
|
1138
|
+
const id = randomUUID();
|
|
1829
1139
|
sqliteRun(
|
|
1830
1140
|
this.db,
|
|
1831
1141
|
`INSERT INTO memory_helpfulness (id, event_id, session_id, retrieval_score, query_preview, created_at)
|
|
@@ -2046,7 +1356,7 @@ var SQLiteEventStore = class {
|
|
|
2046
1356
|
}
|
|
2047
1357
|
async recordRetrievalTrace(input) {
|
|
2048
1358
|
await this.initialize();
|
|
2049
|
-
const traceId =
|
|
1359
|
+
const traceId = randomUUID();
|
|
2050
1360
|
sqliteRun(
|
|
2051
1361
|
this.db,
|
|
2052
1362
|
`INSERT INTO retrieval_traces (
|
|
@@ -2300,169 +1610,6 @@ var SQLiteEventStore = class {
|
|
|
2300
1610
|
}
|
|
2301
1611
|
};
|
|
2302
1612
|
|
|
2303
|
-
// src/core/sync-worker.ts
|
|
2304
|
-
var DEFAULT_CONFIG = {
|
|
2305
|
-
intervalMs: 3e4,
|
|
2306
|
-
batchSize: 500,
|
|
2307
|
-
maxRetries: 3,
|
|
2308
|
-
retryDelayMs: 5e3
|
|
2309
|
-
};
|
|
2310
|
-
var SyncWorker = class {
|
|
2311
|
-
constructor(sqliteStore, duckdbStore, config) {
|
|
2312
|
-
this.sqliteStore = sqliteStore;
|
|
2313
|
-
this.duckdbStore = duckdbStore;
|
|
2314
|
-
this.config = { ...DEFAULT_CONFIG, ...config };
|
|
2315
|
-
}
|
|
2316
|
-
config;
|
|
2317
|
-
intervalHandle = null;
|
|
2318
|
-
running = false;
|
|
2319
|
-
stats = {
|
|
2320
|
-
lastSyncAt: null,
|
|
2321
|
-
eventsSynced: 0,
|
|
2322
|
-
sessionsSynced: 0,
|
|
2323
|
-
errors: 0,
|
|
2324
|
-
status: "idle"
|
|
2325
|
-
};
|
|
2326
|
-
/**
|
|
2327
|
-
* Start the sync worker
|
|
2328
|
-
*/
|
|
2329
|
-
start() {
|
|
2330
|
-
if (this.running)
|
|
2331
|
-
return;
|
|
2332
|
-
this.running = true;
|
|
2333
|
-
this.stats.status = "idle";
|
|
2334
|
-
this.syncNow().catch((err) => {
|
|
2335
|
-
console.error("[SyncWorker] Initial sync failed:", err);
|
|
2336
|
-
});
|
|
2337
|
-
this.intervalHandle = setInterval(() => {
|
|
2338
|
-
this.syncNow().catch((err) => {
|
|
2339
|
-
console.error("[SyncWorker] Periodic sync failed:", err);
|
|
2340
|
-
});
|
|
2341
|
-
}, this.config.intervalMs);
|
|
2342
|
-
}
|
|
2343
|
-
/**
|
|
2344
|
-
* Stop the sync worker
|
|
2345
|
-
*/
|
|
2346
|
-
stop() {
|
|
2347
|
-
this.running = false;
|
|
2348
|
-
this.stats.status = "stopped";
|
|
2349
|
-
if (this.intervalHandle) {
|
|
2350
|
-
clearInterval(this.intervalHandle);
|
|
2351
|
-
this.intervalHandle = null;
|
|
2352
|
-
}
|
|
2353
|
-
}
|
|
2354
|
-
/**
|
|
2355
|
-
* Trigger immediate sync
|
|
2356
|
-
*/
|
|
2357
|
-
async syncNow() {
|
|
2358
|
-
if (this.stats.status === "syncing") {
|
|
2359
|
-
return;
|
|
2360
|
-
}
|
|
2361
|
-
this.stats.status = "syncing";
|
|
2362
|
-
try {
|
|
2363
|
-
await this.syncEvents();
|
|
2364
|
-
await this.syncSessions();
|
|
2365
|
-
this.stats.lastSyncAt = /* @__PURE__ */ new Date();
|
|
2366
|
-
this.stats.status = "idle";
|
|
2367
|
-
} catch (error) {
|
|
2368
|
-
this.stats.errors++;
|
|
2369
|
-
this.stats.status = "error";
|
|
2370
|
-
throw error;
|
|
2371
|
-
}
|
|
2372
|
-
}
|
|
2373
|
-
/**
|
|
2374
|
-
* Sync events from SQLite to DuckDB
|
|
2375
|
-
*/
|
|
2376
|
-
async syncEvents() {
|
|
2377
|
-
const targetName = "duckdb_analytics";
|
|
2378
|
-
const position = await this.sqliteStore.getSyncPosition(targetName);
|
|
2379
|
-
const lastTimestamp = position.lastTimestamp || "1970-01-01T00:00:00.000Z";
|
|
2380
|
-
let hasMore = true;
|
|
2381
|
-
let totalSynced = 0;
|
|
2382
|
-
while (hasMore) {
|
|
2383
|
-
const events = await this.sqliteStore.getEventsSince(lastTimestamp, this.config.batchSize);
|
|
2384
|
-
if (events.length === 0) {
|
|
2385
|
-
hasMore = false;
|
|
2386
|
-
break;
|
|
2387
|
-
}
|
|
2388
|
-
await this.retryWithBackoff(async () => {
|
|
2389
|
-
for (const event of events) {
|
|
2390
|
-
await this.insertEventToDuckDB(event);
|
|
2391
|
-
}
|
|
2392
|
-
});
|
|
2393
|
-
totalSynced += events.length;
|
|
2394
|
-
const lastEvent = events[events.length - 1];
|
|
2395
|
-
await this.sqliteStore.updateSyncPosition(
|
|
2396
|
-
targetName,
|
|
2397
|
-
lastEvent.id,
|
|
2398
|
-
lastEvent.timestamp.toISOString()
|
|
2399
|
-
);
|
|
2400
|
-
hasMore = events.length === this.config.batchSize;
|
|
2401
|
-
}
|
|
2402
|
-
this.stats.eventsSynced += totalSynced;
|
|
2403
|
-
}
|
|
2404
|
-
/**
|
|
2405
|
-
* Sync sessions from SQLite to DuckDB
|
|
2406
|
-
*/
|
|
2407
|
-
async syncSessions() {
|
|
2408
|
-
const sessions = await this.sqliteStore.getAllSessions();
|
|
2409
|
-
for (const session of sessions) {
|
|
2410
|
-
await this.retryWithBackoff(async () => {
|
|
2411
|
-
await this.duckdbStore.upsertSession(session);
|
|
2412
|
-
});
|
|
2413
|
-
}
|
|
2414
|
-
this.stats.sessionsSynced = sessions.length;
|
|
2415
|
-
}
|
|
2416
|
-
/**
|
|
2417
|
-
* Insert a single event into DuckDB
|
|
2418
|
-
*/
|
|
2419
|
-
async insertEventToDuckDB(event) {
|
|
2420
|
-
await this.duckdbStore.append({
|
|
2421
|
-
eventType: event.eventType,
|
|
2422
|
-
sessionId: event.sessionId,
|
|
2423
|
-
timestamp: event.timestamp,
|
|
2424
|
-
content: event.content,
|
|
2425
|
-
metadata: event.metadata
|
|
2426
|
-
});
|
|
2427
|
-
}
|
|
2428
|
-
/**
|
|
2429
|
-
* Retry operation with exponential backoff
|
|
2430
|
-
*/
|
|
2431
|
-
async retryWithBackoff(fn) {
|
|
2432
|
-
let lastError = null;
|
|
2433
|
-
for (let attempt = 0; attempt < this.config.maxRetries; attempt++) {
|
|
2434
|
-
try {
|
|
2435
|
-
return await fn();
|
|
2436
|
-
} catch (error) {
|
|
2437
|
-
lastError = error instanceof Error ? error : new Error(String(error));
|
|
2438
|
-
if (attempt < this.config.maxRetries - 1) {
|
|
2439
|
-
const delay = this.config.retryDelayMs * Math.pow(2, attempt);
|
|
2440
|
-
await this.sleep(delay);
|
|
2441
|
-
}
|
|
2442
|
-
}
|
|
2443
|
-
}
|
|
2444
|
-
throw lastError;
|
|
2445
|
-
}
|
|
2446
|
-
/**
|
|
2447
|
-
* Sleep utility
|
|
2448
|
-
*/
|
|
2449
|
-
sleep(ms) {
|
|
2450
|
-
return new Promise((resolve2) => setTimeout(resolve2, ms));
|
|
2451
|
-
}
|
|
2452
|
-
/**
|
|
2453
|
-
* Get sync statistics
|
|
2454
|
-
*/
|
|
2455
|
-
getStats() {
|
|
2456
|
-
return { ...this.stats };
|
|
2457
|
-
}
|
|
2458
|
-
/**
|
|
2459
|
-
* Check if worker is running
|
|
2460
|
-
*/
|
|
2461
|
-
isRunning() {
|
|
2462
|
-
return this.running;
|
|
2463
|
-
}
|
|
2464
|
-
};
|
|
2465
|
-
|
|
2466
1613
|
// src/core/vector-store.ts
|
|
2467
1614
|
import * as lancedb from "@lancedb/lancedb";
|
|
2468
1615
|
var VectorStore = class {
|
|
@@ -2750,8 +1897,34 @@ function getDefaultEmbedder() {
|
|
|
2750
1897
|
return defaultEmbedder;
|
|
2751
1898
|
}
|
|
2752
1899
|
|
|
1900
|
+
// src/core/db-wrapper.ts
|
|
1901
|
+
import BetterSqlite3 from "better-sqlite3";
|
|
1902
|
+
function toDate(value) {
|
|
1903
|
+
if (value instanceof Date)
|
|
1904
|
+
return value;
|
|
1905
|
+
if (typeof value === "string")
|
|
1906
|
+
return new Date(value);
|
|
1907
|
+
if (typeof value === "number")
|
|
1908
|
+
return new Date(value);
|
|
1909
|
+
return new Date(String(value));
|
|
1910
|
+
}
|
|
1911
|
+
function createDatabase(dbPath, options) {
|
|
1912
|
+
return new BetterSqlite3(dbPath, { readonly: options?.readOnly });
|
|
1913
|
+
}
|
|
1914
|
+
function dbRun(db, sql, params = []) {
|
|
1915
|
+
db.prepare(sql).run(...params);
|
|
1916
|
+
return Promise.resolve();
|
|
1917
|
+
}
|
|
1918
|
+
function dbAll(db, sql, params = []) {
|
|
1919
|
+
return Promise.resolve(db.prepare(sql).all(...params));
|
|
1920
|
+
}
|
|
1921
|
+
function dbClose(db) {
|
|
1922
|
+
db.close();
|
|
1923
|
+
return Promise.resolve();
|
|
1924
|
+
}
|
|
1925
|
+
|
|
2753
1926
|
// src/core/vector-outbox.ts
|
|
2754
|
-
var
|
|
1927
|
+
var DEFAULT_CONFIG = {
|
|
2755
1928
|
embeddingVersion: "v1",
|
|
2756
1929
|
maxRetries: 3,
|
|
2757
1930
|
stuckThresholdMs: 5 * 60 * 1e3,
|
|
@@ -2760,7 +1933,7 @@ var DEFAULT_CONFIG2 = {
|
|
|
2760
1933
|
};
|
|
2761
1934
|
|
|
2762
1935
|
// src/core/vector-worker.ts
|
|
2763
|
-
var
|
|
1936
|
+
var DEFAULT_CONFIG2 = {
|
|
2764
1937
|
batchSize: 32,
|
|
2765
1938
|
pollIntervalMs: 1e3,
|
|
2766
1939
|
maxRetries: 3
|
|
@@ -2777,7 +1950,7 @@ var VectorWorker = class {
|
|
|
2777
1950
|
this.eventStore = eventStore;
|
|
2778
1951
|
this.vectorStore = vectorStore;
|
|
2779
1952
|
this.embedder = embedder;
|
|
2780
|
-
this.config = { ...
|
|
1953
|
+
this.config = { ...DEFAULT_CONFIG2, ...config };
|
|
2781
1954
|
}
|
|
2782
1955
|
/**
|
|
2783
1956
|
* Start the worker polling loop
|
|
@@ -2898,7 +2071,7 @@ function createVectorWorker(eventStore, vectorStore, embedder, config) {
|
|
|
2898
2071
|
}
|
|
2899
2072
|
|
|
2900
2073
|
// src/core/matcher.ts
|
|
2901
|
-
var
|
|
2074
|
+
var DEFAULT_CONFIG3 = {
|
|
2902
2075
|
weights: {
|
|
2903
2076
|
semanticSimilarity: 0.4,
|
|
2904
2077
|
ftsScore: 0.25,
|
|
@@ -2913,9 +2086,9 @@ var Matcher = class {
|
|
|
2913
2086
|
config;
|
|
2914
2087
|
constructor(config = {}) {
|
|
2915
2088
|
this.config = {
|
|
2916
|
-
...
|
|
2089
|
+
...DEFAULT_CONFIG3,
|
|
2917
2090
|
...config,
|
|
2918
|
-
weights: { ...
|
|
2091
|
+
weights: { ...DEFAULT_CONFIG3.weights, ...config.weights }
|
|
2919
2092
|
};
|
|
2920
2093
|
}
|
|
2921
2094
|
/**
|
|
@@ -3905,7 +3078,7 @@ function createSharedEventStore(dbPath) {
|
|
|
3905
3078
|
}
|
|
3906
3079
|
|
|
3907
3080
|
// src/core/shared-store.ts
|
|
3908
|
-
import { randomUUID as
|
|
3081
|
+
import { randomUUID as randomUUID2 } from "crypto";
|
|
3909
3082
|
var SharedStore = class {
|
|
3910
3083
|
constructor(sharedEventStore) {
|
|
3911
3084
|
this.sharedEventStore = sharedEventStore;
|
|
@@ -3917,7 +3090,7 @@ var SharedStore = class {
|
|
|
3917
3090
|
* Promote a verified troubleshooting entry to shared storage
|
|
3918
3091
|
*/
|
|
3919
3092
|
async promoteEntry(input) {
|
|
3920
|
-
const entryId =
|
|
3093
|
+
const entryId = randomUUID2();
|
|
3921
3094
|
await dbRun(
|
|
3922
3095
|
this.db,
|
|
3923
3096
|
`INSERT INTO shared_troubleshooting (
|
|
@@ -4282,7 +3455,7 @@ function createSharedVectorStore(dbPath) {
|
|
|
4282
3455
|
}
|
|
4283
3456
|
|
|
4284
3457
|
// src/core/shared-promoter.ts
|
|
4285
|
-
import { randomUUID as
|
|
3458
|
+
import { randomUUID as randomUUID3 } from "crypto";
|
|
4286
3459
|
var SharedPromoter = class {
|
|
4287
3460
|
constructor(sharedStore, sharedVectorStore, embedder, config) {
|
|
4288
3461
|
this.sharedStore = sharedStore;
|
|
@@ -4350,7 +3523,7 @@ var SharedPromoter = class {
|
|
|
4350
3523
|
const embeddingContent = this.createEmbeddingContent(input);
|
|
4351
3524
|
const embedding = await this.embedder.embed(embeddingContent);
|
|
4352
3525
|
await this.sharedVectorStore.upsert({
|
|
4353
|
-
id:
|
|
3526
|
+
id: randomUUID3(),
|
|
4354
3527
|
entryId,
|
|
4355
3528
|
entryType: "troubleshooting",
|
|
4356
3529
|
content: embeddingContent,
|
|
@@ -4490,7 +3663,7 @@ function createToolObservationEmbedding(toolName, metadata, success) {
|
|
|
4490
3663
|
}
|
|
4491
3664
|
|
|
4492
3665
|
// src/core/working-set-store.ts
|
|
4493
|
-
import { randomUUID as
|
|
3666
|
+
import { randomUUID as randomUUID4 } from "crypto";
|
|
4494
3667
|
var WorkingSetStore = class {
|
|
4495
3668
|
constructor(eventStore, config) {
|
|
4496
3669
|
this.eventStore = eventStore;
|
|
@@ -4511,7 +3684,7 @@ var WorkingSetStore = class {
|
|
|
4511
3684
|
`INSERT OR REPLACE INTO working_set (id, event_id, added_at, relevance_score, topics, expires_at)
|
|
4512
3685
|
VALUES (?, ?, CURRENT_TIMESTAMP, ?, ?, ?)`,
|
|
4513
3686
|
[
|
|
4514
|
-
|
|
3687
|
+
randomUUID4(),
|
|
4515
3688
|
eventId,
|
|
4516
3689
|
relevanceScore,
|
|
4517
3690
|
JSON.stringify(topics || []),
|
|
@@ -4695,7 +3868,7 @@ function createWorkingSetStore(eventStore, config) {
|
|
|
4695
3868
|
}
|
|
4696
3869
|
|
|
4697
3870
|
// src/core/consolidated-store.ts
|
|
4698
|
-
import { randomUUID as
|
|
3871
|
+
import { randomUUID as randomUUID5 } from "crypto";
|
|
4699
3872
|
var ConsolidatedStore = class {
|
|
4700
3873
|
constructor(eventStore) {
|
|
4701
3874
|
this.eventStore = eventStore;
|
|
@@ -4707,7 +3880,7 @@ var ConsolidatedStore = class {
|
|
|
4707
3880
|
* Create a new consolidated memory
|
|
4708
3881
|
*/
|
|
4709
3882
|
async create(input) {
|
|
4710
|
-
const memoryId =
|
|
3883
|
+
const memoryId = randomUUID5();
|
|
4711
3884
|
await dbRun(
|
|
4712
3885
|
this.db,
|
|
4713
3886
|
`INSERT INTO consolidated_memories
|
|
@@ -4837,7 +4010,7 @@ var ConsolidatedStore = class {
|
|
|
4837
4010
|
* Create a long-term rule promoted from stable summaries
|
|
4838
4011
|
*/
|
|
4839
4012
|
async createRule(input) {
|
|
4840
|
-
const ruleId =
|
|
4013
|
+
const ruleId = randomUUID5();
|
|
4841
4014
|
await dbRun(
|
|
4842
4015
|
this.db,
|
|
4843
4016
|
`INSERT INTO consolidated_rules
|
|
@@ -5359,7 +4532,7 @@ function createConsolidationWorker(workingSetStore, consolidatedStore, config) {
|
|
|
5359
4532
|
}
|
|
5360
4533
|
|
|
5361
4534
|
// src/core/continuity-manager.ts
|
|
5362
|
-
import { randomUUID as
|
|
4535
|
+
import { randomUUID as randomUUID6 } from "crypto";
|
|
5363
4536
|
var ContinuityManager = class {
|
|
5364
4537
|
constructor(eventStore, config) {
|
|
5365
4538
|
this.eventStore = eventStore;
|
|
@@ -5513,7 +4686,7 @@ var ContinuityManager = class {
|
|
|
5513
4686
|
`INSERT INTO continuity_log
|
|
5514
4687
|
(log_id, from_context_id, to_context_id, continuity_score, transition_type, created_at)
|
|
5515
4688
|
VALUES (?, ?, ?, ?, ?, CURRENT_TIMESTAMP)`,
|
|
5516
|
-
[
|
|
4689
|
+
[randomUUID6(), previous.id, current.id, score, type]
|
|
5517
4690
|
);
|
|
5518
4691
|
}
|
|
5519
4692
|
/**
|
|
@@ -5622,7 +4795,7 @@ function createContinuityManager(eventStore, config) {
|
|
|
5622
4795
|
}
|
|
5623
4796
|
|
|
5624
4797
|
// src/core/graduation-worker.ts
|
|
5625
|
-
var
|
|
4798
|
+
var DEFAULT_CONFIG4 = {
|
|
5626
4799
|
evaluationIntervalMs: 3e5,
|
|
5627
4800
|
// 5 minutes
|
|
5628
4801
|
batchSize: 50,
|
|
@@ -5630,7 +4803,7 @@ var DEFAULT_CONFIG5 = {
|
|
|
5630
4803
|
// 1 hour cooldown between evaluations
|
|
5631
4804
|
};
|
|
5632
4805
|
var GraduationWorker = class {
|
|
5633
|
-
constructor(eventStore, graduation, config =
|
|
4806
|
+
constructor(eventStore, graduation, config = DEFAULT_CONFIG4) {
|
|
5634
4807
|
this.eventStore = eventStore;
|
|
5635
4808
|
this.graduation = graduation;
|
|
5636
4809
|
this.config = config;
|
|
@@ -5738,7 +4911,7 @@ function createGraduationWorker(eventStore, graduation, config) {
|
|
|
5738
4911
|
return new GraduationWorker(
|
|
5739
4912
|
eventStore,
|
|
5740
4913
|
graduation,
|
|
5741
|
-
{ ...
|
|
4914
|
+
{ ...DEFAULT_CONFIG4, ...config }
|
|
5742
4915
|
);
|
|
5743
4916
|
}
|
|
5744
4917
|
|
|
@@ -5976,9 +5149,6 @@ function getSessionProject(sessionId) {
|
|
|
5976
5149
|
var MemoryService = class {
|
|
5977
5150
|
// Primary store: SQLite (WAL mode) - for hooks, always available
|
|
5978
5151
|
sqliteStore;
|
|
5979
|
-
// Analytics store: DuckDB - for server reads (optional, synced from SQLite)
|
|
5980
|
-
analyticsStore;
|
|
5981
|
-
syncWorker = null;
|
|
5982
5152
|
vectorStore;
|
|
5983
5153
|
embedder;
|
|
5984
5154
|
matcher;
|
|
@@ -6027,24 +5197,6 @@ var MemoryService = class {
|
|
|
6027
5197
|
markdownMirrorRoot: storagePath
|
|
6028
5198
|
}
|
|
6029
5199
|
);
|
|
6030
|
-
const analyticsEnabled = config.analyticsEnabled ?? this.readOnly;
|
|
6031
|
-
if (!analyticsEnabled) {
|
|
6032
|
-
this.analyticsStore = null;
|
|
6033
|
-
} else if (this.readOnly) {
|
|
6034
|
-
try {
|
|
6035
|
-
this.analyticsStore = new EventStore(
|
|
6036
|
-
path3.join(storagePath, "analytics.duckdb"),
|
|
6037
|
-
{ readOnly: true }
|
|
6038
|
-
);
|
|
6039
|
-
} catch {
|
|
6040
|
-
this.analyticsStore = null;
|
|
6041
|
-
}
|
|
6042
|
-
} else {
|
|
6043
|
-
this.analyticsStore = new EventStore(
|
|
6044
|
-
path3.join(storagePath, "analytics.duckdb"),
|
|
6045
|
-
{ readOnly: false }
|
|
6046
|
-
);
|
|
6047
|
-
}
|
|
6048
5200
|
this.vectorStore = new VectorStore(path3.join(storagePath, "vectors"));
|
|
6049
5201
|
const embeddingModel = config.embeddingModel || process.env.CLAUDE_MEMORY_EMBEDDING_MODEL;
|
|
6050
5202
|
this.embedder = embeddingModel ? new Embedder(embeddingModel) : getDefaultEmbedder();
|
|
@@ -6070,13 +5222,6 @@ var MemoryService = class {
|
|
|
6070
5222
|
this.initialized = true;
|
|
6071
5223
|
return;
|
|
6072
5224
|
}
|
|
6073
|
-
if (this.analyticsStore) {
|
|
6074
|
-
try {
|
|
6075
|
-
await this.analyticsStore.initialize();
|
|
6076
|
-
} catch (error) {
|
|
6077
|
-
console.warn("[MemoryService] Analytics store (DuckDB) initialization failed, using SQLite for reads:", error);
|
|
6078
|
-
}
|
|
6079
|
-
}
|
|
6080
5225
|
await this.vectorStore.initialize();
|
|
6081
5226
|
await this.embedder.initialize();
|
|
6082
5227
|
if (!this.readOnly) {
|
|
@@ -6093,14 +5238,6 @@ var MemoryService = class {
|
|
|
6093
5238
|
this.graduation
|
|
6094
5239
|
);
|
|
6095
5240
|
this.graduationWorker.start();
|
|
6096
|
-
if (this.analyticsStore) {
|
|
6097
|
-
this.syncWorker = new SyncWorker(
|
|
6098
|
-
this.sqliteStore,
|
|
6099
|
-
this.analyticsStore,
|
|
6100
|
-
{ intervalMs: 3e4, batchSize: 500 }
|
|
6101
|
-
);
|
|
6102
|
-
this.syncWorker.start();
|
|
6103
|
-
}
|
|
6104
5241
|
}
|
|
6105
5242
|
const savedMode = await this.sqliteStore.getEndlessConfig("mode");
|
|
6106
5243
|
if (savedMode === "endless") {
|
|
@@ -6297,6 +5434,57 @@ var MemoryService = class {
|
|
|
6297
5434
|
}
|
|
6298
5435
|
);
|
|
6299
5436
|
}
|
|
5437
|
+
/**
|
|
5438
|
+
* Backfill session summaries for recent sessions that are missing them.
|
|
5439
|
+
* Called from session-start hook to catch sessions that ended without Stop hook.
|
|
5440
|
+
*/
|
|
5441
|
+
async backfillMissingSummaries(currentSessionId, limit = 5) {
|
|
5442
|
+
await this.initialize();
|
|
5443
|
+
const recentSessionIds = await this.sqliteStore.getSessionsWithoutSummary(currentSessionId, limit);
|
|
5444
|
+
for (const sid of recentSessionIds) {
|
|
5445
|
+
try {
|
|
5446
|
+
await this.generateSessionSummary(sid);
|
|
5447
|
+
} catch {
|
|
5448
|
+
}
|
|
5449
|
+
}
|
|
5450
|
+
}
|
|
5451
|
+
/**
|
|
5452
|
+
* Generate a rule-based session summary from stored events.
|
|
5453
|
+
* Called at session end (Stop hook) when no LLM-generated summary exists.
|
|
5454
|
+
* Skips if a summary already exists for this session.
|
|
5455
|
+
*/
|
|
5456
|
+
async generateSessionSummary(sessionId) {
|
|
5457
|
+
await this.initialize();
|
|
5458
|
+
const events = await this.sqliteStore.getSessionEvents(sessionId);
|
|
5459
|
+
if (events.length < 3)
|
|
5460
|
+
return;
|
|
5461
|
+
const hasSummary = events.some((e) => e.eventType === "session_summary");
|
|
5462
|
+
if (hasSummary)
|
|
5463
|
+
return;
|
|
5464
|
+
const prompts = events.filter((e) => e.eventType === "user_prompt");
|
|
5465
|
+
const toolObs = events.filter((e) => e.eventType === "tool_observation");
|
|
5466
|
+
const toolNames = [...new Set(
|
|
5467
|
+
toolObs.map((e) => e.metadata?.toolName).filter(Boolean)
|
|
5468
|
+
)];
|
|
5469
|
+
const errorObs = toolObs.filter((e) => {
|
|
5470
|
+
const meta = e.metadata;
|
|
5471
|
+
return meta?.exitCode !== void 0 && meta.exitCode !== 0;
|
|
5472
|
+
});
|
|
5473
|
+
const datePart = events[0].timestamp.toISOString().split("T")[0];
|
|
5474
|
+
const parts = [`[${datePart}] ${prompts.length}\uD134 \uC138\uC158.`];
|
|
5475
|
+
if (prompts.length > 0) {
|
|
5476
|
+
const firstPrompt = prompts[0].content.slice(0, 120).replace(/\n/g, " ");
|
|
5477
|
+
parts.push(`\uC8FC\uC694 \uC791\uC5C5: ${firstPrompt}`);
|
|
5478
|
+
}
|
|
5479
|
+
if (toolNames.length > 0) {
|
|
5480
|
+
parts.push(`\uC0AC\uC6A9 \uD234: ${toolNames.slice(0, 6).join(", ")}`);
|
|
5481
|
+
}
|
|
5482
|
+
if (errorObs.length > 0) {
|
|
5483
|
+
parts.push(`\uC624\uB958 ${errorObs.length}\uAC74 \uBC1C\uC0DD`);
|
|
5484
|
+
}
|
|
5485
|
+
const summary = parts.join(". ");
|
|
5486
|
+
await this.storeSessionSummary(sessionId, summary, { generated: "rule-based", eventCount: events.length });
|
|
5487
|
+
}
|
|
6300
5488
|
/**
|
|
6301
5489
|
* Store a tool observation
|
|
6302
5490
|
*/
|
|
@@ -6832,6 +6020,7 @@ var MemoryService = class {
|
|
|
6832
6020
|
await this.initialize();
|
|
6833
6021
|
await this.sqliteStore.recordRetrievalTrace({
|
|
6834
6022
|
...input,
|
|
6023
|
+
projectHash: this.projectHash || void 0,
|
|
6835
6024
|
candidateDetails: [],
|
|
6836
6025
|
selectedDetails: [],
|
|
6837
6026
|
fallbackTrace: []
|
|
@@ -7122,16 +6311,10 @@ var MemoryService = class {
|
|
|
7122
6311
|
if (this.vectorWorker) {
|
|
7123
6312
|
this.vectorWorker.stop();
|
|
7124
6313
|
}
|
|
7125
|
-
if (this.syncWorker) {
|
|
7126
|
-
this.syncWorker.stop();
|
|
7127
|
-
}
|
|
7128
6314
|
if (this.sharedEventStore) {
|
|
7129
6315
|
await this.sharedEventStore.close();
|
|
7130
6316
|
}
|
|
7131
6317
|
await this.sqliteStore.close();
|
|
7132
|
-
if (this.analyticsStore) {
|
|
7133
|
-
await this.analyticsStore.close();
|
|
7134
|
-
}
|
|
7135
6318
|
}
|
|
7136
6319
|
/**
|
|
7137
6320
|
* Expand ~ to home directory
|