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
package/dist/index.js
CHANGED
|
@@ -28231,7 +28231,7 @@ The path should point to a directory containing a .git folder.`
|
|
|
28231
28231
|
};
|
|
28232
28232
|
const server = existingServer ?? new McpServer({
|
|
28233
28233
|
name: "memorix",
|
|
28234
|
-
version: true ? "1.2.
|
|
28234
|
+
version: true ? "1.2.10" : "1.0.1"
|
|
28235
28235
|
});
|
|
28236
28236
|
const originalRegisterTool = server.registerTool.bind(server);
|
|
28237
28237
|
server.registerTool = ((name, ...args) => {
|