claude-memory-layer 1.0.11 → 1.0.12
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/AGENTS.md +60 -0
- package/README.md +166 -2
- package/bootstrap-kb/decisions/decisions.md +244 -0
- package/bootstrap-kb/glossary/glossary.md +46 -0
- package/bootstrap-kb/modules/.claude-plugin.md +22 -0
- package/bootstrap-kb/modules/agents.md.md +15 -0
- package/bootstrap-kb/modules/claude.md.md +15 -0
- package/bootstrap-kb/modules/context.md.md +15 -0
- package/bootstrap-kb/modules/docs.md +18 -0
- package/bootstrap-kb/modules/handoff.md.md +15 -0
- package/bootstrap-kb/modules/package-lock.json.md +15 -0
- package/bootstrap-kb/modules/package.json.md +15 -0
- package/bootstrap-kb/modules/plan.md.md +15 -0
- package/bootstrap-kb/modules/readme.md.md +15 -0
- package/bootstrap-kb/modules/scripts.md +26 -0
- package/bootstrap-kb/modules/spec.md.md +15 -0
- package/bootstrap-kb/modules/specs.md +20 -0
- package/bootstrap-kb/modules/src.md +51 -0
- package/bootstrap-kb/modules/tests.md +42 -0
- package/bootstrap-kb/modules/tsconfig.json.md +15 -0
- package/bootstrap-kb/modules/vitest.config.ts.md +15 -0
- package/bootstrap-kb/overview/overview.md +40 -0
- package/bootstrap-kb/sources/manifest.json +950 -0
- package/bootstrap-kb/sources/manifest.md +227 -0
- package/bootstrap-kb/timeline/timeline.md +57 -0
- package/d.sh +3 -0
- package/deploy.sh +3 -0
- package/dist/cli/index.js +2389 -286
- package/dist/cli/index.js.map +4 -4
- package/dist/core/index.js +1017 -132
- package/dist/core/index.js.map +4 -4
- package/dist/hooks/post-tool-use.js +1347 -202
- package/dist/hooks/post-tool-use.js.map +4 -4
- package/dist/hooks/session-end.js +1339 -194
- package/dist/hooks/session-end.js.map +4 -4
- package/dist/hooks/session-start.js +1343 -198
- package/dist/hooks/session-start.js.map +4 -4
- package/dist/hooks/stop.js +1351 -206
- package/dist/hooks/stop.js.map +4 -4
- package/dist/hooks/user-prompt-submit.js +1347 -202
- package/dist/hooks/user-prompt-submit.js.map +4 -4
- package/dist/server/api/index.js +1436 -211
- package/dist/server/api/index.js.map +4 -4
- package/dist/server/index.js +1445 -220
- package/dist/server/index.js.map +4 -4
- package/dist/services/memory-service.js +1345 -199
- package/dist/services/memory-service.js.map +4 -4
- package/dist/ui/app.js +69 -2
- package/dist/ui/index.html +8 -0
- package/docs/MCP_MEMORY_SERVICE_COMPARATIVE_REVIEW.md +271 -0
- package/docs/MEMU_ADOPTION.md +40 -0
- package/memory/.claude-plugin/commands/2026-02-25.md +263 -0
- package/memory/_index.md +405 -0
- package/memory/default/uncategorized/2026-02-25.md +4839 -0
- package/memory/specs/20260207-dashboard-upgrade/2026-02-25.md +142 -0
- package/memory/specs/citations-system/2026-02-25.md +1121 -0
- package/memory/specs/endless-mode/2026-02-25.md +1392 -0
- package/memory/specs/entity-edge-model/2026-02-25.md +1263 -0
- package/memory/specs/evidence-aligner-v2/2026-02-25.md +1028 -0
- package/memory/specs/mcp-desktop-integration/2026-02-25.md +1334 -0
- package/memory/specs/post-tool-use-hook/2026-02-25.md +1164 -0
- package/memory/specs/private-tags/2026-02-25.md +1057 -0
- package/memory/specs/progressive-disclosure/2026-02-25.md +1436 -0
- package/memory/specs/task-entity-system/2026-02-25.md +924 -0
- package/memory/specs/vector-outbox-v2/2026-02-25.md +1510 -0
- package/memory/specs/web-viewer-ui/2026-02-25.md +1709 -0
- package/package.json +2 -1
- package/scripts/build.ts +6 -0
- package/src/cli/index.ts +281 -2
- package/src/core/consolidated-store.ts +63 -1
- package/src/core/consolidation-worker.ts +115 -6
- package/src/core/event-store.ts +14 -0
- package/src/core/index.ts +1 -0
- package/src/core/ingest-interceptor.ts +80 -0
- package/src/core/markdown-mirror.ts +70 -0
- package/src/core/md-mirror.ts +92 -0
- package/src/core/mongo-sync-config.ts +165 -0
- package/src/core/mongo-sync-worker.ts +381 -0
- package/src/core/retriever.ts +540 -150
- package/src/core/sqlite-event-store.ts +350 -1
- package/src/core/tag-taxonomy.ts +51 -0
- package/src/core/types.ts +28 -0
- package/src/server/api/health.ts +53 -0
- package/src/server/api/index.ts +3 -1
- package/src/server/api/stats.ts +46 -1
- package/src/services/bootstrap-organizer.ts +443 -0
- package/src/services/codex-session-history-importer.ts +474 -0
- package/src/services/memory-service.ts +373 -68
- package/src/ui/app.js +69 -2
- package/src/ui/index.html +8 -0
- package/tests/bootstrap-organizer.test.ts +111 -0
- package/tests/consolidation-worker.test.ts +75 -0
- package/tests/ingest-interceptor.test.ts +38 -0
- package/tests/markdown-mirror.test.ts +85 -0
- package/tests/md-mirror.test.ts +50 -0
- package/tests/retriever-fallback-chain.test.ts +223 -0
- package/tests/retriever-strategy-scope.test.ts +97 -0
- package/tests/retriever.memu-adoption.test.ts +122 -0
- package/tests/sqlite-event-store-replication.test.ts +92 -0
|
@@ -0,0 +1,950 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generatedAt": "2026-02-25T12:44:49.679Z",
|
|
3
|
+
"deterministicPipeline": true,
|
|
4
|
+
"mode": "incremental",
|
|
5
|
+
"repoPath": "/home/walter/workspace/opensource/claude-memory-layer",
|
|
6
|
+
"options": {
|
|
7
|
+
"since": "180 days ago",
|
|
8
|
+
"maxCommits": 1000,
|
|
9
|
+
"incremental": true
|
|
10
|
+
},
|
|
11
|
+
"stats": {
|
|
12
|
+
"filesAnalyzed": 150,
|
|
13
|
+
"modules": 20,
|
|
14
|
+
"modulesGenerated": 17,
|
|
15
|
+
"commits": 47,
|
|
16
|
+
"decisions": 34,
|
|
17
|
+
"glossaryTerms": 39
|
|
18
|
+
},
|
|
19
|
+
"lastCommitDate": "2026-02-25",
|
|
20
|
+
"outputs": [
|
|
21
|
+
"decisions/decisions.md",
|
|
22
|
+
"glossary/glossary.md",
|
|
23
|
+
"modules/.claude-plugin.md",
|
|
24
|
+
"modules/agents.md.md",
|
|
25
|
+
"modules/claude.md.md",
|
|
26
|
+
"modules/context.md.md",
|
|
27
|
+
"modules/docs.md",
|
|
28
|
+
"modules/handoff.md.md",
|
|
29
|
+
"modules/package-lock.json.md",
|
|
30
|
+
"modules/package.json.md",
|
|
31
|
+
"modules/plan.md.md",
|
|
32
|
+
"modules/readme.md.md",
|
|
33
|
+
"modules/scripts.md",
|
|
34
|
+
"modules/spec.md.md",
|
|
35
|
+
"modules/specs.md",
|
|
36
|
+
"modules/src.md",
|
|
37
|
+
"modules/tests.md",
|
|
38
|
+
"modules/tsconfig.json.md",
|
|
39
|
+
"modules/vitest.config.ts.md",
|
|
40
|
+
"overview/overview.md",
|
|
41
|
+
"timeline/timeline.md"
|
|
42
|
+
],
|
|
43
|
+
"allOutputs": [
|
|
44
|
+
"decisions/decisions.md",
|
|
45
|
+
"glossary/glossary.md",
|
|
46
|
+
"modules/.claude-plugin.md",
|
|
47
|
+
"modules/agents.md.md",
|
|
48
|
+
"modules/claude.md.md",
|
|
49
|
+
"modules/context.md.md",
|
|
50
|
+
"modules/docs.md",
|
|
51
|
+
"modules/handoff.md.md",
|
|
52
|
+
"modules/package-lock.json.md",
|
|
53
|
+
"modules/package.json.md",
|
|
54
|
+
"modules/plan.md.md",
|
|
55
|
+
"modules/readme.md.md",
|
|
56
|
+
"modules/scripts.md",
|
|
57
|
+
"modules/spec.md.md",
|
|
58
|
+
"modules/specs.md",
|
|
59
|
+
"modules/src.md",
|
|
60
|
+
"modules/tests.md",
|
|
61
|
+
"modules/tsconfig.json.md",
|
|
62
|
+
"modules/vitest.config.ts.md",
|
|
63
|
+
"overview/overview.md",
|
|
64
|
+
"timeline/timeline.md"
|
|
65
|
+
],
|
|
66
|
+
"sources": [
|
|
67
|
+
{
|
|
68
|
+
"type": "file",
|
|
69
|
+
"ref": ".claude-plugin/commands/memory-forget.md"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"type": "file",
|
|
73
|
+
"ref": ".claude-plugin/commands/memory-history.md"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"type": "file",
|
|
77
|
+
"ref": ".claude-plugin/commands/memory-import.md"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"type": "file",
|
|
81
|
+
"ref": ".claude-plugin/commands/memory-list.md"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"type": "file",
|
|
85
|
+
"ref": ".claude-plugin/commands/memory-search.md"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"type": "file",
|
|
89
|
+
"ref": ".claude-plugin/commands/memory-stats.md"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"type": "file",
|
|
93
|
+
"ref": ".claude-plugin/hooks.json"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"type": "file",
|
|
97
|
+
"ref": ".claude-plugin/plugin.json"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"type": "file",
|
|
101
|
+
"ref": ".omc/project-memory.json"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"type": "file",
|
|
105
|
+
"ref": ".omc/sessions/9d7106b0-883c-4ad7-b7be-39de88a483e5.json"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"type": "file",
|
|
109
|
+
"ref": ".omc/sessions/dccdf47f-f9ef-4621-a49d-f333667baf0a.json"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"type": "file",
|
|
113
|
+
"ref": ".omc/state/subagent-tracking.json"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"type": "file",
|
|
117
|
+
"ref": "AGENTS.md"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"type": "file",
|
|
121
|
+
"ref": "CLAUDE.md"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"type": "file",
|
|
125
|
+
"ref": "HANDOFF.md"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"type": "file",
|
|
129
|
+
"ref": "README.md"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"type": "file",
|
|
133
|
+
"ref": "context.md"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"type": "file",
|
|
137
|
+
"ref": "d.sh"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"type": "file",
|
|
141
|
+
"ref": "deploy.sh"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"type": "file",
|
|
145
|
+
"ref": "docs/MEMU_ADOPTION.md"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"type": "file",
|
|
149
|
+
"ref": "docs/OPERATIONS.md"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"type": "file",
|
|
153
|
+
"ref": "package-lock.json"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"type": "file",
|
|
157
|
+
"ref": "package.json"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"type": "file",
|
|
161
|
+
"ref": "plan.md"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"type": "file",
|
|
165
|
+
"ref": "scripts/build.ts"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"type": "file",
|
|
169
|
+
"ref": "scripts/fix-sync-gap.js"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"type": "file",
|
|
173
|
+
"ref": "scripts/heartbeat-memory-orchestrator.sh"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"type": "file",
|
|
177
|
+
"ref": "scripts/report-sync-gap.js"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"type": "file",
|
|
181
|
+
"ref": "scripts/review-queue-auto-resolve.js"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"type": "file",
|
|
185
|
+
"ref": "scripts/sync-gap-auto-heal.sh"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"type": "file",
|
|
189
|
+
"ref": "spec.md"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"type": "file",
|
|
193
|
+
"ref": "specs/20260207-dashboard-upgrade/context.md"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"type": "file",
|
|
197
|
+
"ref": "specs/20260207-dashboard-upgrade/spec.md"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"type": "file",
|
|
201
|
+
"ref": "specs/citations-system/context.md"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"type": "file",
|
|
205
|
+
"ref": "specs/citations-system/plan.md"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"type": "file",
|
|
209
|
+
"ref": "specs/citations-system/spec.md"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"type": "file",
|
|
213
|
+
"ref": "specs/endless-mode/context.md"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"type": "file",
|
|
217
|
+
"ref": "specs/endless-mode/plan.md"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"type": "file",
|
|
221
|
+
"ref": "specs/endless-mode/spec.md"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"type": "file",
|
|
225
|
+
"ref": "specs/entity-edge-model/context.md"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"type": "file",
|
|
229
|
+
"ref": "specs/entity-edge-model/plan.md"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"type": "file",
|
|
233
|
+
"ref": "specs/entity-edge-model/spec.md"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"type": "file",
|
|
237
|
+
"ref": "specs/evidence-aligner-v2/context.md"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"type": "file",
|
|
241
|
+
"ref": "specs/evidence-aligner-v2/plan.md"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"type": "file",
|
|
245
|
+
"ref": "specs/evidence-aligner-v2/spec.md"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"type": "file",
|
|
249
|
+
"ref": "specs/mcp-desktop-integration/context.md"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"type": "file",
|
|
253
|
+
"ref": "specs/mcp-desktop-integration/plan.md"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"type": "file",
|
|
257
|
+
"ref": "specs/mcp-desktop-integration/spec.md"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"type": "file",
|
|
261
|
+
"ref": "specs/post-tool-use-hook/context.md"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"type": "file",
|
|
265
|
+
"ref": "specs/post-tool-use-hook/plan.md"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"type": "file",
|
|
269
|
+
"ref": "specs/post-tool-use-hook/spec.md"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"type": "file",
|
|
273
|
+
"ref": "specs/private-tags/context.md"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"type": "file",
|
|
277
|
+
"ref": "specs/private-tags/plan.md"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"type": "file",
|
|
281
|
+
"ref": "specs/private-tags/spec.md"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"type": "file",
|
|
285
|
+
"ref": "specs/progressive-disclosure/context.md"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"type": "file",
|
|
289
|
+
"ref": "specs/progressive-disclosure/plan.md"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"type": "file",
|
|
293
|
+
"ref": "specs/progressive-disclosure/spec.md"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"type": "file",
|
|
297
|
+
"ref": "specs/task-entity-system/context.md"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"type": "file",
|
|
301
|
+
"ref": "specs/task-entity-system/plan.md"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"type": "file",
|
|
305
|
+
"ref": "specs/task-entity-system/spec.md"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"type": "file",
|
|
309
|
+
"ref": "specs/vector-outbox-v2/context.md"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"type": "file",
|
|
313
|
+
"ref": "specs/vector-outbox-v2/plan.md"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"type": "file",
|
|
317
|
+
"ref": "specs/vector-outbox-v2/spec.md"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"type": "file",
|
|
321
|
+
"ref": "specs/web-viewer-ui/context.md"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"type": "file",
|
|
325
|
+
"ref": "specs/web-viewer-ui/plan.md"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"type": "file",
|
|
329
|
+
"ref": "specs/web-viewer-ui/spec.md"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"type": "file",
|
|
333
|
+
"ref": "src/cli/index.ts"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"type": "file",
|
|
337
|
+
"ref": "src/core/canonical-key.ts"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"type": "file",
|
|
341
|
+
"ref": "src/core/citation-generator.ts"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"type": "file",
|
|
345
|
+
"ref": "src/core/consolidated-store.ts"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"type": "file",
|
|
349
|
+
"ref": "src/core/consolidation-worker.ts"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"type": "file",
|
|
353
|
+
"ref": "src/core/context-formatter.ts"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"type": "file",
|
|
357
|
+
"ref": "src/core/continuity-manager.ts"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"type": "file",
|
|
361
|
+
"ref": "src/core/db-wrapper.ts"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"type": "file",
|
|
365
|
+
"ref": "src/core/edge-repo.ts"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"type": "file",
|
|
369
|
+
"ref": "src/core/embedder.ts"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"type": "file",
|
|
373
|
+
"ref": "src/core/entity-repo.ts"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"type": "file",
|
|
377
|
+
"ref": "src/core/event-store.ts"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"type": "file",
|
|
381
|
+
"ref": "src/core/evidence-aligner.ts"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"type": "file",
|
|
385
|
+
"ref": "src/core/graduation-worker.ts"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"type": "file",
|
|
389
|
+
"ref": "src/core/graduation.ts"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"type": "file",
|
|
393
|
+
"ref": "src/core/index.ts"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"type": "file",
|
|
397
|
+
"ref": "src/core/ingest-interceptor.ts"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"type": "file",
|
|
401
|
+
"ref": "src/core/markdown-mirror.ts"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"type": "file",
|
|
405
|
+
"ref": "src/core/matcher.ts"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"type": "file",
|
|
409
|
+
"ref": "src/core/md-mirror.ts"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"type": "file",
|
|
413
|
+
"ref": "src/core/metadata-extractor.ts"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"type": "file",
|
|
417
|
+
"ref": "src/core/mongo-sync-config.ts"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"type": "file",
|
|
421
|
+
"ref": "src/core/mongo-sync-worker.ts"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"type": "file",
|
|
425
|
+
"ref": "src/core/privacy/filter.ts"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"type": "file",
|
|
429
|
+
"ref": "src/core/privacy/index.ts"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"type": "file",
|
|
433
|
+
"ref": "src/core/privacy/tag-parser.ts"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"type": "file",
|
|
437
|
+
"ref": "src/core/progressive-retriever.ts"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"type": "file",
|
|
441
|
+
"ref": "src/core/retriever.ts"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"type": "file",
|
|
445
|
+
"ref": "src/core/shared-event-store.ts"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"type": "file",
|
|
449
|
+
"ref": "src/core/shared-promoter.ts"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"type": "file",
|
|
453
|
+
"ref": "src/core/shared-store.ts"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"type": "file",
|
|
457
|
+
"ref": "src/core/shared-vector-store.ts"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"type": "file",
|
|
461
|
+
"ref": "src/core/sqlite-event-store.ts"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"type": "file",
|
|
465
|
+
"ref": "src/core/sqlite-wrapper.ts"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"type": "file",
|
|
469
|
+
"ref": "src/core/sync-worker.ts"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"type": "file",
|
|
473
|
+
"ref": "src/core/task/blocker-resolver.ts"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"type": "file",
|
|
477
|
+
"ref": "src/core/task/index.ts"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"type": "file",
|
|
481
|
+
"ref": "src/core/task/task-matcher.ts"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"type": "file",
|
|
485
|
+
"ref": "src/core/task/task-projector.ts"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"type": "file",
|
|
489
|
+
"ref": "src/core/task/task-resolver.ts"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"type": "file",
|
|
493
|
+
"ref": "src/core/turn-state.ts"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"type": "file",
|
|
497
|
+
"ref": "src/core/types.ts"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"type": "file",
|
|
501
|
+
"ref": "src/core/vector-outbox.ts"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"type": "file",
|
|
505
|
+
"ref": "src/core/vector-store.ts"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"type": "file",
|
|
509
|
+
"ref": "src/core/vector-worker.ts"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"type": "file",
|
|
513
|
+
"ref": "src/core/working-set-store.ts"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"type": "file",
|
|
517
|
+
"ref": "src/hooks/post-tool-use.ts"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"type": "file",
|
|
521
|
+
"ref": "src/hooks/session-end.ts"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"type": "file",
|
|
525
|
+
"ref": "src/hooks/session-start.ts"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"type": "file",
|
|
529
|
+
"ref": "src/hooks/stop.ts"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"type": "file",
|
|
533
|
+
"ref": "src/hooks/user-prompt-submit.ts"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"type": "file",
|
|
537
|
+
"ref": "src/mcp/handlers.ts"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"type": "file",
|
|
541
|
+
"ref": "src/mcp/index.ts"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"type": "file",
|
|
545
|
+
"ref": "src/mcp/tools.ts"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"type": "file",
|
|
549
|
+
"ref": "src/server/api/chat.ts"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"type": "file",
|
|
553
|
+
"ref": "src/server/api/citations.ts"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"type": "file",
|
|
557
|
+
"ref": "src/server/api/events.ts"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"type": "file",
|
|
561
|
+
"ref": "src/server/api/index.ts"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"type": "file",
|
|
565
|
+
"ref": "src/server/api/projects.ts"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"type": "file",
|
|
569
|
+
"ref": "src/server/api/search.ts"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"type": "file",
|
|
573
|
+
"ref": "src/server/api/sessions.ts"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"type": "file",
|
|
577
|
+
"ref": "src/server/api/stats.ts"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"type": "file",
|
|
581
|
+
"ref": "src/server/api/turns.ts"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"type": "file",
|
|
585
|
+
"ref": "src/server/api/utils.ts"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"type": "file",
|
|
589
|
+
"ref": "src/server/index.ts"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"type": "file",
|
|
593
|
+
"ref": "src/services/bootstrap-organizer.ts"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"type": "file",
|
|
597
|
+
"ref": "src/services/codex-session-history-importer.ts"
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"type": "file",
|
|
601
|
+
"ref": "src/services/memory-service.ts"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"type": "file",
|
|
605
|
+
"ref": "src/services/session-history-importer.ts"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"type": "file",
|
|
609
|
+
"ref": "src/ui/app.js"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"type": "file",
|
|
613
|
+
"ref": "tests/bootstrap-organizer.test.ts"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"type": "file",
|
|
617
|
+
"ref": "tests/canonical-key.test.ts"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"type": "file",
|
|
621
|
+
"ref": "tests/consolidation-worker.test.ts"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"type": "file",
|
|
625
|
+
"ref": "tests/evidence-aligner.test.ts"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"type": "file",
|
|
629
|
+
"ref": "tests/ingest-interceptor.test.ts"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"type": "file",
|
|
633
|
+
"ref": "tests/markdown-mirror.test.ts"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"type": "file",
|
|
637
|
+
"ref": "tests/matcher.test.ts"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"type": "file",
|
|
641
|
+
"ref": "tests/md-mirror.test.ts"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"type": "file",
|
|
645
|
+
"ref": "tests/retriever-fallback-chain.test.ts"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"type": "file",
|
|
649
|
+
"ref": "tests/retriever-strategy-scope.test.ts"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"type": "file",
|
|
653
|
+
"ref": "tests/retriever.memu-adoption.test.ts"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"type": "file",
|
|
657
|
+
"ref": "tests/sqlite-event-store-replication.test.ts"
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"type": "file",
|
|
661
|
+
"ref": "tsconfig.json"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"type": "file",
|
|
665
|
+
"ref": "vitest.config.ts"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"type": "commit",
|
|
669
|
+
"ref": "09a27030ac03dc003fc725ce1fd360a53ca3159f",
|
|
670
|
+
"date": "2026-01-31",
|
|
671
|
+
"subject": "docs: add specification documents for code-memory plugin"
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"type": "commit",
|
|
675
|
+
"ref": "e0fb3078d786dd6f6a4cd8fac87e547668c04466",
|
|
676
|
+
"date": "2026-01-31",
|
|
677
|
+
"subject": "docs: enhance AXIOMMIND integration in specification documents"
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"type": "commit",
|
|
681
|
+
"ref": "83614efe2baf9ca3223508daecfff2e55fbf092e",
|
|
682
|
+
"date": "2026-01-31",
|
|
683
|
+
"subject": "docs: add Memory Graduation Pipeline and 7 AXIOMMIND principles"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"type": "commit",
|
|
687
|
+
"ref": "111f400e73f0568b192a5b1b37a88622fd44d648",
|
|
688
|
+
"date": "2026-01-31",
|
|
689
|
+
"subject": "feat: implement complete code-memory plugin"
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"type": "commit",
|
|
693
|
+
"ref": "22b1c43d9b9f095cd2a210f529ca8bee5a1100c5",
|
|
694
|
+
"date": "2026-01-31",
|
|
695
|
+
"subject": "feat: add session history import functionality"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"type": "commit",
|
|
699
|
+
"ref": "ead5da9868336e6bb0696fd5ee236bc32c327079",
|
|
700
|
+
"date": "2026-01-31",
|
|
701
|
+
"subject": "docs: update README with detailed Korean documentation"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"type": "commit",
|
|
705
|
+
"ref": "03ce3f8393e52df24f86ffc10756d3974204c373",
|
|
706
|
+
"date": "2026-01-31",
|
|
707
|
+
"subject": "Add implementation guide for AxiomMind Memory Pipeline"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"type": "commit",
|
|
711
|
+
"ref": "4bbbc7174f920434cfc67ee02746a9b9824ec101",
|
|
712
|
+
"date": "2026-02-01",
|
|
713
|
+
"subject": "Merge pull request #1 from buzzni/claude/idris2-memory-storage-JLk7J"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"type": "commit",
|
|
717
|
+
"ref": "504ec3ddd7f451fabf2cf01e073fc96e65ae124e",
|
|
718
|
+
"date": "2026-02-01",
|
|
719
|
+
"subject": "docs: Add citations and endless mode specification documents (#2)"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"type": "commit",
|
|
723
|
+
"ref": "3662dfae8381fdf35923b115f58c362e091c474a",
|
|
724
|
+
"date": "2026-02-01",
|
|
725
|
+
"subject": "docs: Update README with comprehensive feature documentation (#3)"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"type": "commit",
|
|
729
|
+
"ref": "d04e562b5b011e0f07cdea0664db823f0caca5d0",
|
|
730
|
+
"date": "2026-02-01",
|
|
731
|
+
"subject": "feat: Add cross-project shared troubleshooting store"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"type": "commit",
|
|
735
|
+
"ref": "65b0f64da3fd2c4b0b758b89f9d0f22301df23a7",
|
|
736
|
+
"date": "2026-02-01",
|
|
737
|
+
"subject": "refactor: Extract DuckDB wrapper for consistent async API"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"type": "commit",
|
|
741
|
+
"ref": "665cf11bb9a01f1bcba51ec49f53382e95cd7e32",
|
|
742
|
+
"date": "2026-02-01",
|
|
743
|
+
"subject": "feat: Add web dashboard for memory visualization"
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"type": "commit",
|
|
747
|
+
"ref": "f35da2b92704d7d1b5655edac3516c64a829eeef",
|
|
748
|
+
"date": "2026-02-01",
|
|
749
|
+
"subject": "refactor: Rename project from code-memory to claude-memory-layer"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"type": "commit",
|
|
753
|
+
"ref": "d4f1f16858e2bf2436f12e4141fedbecf3a75851",
|
|
754
|
+
"date": "2026-02-01",
|
|
755
|
+
"subject": "docs: Update README for claude-memory-layer rename"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"type": "commit",
|
|
759
|
+
"ref": "be36be70f69d42d2373ac26e6c0b8e8b53ca0340",
|
|
760
|
+
"date": "2026-02-01",
|
|
761
|
+
"subject": "feat: Migrate primary store from DuckDB to SQLite (WAL mode)"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"type": "commit",
|
|
765
|
+
"ref": "babfd15284754bc3dbb698fcc4c81efcf53fcd85",
|
|
766
|
+
"date": "2026-02-01",
|
|
767
|
+
"subject": "feat: Enhance dashboard, CLI, and memory graduation system"
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"type": "commit",
|
|
771
|
+
"ref": "543643e7a9f1d4a94f3216c2369d0212a51ff32d",
|
|
772
|
+
"date": "2026-02-02",
|
|
773
|
+
"subject": "perf: Add fast keyword search and optimize hook performance"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"type": "commit",
|
|
777
|
+
"ref": "a8a8b4edb28a04c1d07abd6e67625f6b68b67b55",
|
|
778
|
+
"date": "2026-02-06",
|
|
779
|
+
"subject": "chore: Bump version to 1.0.10 and add project configuration"
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"type": "commit",
|
|
783
|
+
"ref": "794640023652fc38b010e1ab46ca6a9a504a09e8",
|
|
784
|
+
"date": "2026-02-07",
|
|
785
|
+
"subject": "feat: Add memory helpfulness tracking and dashboard sort controls"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"type": "commit",
|
|
789
|
+
"ref": "20c37b2cdffd271eaf04df9d2e87e5f23a4f853e",
|
|
790
|
+
"date": "2026-02-08",
|
|
791
|
+
"subject": "feat: Add interactive dashboard with modals, navigation, and detail views"
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
"type": "commit",
|
|
795
|
+
"ref": "a1d93af414821eb92d74cd02abb748849366ebfb",
|
|
796
|
+
"date": "2026-02-08",
|
|
797
|
+
"subject": "fix: Align hooks with actual Claude Code input format and use lightweight service"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"type": "commit",
|
|
801
|
+
"ref": "fd8f38af7cecf7d31a32a5aba9b1902178f986b1",
|
|
802
|
+
"date": "2026-02-08",
|
|
803
|
+
"subject": "feat: Add real-time progress display for import command"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"type": "commit",
|
|
807
|
+
"ref": "938ec34bdf5fe1e4c43274424497ca081d62023a",
|
|
808
|
+
"date": "2026-02-08",
|
|
809
|
+
"subject": "feat: Add turn-based event grouping, force reimport, and session registry support"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"type": "commit",
|
|
813
|
+
"ref": "af18cee5277324c78a9e1bca5873bc86ee5b2719",
|
|
814
|
+
"date": "2026-02-08",
|
|
815
|
+
"subject": "feat: Add per-project dashboard with project selector and turns API"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"type": "commit",
|
|
819
|
+
"ref": "5b7401917611b50ee49e38bdf080983d1c763d5e",
|
|
820
|
+
"date": "2026-02-08",
|
|
821
|
+
"subject": "fix: Handle vector store table race condition and auto-create SQLite directories"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"type": "commit",
|
|
825
|
+
"ref": "a7b260f0ceeff6d768fefb675e6425f5b4717d7e",
|
|
826
|
+
"date": "2026-02-08",
|
|
827
|
+
"subject": "feat: Add Ask Memory chat service to dashboard"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"type": "commit",
|
|
831
|
+
"ref": "15547d41e952350d095dfe3c01b2afa749638532",
|
|
832
|
+
"date": "2026-02-08",
|
|
833
|
+
"subject": "feat: Widen chat panel and add conversation history with localStorage"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"type": "commit",
|
|
837
|
+
"ref": "78b0956610eb7d22c28a821c67e10e6e9996c5be",
|
|
838
|
+
"date": "2026-02-08",
|
|
839
|
+
"subject": "fix: Knowledge Graph shows data even when no memories have been accessed"
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"type": "commit",
|
|
843
|
+
"ref": "d56d22ba3271c1d51ea8bbaddb21f5f3d0a79d49",
|
|
844
|
+
"date": "2026-02-20",
|
|
845
|
+
"subject": "feat(ops): add heartbeat orchestrator and sync-gap auto-heal scripts"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"type": "commit",
|
|
849
|
+
"ref": "11d3092e372836f784a760fc0b4269fd44e9159f",
|
|
850
|
+
"date": "2026-02-09",
|
|
851
|
+
"subject": "feat: optional MongoDB sync for project events"
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"type": "commit",
|
|
855
|
+
"ref": "4855172b8f92fff0c148c106de4e10c494d2bb09",
|
|
856
|
+
"date": "2026-02-22",
|
|
857
|
+
"subject": "feat: add Codex session history importer, MongoDB sync config, and AGENTS.md"
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"type": "commit",
|
|
861
|
+
"ref": "d278200d0f0666616a8556f2f25f9758b3ab9afd",
|
|
862
|
+
"date": "2026-02-24",
|
|
863
|
+
"subject": "feat(memory): adopt memU-style scoped retrieval and staged ingest hooks"
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"type": "commit",
|
|
867
|
+
"ref": "4447e64fa00065bfb364d38c597ad87484770891",
|
|
868
|
+
"date": "2026-02-24",
|
|
869
|
+
"subject": "docs(memory): document memU-inspired retrieval strategies and scoped filters"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"type": "commit",
|
|
873
|
+
"ref": "e25f03a7680d82532d10620d3495ac6dc2b67a46",
|
|
874
|
+
"date": "2026-02-24",
|
|
875
|
+
"subject": "docs(readme): add practical examples for memU-inspired retrieval options"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"type": "commit",
|
|
879
|
+
"ref": "917ad7fc97a1c2de68637dfbe4b4cdd51776ec30",
|
|
880
|
+
"date": "2026-02-24",
|
|
881
|
+
"subject": "feat(memory): add append-only markdown mirror for categorized event archives"
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"type": "commit",
|
|
885
|
+
"ref": "72250046152e851ed70476a8704ca38ca633ffab",
|
|
886
|
+
"date": "2026-02-24",
|
|
887
|
+
"subject": "feat: append-only markdown mirror in sqlite ingest flow"
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"type": "commit",
|
|
891
|
+
"ref": "3a34d45a594affb034d6e416e3a29b6d2dcc20a5",
|
|
892
|
+
"date": "2026-02-24",
|
|
893
|
+
"subject": "feat(memory): auto-refresh markdown mirror index"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"type": "commit",
|
|
897
|
+
"ref": "df15146c2a8c3e389c1a2b8d6fcfb4a33f7a772d",
|
|
898
|
+
"date": "2026-02-24",
|
|
899
|
+
"subject": "chore(memory): normalize markdown mirror default category to uncategorized"
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"type": "commit",
|
|
903
|
+
"ref": "fe9ef67e5acabb81885a3c752a5b8525f80856a5",
|
|
904
|
+
"date": "2026-02-24",
|
|
905
|
+
"subject": "feat(cli): add organize-import command for structured markdown memory import"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"type": "commit",
|
|
909
|
+
"ref": "0dceb2d914e67e10d140848340f30e6fd07c4f67",
|
|
910
|
+
"date": "2026-02-24",
|
|
911
|
+
"subject": "feat(retrieval): add auto fallback chain fast→deep→scope-expand→summary"
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"type": "commit",
|
|
915
|
+
"ref": "7de02967a1d59aea3e04ef1239585b93828c503a",
|
|
916
|
+
"date": "2026-02-24",
|
|
917
|
+
"subject": "feat(ranking): add helpfulness-driven adaptive rerank weights v1"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"type": "commit",
|
|
921
|
+
"ref": "46f2cfa2d99f0c8fb3a48709a97f62800f01d4fe",
|
|
922
|
+
"date": "2026-02-24",
|
|
923
|
+
"subject": "feat(retrieval): add ttl/decay ranking policy v1"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"type": "commit",
|
|
927
|
+
"ref": "5fd950beee4d02f00b0c93be668a2e114ce9b257",
|
|
928
|
+
"date": "2026-02-24",
|
|
929
|
+
"subject": "feat(retrieval): add intent-rewrite deep retrieval merge flow"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"type": "commit",
|
|
933
|
+
"ref": "d1dfe03f881d1a76ecd9a916cbf04c3ff2a4bf7e",
|
|
934
|
+
"date": "2026-02-24",
|
|
935
|
+
"subject": "feat(retrieval): add graph-hop expansion with hop penalty"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"type": "commit",
|
|
939
|
+
"ref": "7c84b5eacff733d8cb692eb9d47b7297a0872e43",
|
|
940
|
+
"date": "2026-02-24",
|
|
941
|
+
"subject": "feat(consolidation): add hierarchical summary→rule automation with report"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"type": "commit",
|
|
945
|
+
"ref": "db38c7e606a59478c03bac7e5bb5951954ca0813",
|
|
946
|
+
"date": "2026-02-25",
|
|
947
|
+
"subject": "Feat/organize import bootstrap kb (#10)"
|
|
948
|
+
}
|
|
949
|
+
]
|
|
950
|
+
}
|