memorix 1.2.9 → 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.
- package/CHANGELOG.md +9 -0
- package/README.md +2 -2
- package/dist/cli/index.js +170 -30
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/memcode-runtime/CHANGELOG.md +9 -0
- package/dist/sdk.js +1 -1
- package/dist/sdk.js.map +1 -1
- package/docs/AGENT_OPERATOR_PLAYBOOK.md +2 -2
- package/docs/DEVELOPMENT.md +7 -1
- package/docs/INTEGRATIONS.md +1 -1
- package/docs/SETUP.md +6 -4
- package/docs/hooks-architecture.md +1 -1
- package/package.json +6 -2
- package/plugins/claude/memorix/.claude-plugin/plugin.json +1 -1
- package/plugins/codex/memorix/.codex-plugin/plugin.json +1 -1
- package/plugins/copilot/memorix/plugin.json +1 -1
- package/plugins/gemini/memorix/gemini-extension.json +1 -1
- package/plugins/omp/memorix/package.json +1 -1
- package/plugins/openclaw/memorix/.codex-plugin/plugin.json +1 -1
- package/plugins/pi/memorix/package.json +1 -1
- package/server.json +38 -0
- package/src/cli/commands/agent-integrations.ts +12 -6
- package/src/cli/commands/setup.ts +200 -23
|
@@ -2,6 +2,15 @@
|
|
|
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
|
+
|
|
5
14
|
## [1.2.9] - 2026-07-28
|
|
6
15
|
|
|
7
16
|
### Fixed
|
package/dist/sdk.js
CHANGED
|
@@ -28147,7 +28147,7 @@ The path should point to a directory containing a .git folder.`
|
|
|
28147
28147
|
};
|
|
28148
28148
|
const server = existingServer ?? new McpServer({
|
|
28149
28149
|
name: "memorix",
|
|
28150
|
-
version: true ? "1.2.
|
|
28150
|
+
version: true ? "1.2.10" : "1.0.1"
|
|
28151
28151
|
});
|
|
28152
28152
|
const originalRegisterTool = server.registerTool.bind(server);
|
|
28153
28153
|
server.registerTool = ((name, ...args) => {
|