claude-memory-layer 1.0.27 → 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 -419
- 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 -157
- 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 -33
- package/memory/user_prompt/uncategorized/2026-02-26.md +0 -25
- package/memory/user_prompt/uncategorized/2026-03-04.md +0 -634
- package/memory/user_prompt/uncategorized/2026-03-05.md +0 -6
- 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,263 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
## 2026-02-25T12:31:21.733Z | a551b032-ffdd-43e5-8f34-c42b12b091ce
|
|
3
|
-
- type: session_summary
|
|
4
|
-
- session: import:organized
|
|
5
|
-
# /memory-forget
|
|
6
|
-
|
|
7
|
-
Remove specific memories from storage.
|
|
8
|
-
|
|
9
|
-
## Usage
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
/memory-forget <event-id>
|
|
13
|
-
/memory-forget --session <session-id>
|
|
14
|
-
/memory-forget --before <date>
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
## Arguments
|
|
18
|
-
|
|
19
|
-
- `event-id`: Specific event ID to forget
|
|
20
|
-
- `--session <id>`: Forget all events from a session
|
|
21
|
-
- `--before <date>`: Forget events before a date (YYYY-MM-DD)
|
|
22
|
-
- `--confirm`: Skip confirmation prompt
|
|
23
|
-
|
|
24
|
-
## Examples
|
|
25
|
-
|
|
26
|
-
```
|
|
27
|
-
/memory-forget abc123-def456
|
|
28
|
-
/memory-forget --session session_xyz --confirm
|
|
29
|
-
/memory-forget --before 2024-01-01
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
## Description
|
|
33
|
-
|
|
34
|
-
Removes memories from storage. This operation:
|
|
35
|
-
|
|
36
|
-
1. Marks events as deleted in EventStore (soft delete)
|
|
37
|
-
2. Removes corresponding vectors from LanceDB
|
|
38
|
-
3. Updates memory level statistics
|
|
39
|
-
|
|
40
|
-
⚠️ **Note**: Due to the append-only architecture, deleted events are marked but not physically removed from the event log. Vector embeddings are physically deleted.
|
|
41
|
-
|
|
42
|
-
## Implementation
|
|
43
|
-
|
|
44
|
-
```bash
|
|
45
|
-
node dist/cli/index.js forget $ARGUMENTS
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
## 2026-02-25T12:31:21.738Z | ec065482-7832-4ec6-9fbf-584ca1d05d75
|
|
49
|
-
- type: session_summary
|
|
50
|
-
- session: import:organized
|
|
51
|
-
# /memory-history
|
|
52
|
-
|
|
53
|
-
View conversation history from memory.
|
|
54
|
-
|
|
55
|
-
## Usage
|
|
56
|
-
|
|
57
|
-
```
|
|
58
|
-
/memory-history [options]
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
## Options
|
|
62
|
-
|
|
63
|
-
- `--session <id>`: Show history for a specific session
|
|
64
|
-
- `--limit <n>`: Limit number of events (default: 20)
|
|
65
|
-
- `--type <type>`: Filter by event type (user_prompt, agent_response, session_summary)
|
|
66
|
-
|
|
67
|
-
## Examples
|
|
68
|
-
|
|
69
|
-
```
|
|
70
|
-
/memory-history
|
|
71
|
-
/memory-history --limit 50
|
|
72
|
-
/memory-history --session abc123
|
|
73
|
-
/memory-history --type user_prompt
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
## Description
|
|
77
|
-
|
|
78
|
-
Displays stored conversation events from memory. By default shows the most recent events across all sessions. Use filters to narrow down to specific sessions or event types.
|
|
79
|
-
|
|
80
|
-
## Implementation
|
|
81
|
-
|
|
82
|
-
```bash
|
|
83
|
-
node dist/cli/index.js history $ARGUMENTS
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
## 2026-02-25T12:31:21.740Z | 5be40880-b0f7-4aa3-9844-7190b1fa06cf
|
|
87
|
-
- type: session_summary
|
|
88
|
-
- session: import:organized
|
|
89
|
-
# /memory-import
|
|
90
|
-
|
|
91
|
-
Import existing Claude Code conversation history into memory.
|
|
92
|
-
|
|
93
|
-
## Usage
|
|
94
|
-
|
|
95
|
-
```
|
|
96
|
-
/memory-import [options]
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
## Options
|
|
100
|
-
|
|
101
|
-
- `--project <path>`: Import from specific project path
|
|
102
|
-
- `--session <file>`: Import a specific session file (JSONL)
|
|
103
|
-
- `--all`: Import all sessions from all projects
|
|
104
|
-
- `--limit <n>`: Limit messages per session
|
|
105
|
-
- `--verbose`: Show detailed progress
|
|
106
|
-
|
|
107
|
-
## Examples
|
|
108
|
-
|
|
109
|
-
```
|
|
110
|
-
/memory-import
|
|
111
|
-
/memory-import --project /home/user/myproject
|
|
112
|
-
/memory-import --all
|
|
113
|
-
/memory-import --session ~/.claude/projects/xyz/abc123.jsonl
|
|
114
|
-
/memory-import --all --limit 100 --verbose
|
|
115
|
-
```
|
|
116
|
-
|
|
117
|
-
## Description
|
|
118
|
-
|
|
119
|
-
This command imports existing Claude Code conversation history from JSONL session files into the memory store. This allows the plugin to learn from your previous conversations and provide more relevant context in future sessions.
|
|
120
|
-
|
|
121
|
-
### What gets imported:
|
|
122
|
-
|
|
123
|
-
- **User prompts**: Your questions and requests
|
|
124
|
-
- **Agent responses**: Claude's responses (truncated to 5000 chars)
|
|
125
|
-
- **Session metadata**: Timestamps and session IDs
|
|
126
|
-
|
|
127
|
-
### Deduplication
|
|
128
|
-
|
|
129
|
-
The importer automatically skips duplicate messages based on content hash, so you can safely run import multiple times without creating duplicate memories.
|
|
130
|
-
|
|
131
|
-
### Session Files Location
|
|
132
|
-
|
|
133
|
-
Claude Code stores session history in:
|
|
134
|
-
```
|
|
135
|
-
~/.claude/projects/<project-hash>/<session-id>.jsonl
|
|
136
|
-
```
|
|
137
|
-
|
|
138
|
-
Use `/memory-list` to see available sessions before importing.
|
|
139
|
-
|
|
140
|
-
## Implementation
|
|
141
|
-
|
|
142
|
-
```bash
|
|
143
|
-
node dist/cli/index.js import $ARGUMENTS
|
|
144
|
-
```
|
|
145
|
-
|
|
146
|
-
## 2026-02-25T12:31:21.743Z | 3d6ec7cb-b61d-4638-b767-a2d6a1e1b7bd
|
|
147
|
-
- type: session_summary
|
|
148
|
-
- session: import:organized
|
|
149
|
-
# /memory-list
|
|
150
|
-
|
|
151
|
-
List available Claude Code sessions that can be imported.
|
|
152
|
-
|
|
153
|
-
## Usage
|
|
154
|
-
|
|
155
|
-
```
|
|
156
|
-
/memory-list [options]
|
|
157
|
-
```
|
|
158
|
-
|
|
159
|
-
## Options
|
|
160
|
-
|
|
161
|
-
- `--project <path>`: Filter sessions by project path
|
|
162
|
-
|
|
163
|
-
## Examples
|
|
164
|
-
|
|
165
|
-
```
|
|
166
|
-
/memory-list
|
|
167
|
-
/memory-list --project /home/user/myproject
|
|
168
|
-
```
|
|
169
|
-
|
|
170
|
-
## Description
|
|
171
|
-
|
|
172
|
-
Shows all available Claude Code session files that can be imported into memory. Each session displays:
|
|
173
|
-
|
|
174
|
-
- **Session ID**: Unique identifier for the session
|
|
175
|
-
- **Modified date**: When the session was last updated
|
|
176
|
-
- **File size**: Size of the session file
|
|
177
|
-
- **Path**: Full path to the JSONL file
|
|
178
|
-
|
|
179
|
-
Use this command to identify which sessions you want to import before running `/memory-import`.
|
|
180
|
-
|
|
181
|
-
## Implementation
|
|
182
|
-
|
|
183
|
-
```bash
|
|
184
|
-
node dist/cli/index.js list $ARGUMENTS
|
|
185
|
-
```
|
|
186
|
-
|
|
187
|
-
## 2026-02-25T12:31:21.745Z | fd04fc38-ab42-4406-aadc-9d73fdbbb079
|
|
188
|
-
- type: session_summary
|
|
189
|
-
- session: import:organized
|
|
190
|
-
# /memory-search
|
|
191
|
-
|
|
192
|
-
Search through stored memories using semantic search.
|
|
193
|
-
|
|
194
|
-
## Usage
|
|
195
|
-
|
|
196
|
-
```
|
|
197
|
-
/memory-search <query>
|
|
198
|
-
```
|
|
199
|
-
|
|
200
|
-
## Arguments
|
|
201
|
-
|
|
202
|
-
- `query`: The search query to find relevant memories
|
|
203
|
-
|
|
204
|
-
## Examples
|
|
205
|
-
|
|
206
|
-
```
|
|
207
|
-
/memory-search how to implement authentication
|
|
208
|
-
/memory-search React component patterns
|
|
209
|
-
/memory-search database optimization
|
|
210
|
-
```
|
|
211
|
-
|
|
212
|
-
## Description
|
|
213
|
-
|
|
214
|
-
This command searches through all stored conversation memories using semantic similarity. It returns the most relevant memories that match your query, along with their confidence scores.
|
|
215
|
-
|
|
216
|
-
The search uses AXIOMMIND weighted scoring:
|
|
217
|
-
- **High confidence** (≥0.92): Strong match, likely relevant
|
|
218
|
-
- **Suggested** (≥0.75): May be relevant, review recommended
|
|
219
|
-
- **None** (<0.75): No significant matches found
|
|
220
|
-
|
|
221
|
-
## Implementation
|
|
222
|
-
|
|
223
|
-
```bash
|
|
224
|
-
node dist/cli/index.js search "$ARGUMENTS"
|
|
225
|
-
```
|
|
226
|
-
|
|
227
|
-
## 2026-02-25T12:31:21.746Z | dc8f7b26-d8dd-461f-9911-54b26b23343e
|
|
228
|
-
- type: session_summary
|
|
229
|
-
- session: import:organized
|
|
230
|
-
# /memory-stats
|
|
231
|
-
|
|
232
|
-
View memory storage statistics.
|
|
233
|
-
|
|
234
|
-
## Usage
|
|
235
|
-
|
|
236
|
-
```
|
|
237
|
-
/memory-stats
|
|
238
|
-
```
|
|
239
|
-
|
|
240
|
-
## Description
|
|
241
|
-
|
|
242
|
-
Displays statistics about stored memories including:
|
|
243
|
-
|
|
244
|
-
- Total number of events
|
|
245
|
-
- Number of vector embeddings
|
|
246
|
-
- Memory level distribution (L0-L4)
|
|
247
|
-
- Storage size information
|
|
248
|
-
|
|
249
|
-
## Memory Levels
|
|
250
|
-
|
|
251
|
-
The graduation pipeline moves memories through these levels:
|
|
252
|
-
|
|
253
|
-
- **L0**: Raw events (EventStore)
|
|
254
|
-
- **L1**: Structured JSON (patterns, summaries)
|
|
255
|
-
- **L2**: Type candidates (validated schemas)
|
|
256
|
-
- **L3**: Verified knowledge (cross-session validated)
|
|
257
|
-
- **L4**: Active/searchable (indexed, readily available)
|
|
258
|
-
|
|
259
|
-
## Implementation
|
|
260
|
-
|
|
261
|
-
```bash
|
|
262
|
-
node dist/cli/index.js stats
|
|
263
|
-
```
|
package/memory/_index.md
DELETED
|
@@ -1,419 +0,0 @@
|
|
|
1
|
-
# Memory Index
|
|
2
|
-
|
|
3
|
-
Generated automatically by MarkdownMirror.
|
|
4
|
-
|
|
5
|
-
- memory/.claude-plugin/commands/2026-02-25.md
|
|
6
|
-
- memory/agent_response/uncategorized/2026-02-26.md
|
|
7
|
-
- memory/agent_response/uncategorized/2026-03-03.md
|
|
8
|
-
- memory/agent_response/uncategorized/2026-03-04.md
|
|
9
|
-
- memory/agent_response/uncategorized/2026-03-05.md
|
|
10
|
-
- memory/default/uncategorized/2026-02-25.md
|
|
11
|
-
- memory/node_modules/abbrev/2026-02-25.md
|
|
12
|
-
- memory/node_modules/abort-controller/2026-02-25.md
|
|
13
|
-
- memory/node_modules/acorn-walk/2026-02-25.md
|
|
14
|
-
- memory/node_modules/acorn/2026-02-25.md
|
|
15
|
-
- memory/node_modules/agent-base/2026-02-25.md
|
|
16
|
-
- memory/node_modules/agentkeepalive/2026-02-25.md
|
|
17
|
-
- memory/node_modules/aggregate-error/2026-02-25.md
|
|
18
|
-
- memory/node_modules/ansi-regex/2026-02-25.md
|
|
19
|
-
- memory/node_modules/ansi-styles/2026-02-25.md
|
|
20
|
-
- memory/node_modules/apache-arrow/2026-02-25.md
|
|
21
|
-
- memory/node_modules/aproba/2026-02-25.md
|
|
22
|
-
- memory/node_modules/are-we-there-yet/2026-02-25.md
|
|
23
|
-
- memory/node_modules/array-back/2026-02-25.md
|
|
24
|
-
- memory/node_modules/assertion-error/2026-02-25.md
|
|
25
|
-
- memory/node_modules/asynckit/2026-02-25.md
|
|
26
|
-
- memory/node_modules/b4a/2026-02-25.md
|
|
27
|
-
- memory/node_modules/balanced-match/2026-02-25.md
|
|
28
|
-
- memory/node_modules/bare-events/2026-02-25.md
|
|
29
|
-
- memory/node_modules/bare-fs/2026-02-25.md
|
|
30
|
-
- memory/node_modules/bare-os/2026-02-25.md
|
|
31
|
-
- memory/node_modules/bare-path/2026-02-25.md
|
|
32
|
-
- memory/node_modules/bare-stream/2026-02-25.md
|
|
33
|
-
- memory/node_modules/bare-url/2026-02-25.md
|
|
34
|
-
- memory/node_modules/base64-js/2026-02-25.md
|
|
35
|
-
- memory/node_modules/better-sqlite3/2026-02-25.md
|
|
36
|
-
- memory/node_modules/bindings/2026-02-25.md
|
|
37
|
-
- memory/node_modules/bl/2026-02-25.md
|
|
38
|
-
- memory/node_modules/brace-expansion/2026-02-25.md
|
|
39
|
-
- memory/node_modules/bson/2026-02-25.md
|
|
40
|
-
- memory/node_modules/bson/vendor/base64/2026-02-25.md
|
|
41
|
-
- memory/node_modules/bson/vendor/text-encoding/2026-02-25.md
|
|
42
|
-
- memory/node_modules/buffer/2026-02-25.md
|
|
43
|
-
- memory/node_modules/cac/2026-02-25.md
|
|
44
|
-
- memory/node_modules/cacache/2026-02-25.md
|
|
45
|
-
- memory/node_modules/cacache/node_modules/brace-expansion/2026-02-25.md
|
|
46
|
-
- memory/node_modules/cacache/node_modules/glob/2026-02-25.md
|
|
47
|
-
- memory/node_modules/cacache/node_modules/minimatch/2026-02-25.md
|
|
48
|
-
- memory/node_modules/call-bind-apply-helpers/2026-02-25.md
|
|
49
|
-
- memory/node_modules/chai/2026-02-25.md
|
|
50
|
-
- memory/node_modules/chalk-template/2026-02-25.md
|
|
51
|
-
- memory/node_modules/chalk/2026-02-25.md
|
|
52
|
-
- memory/node_modules/check-error/2026-02-25.md
|
|
53
|
-
- memory/node_modules/chownr/2026-02-25.md
|
|
54
|
-
- memory/node_modules/clean-stack/2026-02-25.md
|
|
55
|
-
- memory/node_modules/color-convert/2026-02-25.md
|
|
56
|
-
- memory/node_modules/color-name/2026-02-25.md
|
|
57
|
-
- memory/node_modules/color-string/2026-02-25.md
|
|
58
|
-
- memory/node_modules/color-support/2026-02-25.md
|
|
59
|
-
- memory/node_modules/color/2026-02-25.md
|
|
60
|
-
- memory/node_modules/combined-stream/2026-02-25.md
|
|
61
|
-
- memory/node_modules/command-line-args/2026-02-25.md
|
|
62
|
-
- memory/node_modules/command-line-usage/2026-02-25.md
|
|
63
|
-
- memory/node_modules/command-line-usage/node_modules/array-back/2026-02-25.md
|
|
64
|
-
- memory/node_modules/command-line-usage/node_modules/typical/2026-02-25.md
|
|
65
|
-
- memory/node_modules/commander/2026-02-25.md
|
|
66
|
-
- memory/node_modules/confbox/2026-02-25.md
|
|
67
|
-
- memory/node_modules/console-control-strings/2026-02-25.md
|
|
68
|
-
- memory/node_modules/cross-spawn/2026-02-25.md
|
|
69
|
-
- memory/node_modules/debug/2026-02-25.md
|
|
70
|
-
- memory/node_modules/decompress-response/2026-02-25.md
|
|
71
|
-
- memory/node_modules/deep-eql/2026-02-25.md
|
|
72
|
-
- memory/node_modules/deep-extend/2026-02-25.md
|
|
73
|
-
- memory/node_modules/delayed-stream/2026-02-25.md
|
|
74
|
-
- memory/node_modules/delegates/2026-02-25.md
|
|
75
|
-
- memory/node_modules/detect-libc/2026-02-25.md
|
|
76
|
-
- memory/node_modules/diff-sequences/2026-02-25.md
|
|
77
|
-
- memory/node_modules/duckdb/2026-02-25.md
|
|
78
|
-
- memory/node_modules/dunder-proto/2026-02-25.md
|
|
79
|
-
- memory/node_modules/emoji-regex/2026-02-25.md
|
|
80
|
-
- memory/node_modules/encoding/2026-02-25.md
|
|
81
|
-
- memory/node_modules/end-of-stream/2026-02-25.md
|
|
82
|
-
- memory/node_modules/env-paths/2026-02-25.md
|
|
83
|
-
- memory/node_modules/err-code/2026-02-25.md
|
|
84
|
-
- memory/node_modules/es-define-property/2026-02-25.md
|
|
85
|
-
- memory/node_modules/es-errors/2026-02-25.md
|
|
86
|
-
- memory/node_modules/es-object-atoms/2026-02-25.md
|
|
87
|
-
- memory/node_modules/es-set-tostringtag/2026-02-25.md
|
|
88
|
-
- memory/node_modules/esbuild/2026-02-25.md
|
|
89
|
-
- memory/node_modules/esbuild/linux-x64/2026-02-25.md
|
|
90
|
-
- memory/node_modules/estree-walker/2026-02-25.md
|
|
91
|
-
- memory/node_modules/event-target-shim/2026-02-25.md
|
|
92
|
-
- memory/node_modules/events-universal/2026-02-25.md
|
|
93
|
-
- memory/node_modules/execa/2026-02-25.md
|
|
94
|
-
- memory/node_modules/execa/node_modules/signal-exit/2026-02-25.md
|
|
95
|
-
- memory/node_modules/expand-template/2026-02-25.md
|
|
96
|
-
- memory/node_modules/exponential-backoff/2026-02-25.md
|
|
97
|
-
- memory/node_modules/fast-fifo/2026-02-25.md
|
|
98
|
-
- memory/node_modules/file-uri-to-path/2026-02-25.md
|
|
99
|
-
- memory/node_modules/find-replace/2026-02-25.md
|
|
100
|
-
- memory/node_modules/flatbuffers/2026-02-25.md
|
|
101
|
-
- memory/node_modules/form-data-encoder/2026-02-25.md
|
|
102
|
-
- memory/node_modules/form-data/2026-02-25.md
|
|
103
|
-
- memory/node_modules/formdata-node/2026-02-25.md
|
|
104
|
-
- memory/node_modules/fs-constants/2026-02-25.md
|
|
105
|
-
- memory/node_modules/fs-minipass/2026-02-25.md
|
|
106
|
-
- memory/node_modules/fs.realpath/2026-02-25.md
|
|
107
|
-
- memory/node_modules/function-bind/.github/2026-02-25.md
|
|
108
|
-
- memory/node_modules/function-bind/2026-02-25.md
|
|
109
|
-
- memory/node_modules/gar/promisify/2026-02-25.md
|
|
110
|
-
- memory/node_modules/gauge/2026-02-25.md
|
|
111
|
-
- memory/node_modules/get-func-name/2026-02-25.md
|
|
112
|
-
- memory/node_modules/get-intrinsic/2026-02-25.md
|
|
113
|
-
- memory/node_modules/get-proto/2026-02-25.md
|
|
114
|
-
- memory/node_modules/get-stream/2026-02-25.md
|
|
115
|
-
- memory/node_modules/get-tsconfig/2026-02-25.md
|
|
116
|
-
- memory/node_modules/glob/2026-02-25.md
|
|
117
|
-
- memory/node_modules/gopd/2026-02-25.md
|
|
118
|
-
- memory/node_modules/graceful-fs/2026-02-25.md
|
|
119
|
-
- memory/node_modules/guid-typescript/2026-02-25.md
|
|
120
|
-
- memory/node_modules/has-flag/2026-02-25.md
|
|
121
|
-
- memory/node_modules/has-symbols/2026-02-25.md
|
|
122
|
-
- memory/node_modules/has-tostringtag/2026-02-25.md
|
|
123
|
-
- memory/node_modules/has-unicode/2026-02-25.md
|
|
124
|
-
- memory/node_modules/hasown/2026-02-25.md
|
|
125
|
-
- memory/node_modules/hono/2026-02-25.md
|
|
126
|
-
- memory/node_modules/hono/node-server/2026-02-25.md
|
|
127
|
-
- memory/node_modules/http-cache-semantics/2026-02-25.md
|
|
128
|
-
- memory/node_modules/http-proxy-agent/2026-02-25.md
|
|
129
|
-
- memory/node_modules/https-proxy-agent/2026-02-25.md
|
|
130
|
-
- memory/node_modules/huggingface/jinja/2026-02-25.md
|
|
131
|
-
- memory/node_modules/human-signals/2026-02-25.md
|
|
132
|
-
- memory/node_modules/humanize-ms/2026-02-25.md
|
|
133
|
-
- memory/node_modules/iconv-lite/2026-02-25.md
|
|
134
|
-
- memory/node_modules/ieee754/2026-02-25.md
|
|
135
|
-
- memory/node_modules/imurmurhash/2026-02-25.md
|
|
136
|
-
- memory/node_modules/indent-string/2026-02-25.md
|
|
137
|
-
- memory/node_modules/infer-owner/2026-02-25.md
|
|
138
|
-
- memory/node_modules/inflight/2026-02-25.md
|
|
139
|
-
- memory/node_modules/inherits/2026-02-25.md
|
|
140
|
-
- memory/node_modules/ini/2026-02-25.md
|
|
141
|
-
- memory/node_modules/ip-address/2026-02-25.md
|
|
142
|
-
- memory/node_modules/is-arrayish/2026-02-25.md
|
|
143
|
-
- memory/node_modules/is-fullwidth-code-point/2026-02-25.md
|
|
144
|
-
- memory/node_modules/is-lambda/2026-02-25.md
|
|
145
|
-
- memory/node_modules/is-stream/2026-02-25.md
|
|
146
|
-
- memory/node_modules/isexe/2026-02-25.md
|
|
147
|
-
- memory/node_modules/jest/schemas/2026-02-25.md
|
|
148
|
-
- memory/node_modules/jridgewell/sourcemap-codec/2026-02-25.md
|
|
149
|
-
- memory/node_modules/js-tokens/2026-02-25.md
|
|
150
|
-
- memory/node_modules/json-bignum/2026-02-25.md
|
|
151
|
-
- memory/node_modules/lancedb/lancedb-linux-x64-gnu/2026-02-25.md
|
|
152
|
-
- memory/node_modules/lancedb/lancedb/2026-02-25.md
|
|
153
|
-
- memory/node_modules/local-pkg/2026-02-25.md
|
|
154
|
-
- memory/node_modules/lodash.camelcase/2026-02-25.md
|
|
155
|
-
- memory/node_modules/long/2026-02-25.md
|
|
156
|
-
- memory/node_modules/loupe/2026-02-25.md
|
|
157
|
-
- memory/node_modules/lru-cache/2026-02-25.md
|
|
158
|
-
- memory/node_modules/magic-string/2026-02-25.md
|
|
159
|
-
- memory/node_modules/make-dir/2026-02-25.md
|
|
160
|
-
- memory/node_modules/make-dir/node_modules/semver/2026-02-25.md
|
|
161
|
-
- memory/node_modules/make-fetch-happen/2026-02-25.md
|
|
162
|
-
- memory/node_modules/mapbox/node-pre-gyp/2026-02-25.md
|
|
163
|
-
- memory/node_modules/math-intrinsics/2026-02-25.md
|
|
164
|
-
- memory/node_modules/memory-pager/2026-02-25.md
|
|
165
|
-
- memory/node_modules/merge-stream/2026-02-25.md
|
|
166
|
-
- memory/node_modules/mime-db/2026-02-25.md
|
|
167
|
-
- memory/node_modules/mime-types/2026-02-25.md
|
|
168
|
-
- memory/node_modules/mimic-fn/2026-02-25.md
|
|
169
|
-
- memory/node_modules/mimic-response/2026-02-25.md
|
|
170
|
-
- memory/node_modules/minimatch/2026-02-25.md
|
|
171
|
-
- memory/node_modules/minimist/2026-02-25.md
|
|
172
|
-
- memory/node_modules/minipass-collect/2026-02-25.md
|
|
173
|
-
- memory/node_modules/minipass-fetch/2026-02-25.md
|
|
174
|
-
- memory/node_modules/minipass-flush/2026-02-25.md
|
|
175
|
-
- memory/node_modules/minipass-pipeline/2026-02-25.md
|
|
176
|
-
- memory/node_modules/minipass-sized/2026-02-25.md
|
|
177
|
-
- memory/node_modules/minipass/2026-02-25.md
|
|
178
|
-
- memory/node_modules/minizlib/2026-02-25.md
|
|
179
|
-
- memory/node_modules/mkdirp-classic/2026-02-25.md
|
|
180
|
-
- memory/node_modules/mkdirp/2026-02-25.md
|
|
181
|
-
- memory/node_modules/mlly/2026-02-25.md
|
|
182
|
-
- memory/node_modules/mlly/node_modules/pathe/2026-02-25.md
|
|
183
|
-
- memory/node_modules/mongodb-connection-string-url/2026-02-25.md
|
|
184
|
-
- memory/node_modules/mongodb-connection-string-url/node_modules/tr46/2026-02-25.md
|
|
185
|
-
- memory/node_modules/mongodb-connection-string-url/node_modules/webidl-conversions/2026-02-25.md
|
|
186
|
-
- memory/node_modules/mongodb-connection-string-url/node_modules/whatwg-url/2026-02-25.md
|
|
187
|
-
- memory/node_modules/mongodb-js/saslprep/2026-02-25.md
|
|
188
|
-
- memory/node_modules/mongodb/2026-02-25.md
|
|
189
|
-
- memory/node_modules/ms/2026-02-25.md
|
|
190
|
-
- memory/node_modules/nanoid/2026-02-25.md
|
|
191
|
-
- memory/node_modules/napi-build-utils/2026-02-25.md
|
|
192
|
-
- memory/node_modules/negotiator/2026-02-25.md
|
|
193
|
-
- memory/node_modules/node-abi/2026-02-25.md
|
|
194
|
-
- memory/node_modules/node-addon-api/2026-02-25.md
|
|
195
|
-
- memory/node_modules/node-addon-api/tools/2026-02-25.md
|
|
196
|
-
- memory/node_modules/node-domexception/.history/2026-02-25.md
|
|
197
|
-
- memory/node_modules/node-domexception/2026-02-25.md
|
|
198
|
-
- memory/node_modules/node-fetch/2026-02-25.md
|
|
199
|
-
- memory/node_modules/node-gyp/.github/2026-02-25.md
|
|
200
|
-
- memory/node_modules/node-gyp/2026-02-25.md
|
|
201
|
-
- memory/node_modules/node-gyp/docs/2026-02-25.md
|
|
202
|
-
- memory/node_modules/node-gyp/gyp/2026-02-25.md
|
|
203
|
-
- memory/node_modules/node-gyp/node_modules/gauge/2026-02-25.md
|
|
204
|
-
- memory/node_modules/node-gyp/node_modules/nopt/2026-02-25.md
|
|
205
|
-
- memory/node_modules/node-gyp/node_modules/npmlog/2026-02-25.md
|
|
206
|
-
- memory/node_modules/nopt/2026-02-25.md
|
|
207
|
-
- memory/node_modules/npm-run-path/2026-02-25.md
|
|
208
|
-
- memory/node_modules/npm-run-path/node_modules/path-key/2026-02-25.md
|
|
209
|
-
- memory/node_modules/npmcli/fs/2026-02-25.md
|
|
210
|
-
- memory/node_modules/npmcli/move-file/2026-02-25.md
|
|
211
|
-
- memory/node_modules/object-assign/2026-02-25.md
|
|
212
|
-
- memory/node_modules/once/2026-02-25.md
|
|
213
|
-
- memory/node_modules/onetime/2026-02-25.md
|
|
214
|
-
- memory/node_modules/onnx-proto/2026-02-25.md
|
|
215
|
-
- memory/node_modules/onnxruntime-common/2026-02-25.md
|
|
216
|
-
- memory/node_modules/onnxruntime-node/2026-02-25.md
|
|
217
|
-
- memory/node_modules/onnxruntime-web/2026-02-25.md
|
|
218
|
-
- memory/node_modules/onnxruntime-web/docs/2026-02-25.md
|
|
219
|
-
- memory/node_modules/onnxruntime-web/lib/onnxjs/ort-schema/2026-02-25.md
|
|
220
|
-
- memory/node_modules/onnxruntime-web/node_modules/flatbuffers/2026-02-25.md
|
|
221
|
-
- memory/node_modules/openai/2026-02-25.md
|
|
222
|
-
- memory/node_modules/openai/_shims/2026-02-25.md
|
|
223
|
-
- memory/node_modules/openai/node_modules/types/node/2026-02-25.md
|
|
224
|
-
- memory/node_modules/openai/node_modules/undici-types/2026-02-25.md
|
|
225
|
-
- memory/node_modules/openai/src/_vendor/partial-json-parser/2026-02-25.md
|
|
226
|
-
- memory/node_modules/openai/src/_vendor/zod-to-json-schema/2026-02-25.md
|
|
227
|
-
- memory/node_modules/openai/src/internal/qs/2026-02-25.md
|
|
228
|
-
- memory/node_modules/p-limit/2026-02-25.md
|
|
229
|
-
- memory/node_modules/p-map/2026-02-25.md
|
|
230
|
-
- memory/node_modules/path-is-absolute/2026-02-25.md
|
|
231
|
-
- memory/node_modules/path-key/2026-02-25.md
|
|
232
|
-
- memory/node_modules/pathe/2026-02-25.md
|
|
233
|
-
- memory/node_modules/pathval/2026-02-25.md
|
|
234
|
-
- memory/node_modules/picocolors/2026-02-25.md
|
|
235
|
-
- memory/node_modules/pkg-types/2026-02-25.md
|
|
236
|
-
- memory/node_modules/platform/2026-02-25.md
|
|
237
|
-
- memory/node_modules/postcss/2026-02-25.md
|
|
238
|
-
- memory/node_modules/prebuild-install/2026-02-25.md
|
|
239
|
-
- memory/node_modules/prebuild-install/node_modules/tar-fs/2026-02-25.md
|
|
240
|
-
- memory/node_modules/prebuild-install/node_modules/tar-stream/2026-02-25.md
|
|
241
|
-
- memory/node_modules/pretty-format/2026-02-25.md
|
|
242
|
-
- memory/node_modules/pretty-format/node_modules/ansi-styles/2026-02-25.md
|
|
243
|
-
- memory/node_modules/promise-inflight/2026-02-25.md
|
|
244
|
-
- memory/node_modules/promise-retry/2026-02-25.md
|
|
245
|
-
- memory/node_modules/protobufjs/2026-02-25.md
|
|
246
|
-
- memory/node_modules/protobufjs/aspromise/2026-02-25.md
|
|
247
|
-
- memory/node_modules/protobufjs/base64/2026-02-25.md
|
|
248
|
-
- memory/node_modules/protobufjs/cli/2026-02-25.md
|
|
249
|
-
- memory/node_modules/protobufjs/cli/lib/tsd-jsdoc/2026-02-25.md
|
|
250
|
-
- memory/node_modules/protobufjs/cli/node_modules/acorn-jsx/2026-02-25.md
|
|
251
|
-
- memory/node_modules/protobufjs/cli/node_modules/acorn/2026-02-25.md
|
|
252
|
-
- memory/node_modules/protobufjs/cli/node_modules/argparse/2026-02-25.md
|
|
253
|
-
- memory/node_modules/protobufjs/cli/node_modules/babel/parser/2026-02-25.md
|
|
254
|
-
- memory/node_modules/protobufjs/cli/node_modules/bluebird/2026-02-25.md
|
|
255
|
-
- memory/node_modules/protobufjs/cli/node_modules/catharsis/2026-02-25.md
|
|
256
|
-
- memory/node_modules/protobufjs/cli/node_modules/entities/2026-02-25.md
|
|
257
|
-
- memory/node_modules/protobufjs/cli/node_modules/escape-string-regexp/2026-02-25.md
|
|
258
|
-
- memory/node_modules/protobufjs/cli/node_modules/escodegen/2026-02-25.md
|
|
259
|
-
- memory/node_modules/protobufjs/cli/node_modules/eslint-visitor-keys/2026-02-25.md
|
|
260
|
-
- memory/node_modules/protobufjs/cli/node_modules/espree/2026-02-25.md
|
|
261
|
-
- memory/node_modules/protobufjs/cli/node_modules/espree/node_modules/acorn/2026-02-25.md
|
|
262
|
-
- memory/node_modules/protobufjs/cli/node_modules/esprima/2026-02-25.md
|
|
263
|
-
- memory/node_modules/protobufjs/cli/node_modules/estraverse/2026-02-25.md
|
|
264
|
-
- memory/node_modules/protobufjs/cli/node_modules/esutils/2026-02-25.md
|
|
265
|
-
- memory/node_modules/protobufjs/cli/node_modules/js2xmlparser/2026-02-25.md
|
|
266
|
-
- memory/node_modules/protobufjs/cli/node_modules/jsdoc/2026-02-25.md
|
|
267
|
-
- memory/node_modules/protobufjs/cli/node_modules/jsdoc/templates/2026-02-25.md
|
|
268
|
-
- memory/node_modules/protobufjs/cli/node_modules/jsdoc/templates/default/2026-02-25.md
|
|
269
|
-
- memory/node_modules/protobufjs/cli/node_modules/jsdoc/templates/haruki/2026-02-25.md
|
|
270
|
-
- memory/node_modules/protobufjs/cli/node_modules/jsdoc/templates/silent/2026-02-25.md
|
|
271
|
-
- memory/node_modules/protobufjs/cli/node_modules/klaw/2026-02-25.md
|
|
272
|
-
- memory/node_modules/protobufjs/cli/node_modules/linkify-it/2026-02-25.md
|
|
273
|
-
- memory/node_modules/protobufjs/cli/node_modules/lodash/2026-02-25.md
|
|
274
|
-
- memory/node_modules/protobufjs/cli/node_modules/markdown-it-anchor/2026-02-25.md
|
|
275
|
-
- memory/node_modules/protobufjs/cli/node_modules/markdown-it/2026-02-25.md
|
|
276
|
-
- memory/node_modules/protobufjs/cli/node_modules/marked/2026-02-25.md
|
|
277
|
-
- memory/node_modules/protobufjs/cli/node_modules/mdurl/2026-02-25.md
|
|
278
|
-
- memory/node_modules/protobufjs/cli/node_modules/requizzle/2026-02-25.md
|
|
279
|
-
- memory/node_modules/protobufjs/cli/node_modules/rimraf/2026-02-25.md
|
|
280
|
-
- memory/node_modules/protobufjs/cli/node_modules/source-map/2026-02-25.md
|
|
281
|
-
- memory/node_modules/protobufjs/cli/node_modules/strip-json-comments/2026-02-25.md
|
|
282
|
-
- memory/node_modules/protobufjs/cli/node_modules/tmp/2026-02-25.md
|
|
283
|
-
- memory/node_modules/protobufjs/cli/node_modules/types/linkify-it/2026-02-25.md
|
|
284
|
-
- memory/node_modules/protobufjs/cli/node_modules/types/markdown-it/2026-02-25.md
|
|
285
|
-
- memory/node_modules/protobufjs/cli/node_modules/types/mdurl/2026-02-25.md
|
|
286
|
-
- memory/node_modules/protobufjs/cli/node_modules/uc.micro/2026-02-25.md
|
|
287
|
-
- memory/node_modules/protobufjs/cli/node_modules/underscore/2026-02-25.md
|
|
288
|
-
- memory/node_modules/protobufjs/cli/node_modules/wrappy/2026-02-25.md
|
|
289
|
-
- memory/node_modules/protobufjs/cli/node_modules/xmlcreate/2026-02-25.md
|
|
290
|
-
- memory/node_modules/protobufjs/codegen/2026-02-25.md
|
|
291
|
-
- memory/node_modules/protobufjs/dist/2026-02-25.md
|
|
292
|
-
- memory/node_modules/protobufjs/dist/light/2026-02-25.md
|
|
293
|
-
- memory/node_modules/protobufjs/dist/minimal/2026-02-25.md
|
|
294
|
-
- memory/node_modules/protobufjs/eventemitter/2026-02-25.md
|
|
295
|
-
- memory/node_modules/protobufjs/ext/debug/2026-02-25.md
|
|
296
|
-
- memory/node_modules/protobufjs/ext/descriptor/2026-02-25.md
|
|
297
|
-
- memory/node_modules/protobufjs/fetch/2026-02-25.md
|
|
298
|
-
- memory/node_modules/protobufjs/float/2026-02-25.md
|
|
299
|
-
- memory/node_modules/protobufjs/google/2026-02-25.md
|
|
300
|
-
- memory/node_modules/protobufjs/inquire/2026-02-25.md
|
|
301
|
-
- memory/node_modules/protobufjs/path/2026-02-25.md
|
|
302
|
-
- memory/node_modules/protobufjs/pool/2026-02-25.md
|
|
303
|
-
- memory/node_modules/protobufjs/utf8/2026-02-25.md
|
|
304
|
-
- memory/node_modules/pump/2026-02-25.md
|
|
305
|
-
- memory/node_modules/punycode/2026-02-25.md
|
|
306
|
-
- memory/node_modules/rc/2026-02-25.md
|
|
307
|
-
- memory/node_modules/react-is/2026-02-25.md
|
|
308
|
-
- memory/node_modules/readable-stream/2026-02-25.md
|
|
309
|
-
- memory/node_modules/reflect-metadata/2026-02-25.md
|
|
310
|
-
- memory/node_modules/resolve-pkg-maps/2026-02-25.md
|
|
311
|
-
- memory/node_modules/retry/2026-02-25.md
|
|
312
|
-
- memory/node_modules/rollup/2026-02-25.md
|
|
313
|
-
- memory/node_modules/rollup/rollup-linux-x64-gnu/2026-02-25.md
|
|
314
|
-
- memory/node_modules/rollup/rollup-linux-x64-musl/2026-02-25.md
|
|
315
|
-
- memory/node_modules/safe-buffer/2026-02-25.md
|
|
316
|
-
- memory/node_modules/safer-buffer/2026-02-25.md
|
|
317
|
-
- memory/node_modules/semver/2026-02-25.md
|
|
318
|
-
- memory/node_modules/set-blocking/2026-02-25.md
|
|
319
|
-
- memory/node_modules/sharp/2026-02-25.md
|
|
320
|
-
- memory/node_modules/sharp/node_modules/node-addon-api/2026-02-25.md
|
|
321
|
-
- memory/node_modules/sharp/vendor/8.14.5/linux-x64/2026-02-25.md
|
|
322
|
-
- memory/node_modules/shebang-command/2026-02-25.md
|
|
323
|
-
- memory/node_modules/shebang-regex/2026-02-25.md
|
|
324
|
-
- memory/node_modules/siginfo/2026-02-25.md
|
|
325
|
-
- memory/node_modules/signal-exit/2026-02-25.md
|
|
326
|
-
- memory/node_modules/simple-concat/2026-02-25.md
|
|
327
|
-
- memory/node_modules/simple-get/2026-02-25.md
|
|
328
|
-
- memory/node_modules/simple-swizzle/2026-02-25.md
|
|
329
|
-
- memory/node_modules/sinclair/typebox/2026-02-25.md
|
|
330
|
-
- memory/node_modules/smart-buffer/2026-02-25.md
|
|
331
|
-
- memory/node_modules/smart-buffer/docs/2026-02-25.md
|
|
332
|
-
- memory/node_modules/socks-proxy-agent/2026-02-25.md
|
|
333
|
-
- memory/node_modules/socks/2026-02-25.md
|
|
334
|
-
- memory/node_modules/socks/docs/2026-02-25.md
|
|
335
|
-
- memory/node_modules/socks/docs/examples/2026-02-25.md
|
|
336
|
-
- memory/node_modules/socks/docs/examples/javascript/2026-02-25.md
|
|
337
|
-
- memory/node_modules/socks/docs/examples/typescript/2026-02-25.md
|
|
338
|
-
- memory/node_modules/source-map-js/2026-02-25.md
|
|
339
|
-
- memory/node_modules/sparse-bitfield/2026-02-25.md
|
|
340
|
-
- memory/node_modules/ssri/2026-02-25.md
|
|
341
|
-
- memory/node_modules/stackback/2026-02-25.md
|
|
342
|
-
- memory/node_modules/std-env/2026-02-25.md
|
|
343
|
-
- memory/node_modules/streamx/2026-02-25.md
|
|
344
|
-
- memory/node_modules/string-width/2026-02-25.md
|
|
345
|
-
- memory/node_modules/string_decoder/2026-02-25.md
|
|
346
|
-
- memory/node_modules/strip-ansi/2026-02-25.md
|
|
347
|
-
- memory/node_modules/strip-final-newline/2026-02-25.md
|
|
348
|
-
- memory/node_modules/strip-json-comments/2026-02-25.md
|
|
349
|
-
- memory/node_modules/strip-literal/2026-02-25.md
|
|
350
|
-
- memory/node_modules/supports-color/2026-02-25.md
|
|
351
|
-
- memory/node_modules/table-layout/2026-02-25.md
|
|
352
|
-
- memory/node_modules/tar-fs/2026-02-25.md
|
|
353
|
-
- memory/node_modules/tar-stream/2026-02-25.md
|
|
354
|
-
- memory/node_modules/tar/2026-02-25.md
|
|
355
|
-
- memory/node_modules/tar/node_modules/minipass/2026-02-25.md
|
|
356
|
-
- memory/node_modules/text-decoder/2026-02-25.md
|
|
357
|
-
- memory/node_modules/tinybench/2026-02-25.md
|
|
358
|
-
- memory/node_modules/tinypool/2026-02-25.md
|
|
359
|
-
- memory/node_modules/tinyspy/2026-02-25.md
|
|
360
|
-
- memory/node_modules/tootallnate/once/2026-02-25.md
|
|
361
|
-
- memory/node_modules/tslib/2026-02-25.md
|
|
362
|
-
- memory/node_modules/tsx/2026-02-25.md
|
|
363
|
-
- memory/node_modules/tunnel-agent/2026-02-25.md
|
|
364
|
-
- memory/node_modules/type-detect/2026-02-25.md
|
|
365
|
-
- memory/node_modules/types/better-sqlite3/2026-02-25.md
|
|
366
|
-
- memory/node_modules/types/command-line-args/2026-02-25.md
|
|
367
|
-
- memory/node_modules/types/command-line-usage/2026-02-25.md
|
|
368
|
-
- memory/node_modules/types/estree/2026-02-25.md
|
|
369
|
-
- memory/node_modules/types/long/2026-02-25.md
|
|
370
|
-
- memory/node_modules/types/node-fetch/2026-02-25.md
|
|
371
|
-
- memory/node_modules/types/node/2026-02-25.md
|
|
372
|
-
- memory/node_modules/types/webidl-conversions/2026-02-25.md
|
|
373
|
-
- memory/node_modules/types/whatwg-url/2026-02-25.md
|
|
374
|
-
- memory/node_modules/typescript/2026-02-25.md
|
|
375
|
-
- memory/node_modules/typical/2026-02-25.md
|
|
376
|
-
- memory/node_modules/ufo/2026-02-25.md
|
|
377
|
-
- memory/node_modules/unique-filename/2026-02-25.md
|
|
378
|
-
- memory/node_modules/unique-slug/2026-02-25.md
|
|
379
|
-
- memory/node_modules/util-deprecate/2026-02-25.md
|
|
380
|
-
- memory/node_modules/vite-node/2026-02-25.md
|
|
381
|
-
- memory/node_modules/vite/2026-02-25.md
|
|
382
|
-
- memory/node_modules/vitest/2026-02-25.md
|
|
383
|
-
- memory/node_modules/vitest/expect/2026-02-25.md
|
|
384
|
-
- memory/node_modules/vitest/runner/2026-02-25.md
|
|
385
|
-
- memory/node_modules/vitest/snapshot/2026-02-25.md
|
|
386
|
-
- memory/node_modules/vitest/spy/2026-02-25.md
|
|
387
|
-
- memory/node_modules/web-streams-polyfill/2026-02-25.md
|
|
388
|
-
- memory/node_modules/webidl-conversions/2026-02-25.md
|
|
389
|
-
- memory/node_modules/whatwg-url/2026-02-25.md
|
|
390
|
-
- memory/node_modules/which/2026-02-25.md
|
|
391
|
-
- memory/node_modules/why-is-node-running/2026-02-25.md
|
|
392
|
-
- memory/node_modules/wide-align/2026-02-25.md
|
|
393
|
-
- memory/node_modules/wordwrapjs/2026-02-25.md
|
|
394
|
-
- memory/node_modules/xenova/transformers/2026-02-25.md
|
|
395
|
-
- memory/node_modules/yallist/2026-02-25.md
|
|
396
|
-
- memory/node_modules/yocto-queue/2026-02-25.md
|
|
397
|
-
- memory/node_modules/zod/2026-02-25.md
|
|
398
|
-
- memory/session_summary/uncategorized/2026-02-26.md
|
|
399
|
-
- memory/session_summary/uncategorized/2026-03-03.md
|
|
400
|
-
- memory/session_summary/uncategorized/2026-03-04.md
|
|
401
|
-
- memory/specs/20260207-dashboard-upgrade/2026-02-25.md
|
|
402
|
-
- memory/specs/citations-system/2026-02-25.md
|
|
403
|
-
- memory/specs/endless-mode/2026-02-25.md
|
|
404
|
-
- memory/specs/entity-edge-model/2026-02-25.md
|
|
405
|
-
- memory/specs/evidence-aligner-v2/2026-02-25.md
|
|
406
|
-
- memory/specs/mcp-desktop-integration/2026-02-25.md
|
|
407
|
-
- memory/specs/post-tool-use-hook/2026-02-25.md
|
|
408
|
-
- memory/specs/private-tags/2026-02-25.md
|
|
409
|
-
- memory/specs/progressive-disclosure/2026-02-25.md
|
|
410
|
-
- memory/specs/task-entity-system/2026-02-25.md
|
|
411
|
-
- memory/specs/vector-outbox-v2/2026-02-25.md
|
|
412
|
-
- memory/specs/web-viewer-ui/2026-02-25.md
|
|
413
|
-
- memory/tool_observation/uncategorized/2026-02-26.md
|
|
414
|
-
- memory/tool_observation/uncategorized/2026-03-03.md
|
|
415
|
-
- memory/tool_observation/uncategorized/2026-03-04.md
|
|
416
|
-
- memory/tool_observation/uncategorized/2026-03-05.md
|
|
417
|
-
- memory/user_prompt/uncategorized/2026-02-26.md
|
|
418
|
-
- memory/user_prompt/uncategorized/2026-03-04.md
|
|
419
|
-
- memory/user_prompt/uncategorized/2026-03-05.md
|