claude-memory-layer 1.0.26 → 1.0.28
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/.env.example +7 -0
- package/AGENTS.md +11 -0
- package/README.md +184 -41
- package/benchmarks/replay/anonymized-real-sessions.json +48 -0
- package/dist/cli/index.js +10097 -6003
- package/dist/cli/index.js.map +4 -4
- package/dist/core/index.js +9745 -5587
- package/dist/core/index.js.map +4 -4
- package/dist/hooks/post-tool-use.js +6545 -5270
- package/dist/hooks/post-tool-use.js.map +4 -4
- package/dist/hooks/semantic-daemon.js +6646 -5354
- package/dist/hooks/semantic-daemon.js.map +4 -4
- package/dist/hooks/session-end.js +6618 -5347
- package/dist/hooks/session-end.js.map +4 -4
- package/dist/hooks/session-start.js +6619 -5354
- package/dist/hooks/session-start.js.map +4 -4
- package/dist/hooks/stop.js +6614 -5325
- package/dist/hooks/stop.js.map +4 -4
- package/dist/hooks/user-prompt-submit.js +6702 -5356
- package/dist/hooks/user-prompt-submit.js.map +4 -4
- package/dist/index.js +13537 -0
- package/dist/index.js.map +7 -0
- package/dist/mcp/index.js +20770 -0
- package/dist/mcp/index.js.map +7 -0
- package/dist/server/api/index.js +6632 -5319
- package/dist/server/api/index.js.map +4 -4
- package/dist/server/index.js +6667 -5340
- package/dist/server/index.js.map +4 -4
- package/dist/services/memory-service.js +6568 -5350
- package/dist/services/memory-service.js.map +4 -4
- package/dist/ui/assets/js/bootstrap.js +244 -0
- package/dist/ui/assets/js/chat.js +373 -0
- package/dist/ui/assets/js/disclosure.js +232 -0
- package/dist/ui/assets/js/modals.js +298 -0
- package/dist/ui/assets/js/overview.js +655 -0
- package/dist/ui/assets/js/state.js +72 -0
- package/dist/ui/assets/js/views.js +468 -0
- package/dist/ui/index.html +43 -1
- package/dist/ui/index.ts +3 -0
- package/dist/ui/style.css +222 -0
- package/docs/ARCHITECTURE_COMPARISON_AND_RECOMMENDATIONS.md +627 -0
- package/docs/HERMES_MEMORY_INGESTION_ANALYSIS.md +440 -0
- package/docs/MEMORY_USEFULNESS_AUDIT.md +371 -0
- package/docs/MEMORY_USEFULNESS_AUDIT_RAW.json +80 -0
- package/docs/MEMSEARCH_PROJECT_STRUCTURE_ANALYSIS.md +333 -0
- package/docs/PRODUCT_VALIDATION_MATRIX.md +82 -0
- package/docs/PROJECT_STRUCTURE_ANALYSIS.md +421 -0
- package/docs/REFACTORING_MILESTONES_AND_ISSUES.md +501 -0
- package/docs/REFACTORING_PLAN_THIN_CORE.md +414 -0
- package/docs/REFERENCE_PROJECT_ANALYSES.md +25 -0
- package/docs/SUPERLOCALMEMORY_PROJECT_STRUCTURE_ANALYSIS.md +452 -0
- package/docs/TARGET_ARCHITECTURE_AND_FOLDER_STRUCTURE.md +446 -0
- package/docs/architecture/comparison-index.md +47 -0
- package/docs/reports/codex-real-data-validation-20260505T040447Z.md +46 -0
- package/package.json +9 -5
- package/scripts/build.ts +25 -8
- package/scripts/generate-session-qrels.ts +126 -0
- package/scripts/replay-retrieval-benchmark.ts +69 -0
- package/specs/thin-core-refactor/context.md +275 -0
- package/specs/thin-core-refactor/plan.md +536 -0
- package/specs/thin-core-refactor/spec.md +465 -0
- package/src/adapters/claude/capture/index.ts +3 -0
- package/src/adapters/claude/context/index.ts +3 -0
- package/src/adapters/claude/hooks/index.ts +21 -0
- package/src/adapters/claude/hooks/post-tool-use.ts +239 -0
- package/src/adapters/claude/hooks/prompt-injection-policy.ts +104 -0
- package/src/adapters/claude/hooks/semantic-daemon-client.ts +209 -0
- package/src/adapters/claude/hooks/semantic-daemon.ts +283 -0
- package/src/adapters/claude/hooks/session-end.ts +59 -0
- package/src/adapters/claude/hooks/session-start.ts +73 -0
- package/src/adapters/claude/hooks/stop.ts +128 -0
- package/src/adapters/claude/hooks/user-prompt-submit.ts +361 -0
- package/src/adapters/claude/index.ts +4 -0
- package/src/adapters/claude/transcript/index.ts +4 -0
- package/src/adapters/claude/transcript/transcript-reader.ts +57 -0
- package/src/adapters/claude/transcript/turn-reconstructor.ts +65 -0
- package/src/apps/cli/claude-settings-hooks.ts +138 -0
- package/src/apps/cli/codex-import-runner.ts +125 -0
- package/src/apps/cli/codex-validation-output.ts +95 -0
- package/src/apps/cli/hermes-import-runner.ts +130 -0
- package/src/apps/cli/hermes-validation-output.ts +91 -0
- package/src/apps/cli/index.ts +1731 -0
- package/src/apps/cli/mcp-install.ts +106 -0
- package/src/apps/cli/retrieval-disclosure-output.ts +196 -0
- package/src/apps/dashboard/assets/js/bootstrap.js +244 -0
- package/src/apps/dashboard/assets/js/chat.js +373 -0
- package/src/apps/dashboard/assets/js/disclosure.js +232 -0
- package/src/apps/dashboard/assets/js/modals.js +298 -0
- package/src/apps/dashboard/assets/js/overview.js +655 -0
- package/src/apps/dashboard/assets/js/state.js +72 -0
- package/src/apps/dashboard/assets/js/views.js +468 -0
- package/src/{ui → apps/dashboard}/index.html +43 -1
- package/src/apps/dashboard/index.ts +3 -0
- package/src/{ui → apps/dashboard}/style.css +222 -0
- package/src/apps/index.ts +5 -0
- package/src/apps/server/api/chat.ts +244 -0
- package/src/apps/server/api/citations.ts +105 -0
- package/src/apps/server/api/events.ts +137 -0
- package/src/apps/server/api/health.ts +53 -0
- package/src/apps/server/api/index.ts +26 -0
- package/src/apps/server/api/projects.ts +74 -0
- package/src/apps/server/api/search.ts +184 -0
- package/src/apps/server/api/sessions.ts +115 -0
- package/src/apps/server/api/stats.ts +723 -0
- package/src/apps/server/api/turns.ts +143 -0
- package/src/apps/server/api/utils.ts +65 -0
- package/src/apps/server/index.ts +111 -0
- package/src/cli/index.ts +2 -1311
- package/src/cli/retrieval-disclosure-output.ts +2 -0
- package/src/compat/index.ts +5 -0
- package/src/core/derive/fact-deriver.ts +170 -0
- package/src/core/derive/index.ts +2 -0
- package/src/core/derive/summary-deriver.ts +76 -0
- package/src/core/embedder.ts +4 -152
- package/src/core/engine/embedding-maintenance-service.ts +187 -0
- package/src/core/engine/endless-memory-services.ts +4 -0
- package/src/core/engine/index.ts +19 -0
- package/src/core/engine/memory-engine-services.ts +170 -0
- package/src/core/engine/memory-ingest-service.ts +317 -0
- package/src/core/engine/memory-query-service.ts +173 -0
- package/src/core/engine/memory-runtime-service.ts +162 -0
- package/src/core/engine/memory-service-composition.ts +231 -0
- package/src/core/engine/retrieval-analytics-service.ts +181 -0
- package/src/core/engine/retrieval-disclosure-service.ts +420 -0
- package/src/core/engine/retrieval-orchestrator.ts +377 -0
- package/src/core/engine/retrieval-services.ts +176 -0
- package/src/core/engine/shared-memory-services.ts +4 -0
- package/src/core/entity-repo.ts +1 -3
- package/src/core/event-store.ts +3 -3
- package/src/core/evidence-aligner.ts +2 -2
- package/src/core/external-market-context.ts +582 -0
- package/src/core/graduation.ts +2 -3
- package/src/core/index.ts +21 -0
- package/src/core/matcher.ts +2 -4
- package/src/core/model/memory-fact.ts +30 -0
- package/src/core/model/memory-rule.ts +14 -0
- package/src/core/model/memory-summary.ts +21 -0
- package/src/core/model/raw-event.ts +28 -0
- package/src/core/model/retrieval-result.ts +35 -0
- package/src/core/privacy/filter.ts +21 -10
- package/src/core/product-validation-matrix.ts +314 -0
- package/src/core/progressive-retriever.ts +1 -2
- package/src/core/registry/project-path.ts +54 -0
- package/src/core/registry/session-registry.ts +69 -0
- package/src/core/replay-evaluator.ts +625 -0
- package/src/core/retrieval-benchmark.ts +117 -0
- package/src/core/retrieval-quality.ts +109 -0
- package/src/core/retriever.ts +53 -15
- package/src/core/session-qrels.ts +360 -0
- package/src/core/shared-event-store.ts +1 -1
- package/src/core/sqlite-event-store.ts +35 -11
- package/src/core/task/blocker-resolver.ts +2 -2
- package/src/core/task/task-resolver.ts +0 -1
- package/src/core/vector-outbox.ts +1 -10
- package/src/core/vector-worker.ts +1 -1
- package/src/extensions/endless-memory/endless-memory-services.ts +350 -0
- package/src/extensions/endless-memory/index.ts +1 -0
- package/src/extensions/index.ts +5 -0
- package/src/extensions/mcp/handlers.ts +960 -0
- package/src/extensions/mcp/index.ts +48 -0
- package/src/extensions/mcp/tools.ts +252 -0
- package/src/extensions/shared-memory/index.ts +1 -0
- package/src/extensions/shared-memory/shared-memory-services.ts +211 -0
- package/src/extensions/vector/embedder.ts +197 -0
- package/src/extensions/vector/index.ts +1 -0
- package/src/hooks/post-tool-use.ts +3 -236
- package/src/hooks/semantic-daemon-client.ts +1 -208
- package/src/hooks/semantic-daemon.ts +6 -271
- package/src/hooks/session-end.ts +4 -79
- package/src/hooks/session-start.ts +4 -73
- package/src/hooks/stop.ts +3 -173
- package/src/hooks/user-prompt-submit.ts +3 -338
- package/src/index.ts +13 -0
- package/src/mcp/handlers.ts +2 -212
- package/src/mcp/index.ts +3 -46
- package/src/mcp/tools.ts +2 -78
- package/src/server/api/chat.ts +2 -244
- package/src/server/api/citations.ts +2 -105
- package/src/server/api/events.ts +2 -137
- package/src/server/api/health.ts +2 -53
- package/src/server/api/index.ts +2 -26
- package/src/server/api/projects.ts +2 -74
- package/src/server/api/search.ts +2 -102
- package/src/server/api/sessions.ts +2 -115
- package/src/server/api/stats.ts +2 -724
- package/src/server/api/turns.ts +2 -143
- package/src/server/api/utils.ts +2 -46
- package/src/server/index.ts +2 -100
- package/src/services/bootstrap-organizer.ts +46 -26
- package/src/services/codex-session-history-importer.ts +521 -29
- package/src/services/hermes-session-history-importer.ts +733 -0
- package/src/services/memory-service-config.ts +36 -0
- package/src/services/memory-service-registry.ts +150 -0
- package/src/services/memory-service.ts +211 -1325
- package/src/services/session-history-importer.ts +58 -14
- package/tests/README.md +23 -0
- package/tests/adapters/claude/claude-semantic-daemon-adapter.test.ts +54 -0
- package/tests/adapters/claude/claude-transcript-reconstructor.test.ts +98 -0
- package/tests/adapters/claude-hook-prompt-injection-policy.test.ts +99 -0
- package/tests/apps/app-layer-boundary.test.ts +48 -0
- package/tests/apps/claude-settings-hooks.test.ts +107 -0
- package/tests/apps/cli-disclosure-output.test.ts +212 -0
- package/tests/apps/codex-import-runner.test.ts +99 -0
- package/tests/apps/codex-validation-output.test.ts +100 -0
- package/tests/apps/hermes-import-runner.test.ts +99 -0
- package/tests/apps/mcp-install-command.test.ts +59 -0
- package/tests/apps/package-build-entrypoints.test.ts +30 -0
- package/tests/apps/search-api-disclosure.test.ts +162 -0
- package/tests/apps/stats-api-lightweight.test.ts +67 -0
- package/tests/apps/ui-disclosure-output.test.ts +140 -0
- package/tests/{bootstrap-organizer.test.ts → core/bootstrap-organizer.test.ts} +1 -1
- package/tests/{canonical-key.test.ts → core/canonical-key.test.ts} +1 -1
- package/tests/core/codex-session-history-importer-validation.test.ts +185 -0
- package/tests/{consolidation-worker.test.ts → core/consolidation-worker.test.ts} +2 -2
- package/tests/core/embedding-maintenance-service.test.ts +282 -0
- package/tests/{evidence-aligner.test.ts → core/evidence-aligner.test.ts} +1 -1
- package/tests/core/external-market-context.test.ts +209 -0
- package/tests/core/fact-deriver.test.ts +79 -0
- package/tests/core/hermes-session-history-importer-validation.test.ts +609 -0
- package/tests/{ingest-interceptor.test.ts → core/ingest-interceptor.test.ts} +1 -1
- package/tests/{markdown-mirror.test.ts → core/markdown-mirror.test.ts} +2 -2
- package/tests/{matcher.test.ts → core/matcher.test.ts} +1 -1
- package/tests/{md-mirror.test.ts → core/md-mirror.test.ts} +2 -2
- package/tests/core/memory-engine-services.test.ts +240 -0
- package/tests/core/memory-ingest-service.test.ts +296 -0
- package/tests/core/memory-query-service.test.ts +129 -0
- package/tests/core/memory-runtime-service.test.ts +201 -0
- package/tests/core/memory-service-composition.test.ts +192 -0
- package/tests/core/memory-service-config.test.ts +41 -0
- package/tests/core/memory-service-facade.test.ts +30 -0
- package/tests/core/memory-service-registry.test.ts +206 -0
- package/tests/core/product-validation-matrix.test.ts +61 -0
- package/tests/core/project-registry.test.ts +78 -0
- package/tests/core/replay-evaluator.test.ts +181 -0
- package/tests/core/retrieval-analytics-service.test.ts +210 -0
- package/tests/core/retrieval-benchmark.test.ts +93 -0
- package/tests/core/retrieval-disclosure-service.test.ts +264 -0
- package/tests/core/retrieval-orchestrator.test.ts +403 -0
- package/tests/core/retrieval-quality.test.ts +31 -0
- package/tests/core/retrieval-services.test.ts +185 -0
- package/tests/{retriever-fallback-chain.test.ts → core/retriever-fallback-chain.test.ts} +3 -3
- package/tests/{retriever-strategy-scope.test.ts → core/retriever-strategy-scope.test.ts} +70 -3
- package/tests/{retriever.memu-adoption.test.ts → core/retriever.memu-adoption.test.ts} +3 -3
- package/tests/core/session-history-importer-filter.test.ts +78 -0
- package/tests/core/session-qrels.test.ts +250 -0
- package/tests/{sqlite-event-store-replication.test.ts → core/sqlite-event-store-replication.test.ts} +36 -1
- package/tests/core/summary-deriver.test.ts +66 -0
- package/tests/extensions/embedder-warning-suppression.test.ts +53 -0
- package/tests/extensions/endless-memory-extension-boundary.test.ts +17 -0
- package/tests/extensions/endless-memory-services.test.ts +325 -0
- package/tests/extensions/mcp-context-tools.test.ts +905 -0
- package/tests/extensions/mcp-extension-boundary.test.ts +21 -0
- package/tests/extensions/mcp-package-build.test.ts +22 -0
- package/tests/extensions/mcp-project-aware-tools.test.ts +102 -0
- package/tests/extensions/shared-memory-extension-boundary.test.ts +24 -0
- package/tests/extensions/shared-memory-services.test.ts +309 -0
- package/tests/extensions/vector-extension-boundary.test.ts +21 -0
- package/.claude/settings.local.json +0 -25
- package/.npm-cache/_cacache/content-v2/sha512/04/76/c098f88dfe584a2b80870bff7421b05d17d3d9ee1027f77772332a22d3f93a9a57101a2855107f6ad82077a818bba912b2bc317f2361b5ddb09ad284d9ce +0 -0
- package/.npm-cache/_cacache/content-v2/sha512/60/25/d2ecd39cfc7cab58351162814be77f935c6d6491c10c3745d456da7ddb2117ffd90c10e53fe3c0f1ed16b403307841543634504398b16ee4e6b6dd8e0c45 +0 -0
- package/.npm-cache/_cacache/index-v5/2b/9a/7f8f40206ed8a2e0a84efaa953ccaed1f5d001e14b931083f2e7a0738007 +0 -2
- package/.npm-cache/_cacache/index-v5/2e/d9/fcfa5c6a6abdc2a3644ab84a95936047298c465a2f47ee03db8f7fe1e946 +0 -3
- package/.npm-cache/_cacache/index-v5/a9/42/e519633356d12d3d2f19da66a8301016d496c8f5c3e0554124aaa62dc043 +0 -2
- package/.npm-cache/_logs/2026-02-26T12_04_52_729Z-debug-0.log +0 -256
- package/.npm-cache/_logs/2026-02-26T12_05_36_835Z-debug-0.log +0 -18
- package/.npm-cache/_logs/2026-02-26T12_05_45_982Z-debug-0.log +0 -32
- package/.npm-cache/_logs/2026-02-26T12_05_48_515Z-debug-0.log +0 -260
- package/.npm-cache/_logs/2026-02-26T12_05_53_567Z-debug-0.log +0 -69
- package/.npm-cache/_update-notifier-last-checked +0 -0
- package/bootstrap-kb/decisions/decisions.md +0 -244
- package/bootstrap-kb/glossary/glossary.md +0 -46
- package/bootstrap-kb/modules/.claude-plugin.md +0 -22
- package/bootstrap-kb/modules/agents.md.md +0 -15
- package/bootstrap-kb/modules/claude.md.md +0 -15
- package/bootstrap-kb/modules/context.md.md +0 -15
- package/bootstrap-kb/modules/docs.md +0 -18
- package/bootstrap-kb/modules/handoff.md.md +0 -15
- package/bootstrap-kb/modules/package-lock.json.md +0 -15
- package/bootstrap-kb/modules/package.json.md +0 -15
- package/bootstrap-kb/modules/plan.md.md +0 -15
- package/bootstrap-kb/modules/readme.md.md +0 -15
- package/bootstrap-kb/modules/scripts.md +0 -26
- package/bootstrap-kb/modules/spec.md.md +0 -15
- package/bootstrap-kb/modules/specs.md +0 -20
- package/bootstrap-kb/modules/src.md +0 -51
- package/bootstrap-kb/modules/tests.md +0 -42
- package/bootstrap-kb/modules/tsconfig.json.md +0 -15
- package/bootstrap-kb/modules/vitest.config.ts.md +0 -15
- package/bootstrap-kb/overview/overview.md +0 -40
- package/bootstrap-kb/sources/manifest.json +0 -950
- package/bootstrap-kb/sources/manifest.md +0 -227
- package/bootstrap-kb/timeline/timeline.md +0 -57
- package/claude-memory-layer-1.0.14.tgz +0 -0
- package/d.sh +0 -3
- package/deploy.sh +0 -3
- package/dist/ui/app.js +0 -2101
- package/memory/.claude-plugin/commands/2026-02-25.md +0 -263
- package/memory/_index.md +0 -418
- package/memory/agent_response/uncategorized/2026-02-26.md +0 -176
- package/memory/agent_response/uncategorized/2026-03-03.md +0 -14
- package/memory/agent_response/uncategorized/2026-03-04.md +0 -1421
- package/memory/agent_response/uncategorized/2026-03-05.md +0 -48
- package/memory/default/uncategorized/2026-02-25.md +0 -4839
- package/memory/session_summary/uncategorized/2026-02-26.md +0 -13
- package/memory/session_summary/uncategorized/2026-03-03.md +0 -5
- package/memory/session_summary/uncategorized/2026-03-04.md +0 -50
- package/memory/specs/20260207-dashboard-upgrade/2026-02-25.md +0 -142
- package/memory/specs/citations-system/2026-02-25.md +0 -1121
- package/memory/specs/endless-mode/2026-02-25.md +0 -1392
- package/memory/specs/entity-edge-model/2026-02-25.md +0 -1263
- package/memory/specs/evidence-aligner-v2/2026-02-25.md +0 -1028
- package/memory/specs/mcp-desktop-integration/2026-02-25.md +0 -1334
- package/memory/specs/post-tool-use-hook/2026-02-25.md +0 -1164
- package/memory/specs/private-tags/2026-02-25.md +0 -1057
- package/memory/specs/progressive-disclosure/2026-02-25.md +0 -1436
- package/memory/specs/task-entity-system/2026-02-25.md +0 -924
- package/memory/specs/vector-outbox-v2/2026-02-25.md +0 -1510
- package/memory/specs/web-viewer-ui/2026-02-25.md +0 -1709
- package/memory/tool_observation/uncategorized/2026-02-26.md +0 -209
- package/memory/tool_observation/uncategorized/2026-03-03.md +0 -21
- package/memory/tool_observation/uncategorized/2026-03-04.md +0 -1033
- package/memory/tool_observation/uncategorized/2026-03-05.md +0 -29
- package/memory/user_prompt/uncategorized/2026-02-26.md +0 -25
- package/memory/user_prompt/uncategorized/2026-03-04.md +0 -634
- package/specs/optional-duckdb/context.md +0 -77
- package/specs/optional-duckdb/plan.md +0 -142
- package/specs/optional-duckdb/spec.md +0 -35
- package/src/ui/app.js +0 -2101
|
@@ -1,950 +0,0 @@
|
|
|
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
|
-
}
|