memorix 1.2.8 → 1.2.10

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.
Files changed (42) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +2 -2
  3. package/dist/cli/index.js +19505 -19136
  4. package/dist/cli/index.js.map +1 -1
  5. package/dist/cli/memcode.js +0 -0
  6. package/dist/index.js +7849 -7628
  7. package/dist/index.js.map +1 -1
  8. package/dist/maintenance-jobs-o1rYSFcM.d.ts +36 -0
  9. package/dist/maintenance-runner.d.ts +1 -34
  10. package/dist/maintenance-runner.js +5892 -5692
  11. package/dist/maintenance-runner.js.map +1 -1
  12. package/dist/memcode-runtime/CHANGELOG.md +16 -0
  13. package/dist/sdk.js +7782 -7561
  14. package/dist/sdk.js.map +1 -1
  15. package/dist/vector-backfill-runner.d.ts +31 -0
  16. package/dist/vector-backfill-runner.js +12670 -0
  17. package/dist/vector-backfill-runner.js.map +1 -0
  18. package/docs/AGENT_OPERATOR_PLAYBOOK.md +2 -2
  19. package/docs/DEVELOPMENT.md +7 -1
  20. package/docs/INTEGRATIONS.md +1 -1
  21. package/docs/SETUP.md +6 -4
  22. package/docs/hooks-architecture.md +1 -1
  23. package/package.json +6 -2
  24. package/plugins/claude/memorix/.claude-plugin/plugin.json +1 -1
  25. package/plugins/codex/memorix/.codex-plugin/plugin.json +1 -1
  26. package/plugins/copilot/memorix/plugin.json +1 -1
  27. package/plugins/gemini/memorix/gemini-extension.json +1 -1
  28. package/plugins/omp/memorix/package.json +1 -1
  29. package/plugins/openclaw/memorix/.codex-plugin/plugin.json +1 -1
  30. package/plugins/pi/memorix/package.json +1 -1
  31. package/server.json +38 -0
  32. package/src/cli/commands/agent-integrations.ts +12 -6
  33. package/src/cli/commands/operator-shared.ts +4 -1
  34. package/src/cli/commands/serve-http.ts +44 -47
  35. package/src/cli/commands/setup.ts +200 -23
  36. package/src/dashboard/server.ts +43 -63
  37. package/src/memory/observations.ts +108 -79
  38. package/src/memory/retention.ts +106 -28
  39. package/src/memory/session.ts +71 -12
  40. package/src/runtime/vector-backfill-runner.ts +144 -0
  41. package/src/search/intent-detector.ts +39 -1
  42. package/src/server.ts +5 -5
@@ -2,6 +2,22 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.2.10] - 2026-07-28
6
+
7
+ ### Added
8
+ - **Official MCP Registry publication path** -- Ships the checked `server.json` manifest and a GitHub OIDC publication step that runs after npm succeeds. This release is the first package version eligible for official Registry registration.
9
+
10
+ ### Fixed
11
+ - **Codex plugin ownership** -- `memorix setup --agent codex --global` now uses Codex's personal marketplace plugin path and never creates project-local `.codex` configuration as a fallback. Custom user MCP configuration stays untouched; legacy Memorix files are migrated only after Codex confirms the plugin is enabled.
12
+ - **Glama-compatible Docker build** -- Docker now installs every workspace dependency set before compiling. CI builds and starts the HTTP control-plane image, so a future container regression is caught on the pull request instead of by an external registry scan.
13
+
14
+ ## [1.2.9] - 2026-07-28
15
+
16
+ ### Fixed
17
+ - **One retention truth across the product** -- Dashboard, HTTP control-plane, and background cleanup now use the same canonical retention projection. Permanent, active, stale, and archive-ready memory states no longer disagree across surfaces.
18
+ - **More useful session continuation** -- Resume and handoff-shaped requests prioritize the prior task, what changed, and remaining work without treating ordinary verification or compatibility language as disposable noise. Delivery stays bounded rather than replaying a transcript.
19
+ - **Responsive CLI writes with remote embeddings** -- `memorix memory store` now persists the memory and queues durable vector work before starting a detached backfill worker. A slow embedding API no longer keeps a one-shot CLI command open; lexical recall remains available while vector search catches up.
20
+
5
21
  ## [1.2.8] - 2026-07-27
6
22
 
7
23
  ### Fixed