memorix 0.4.0 → 0.5.0
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 +20 -1
- package/README.md +278 -173
- package/dist/cli/index.js +106 -11
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +96 -9
- package/dist/index.js.map +1 -1
- package/package.json +19 -6
- package/examples/CLAUDE.md +0 -27
- package/examples/claude-desktop-config.json +0 -8
- package/examples/cursor-mcp.json +0 -8
- package/examples/windsurf-mcp.json +0 -8
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memorix",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Cross-Agent Memory Bridge — Universal memory layer for AI coding agents via MCP",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "Cross-Agent Memory Bridge — Universal memory layer for AI coding agents via MCP. Knowledge graph, progressive disclosure search, workspace sync, and auto-memory hooks across Windsurf, Cursor, Claude Code, Codex, Copilot, and Antigravity.",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"sideEffects": false,
|
|
6
7
|
"bin": {
|
|
7
8
|
"memorix": "./dist/cli/index.js"
|
|
8
9
|
},
|
|
@@ -19,8 +20,7 @@
|
|
|
19
20
|
"README.md",
|
|
20
21
|
"LICENSE",
|
|
21
22
|
"CHANGELOG.md",
|
|
22
|
-
"CLAUDE.md"
|
|
23
|
-
"examples"
|
|
23
|
+
"CLAUDE.md"
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "tsup",
|
|
@@ -29,24 +29,32 @@
|
|
|
29
29
|
"test": "vitest run",
|
|
30
30
|
"test:watch": "vitest",
|
|
31
31
|
"lint": "tsc --noEmit",
|
|
32
|
-
"prepublishOnly": "npm run build"
|
|
32
|
+
"prepublishOnly": "npm run build && npm test"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"mcp",
|
|
36
36
|
"mcp-server",
|
|
37
|
+
"mcp-tool",
|
|
37
38
|
"model-context-protocol",
|
|
38
39
|
"memory",
|
|
40
|
+
"memory-layer",
|
|
39
41
|
"ai-agent",
|
|
40
42
|
"ai-coding",
|
|
43
|
+
"ai-memory",
|
|
41
44
|
"cross-agent",
|
|
42
45
|
"knowledge-graph",
|
|
43
46
|
"workspace-sync",
|
|
47
|
+
"progressive-disclosure",
|
|
44
48
|
"cursor",
|
|
45
49
|
"claude-code",
|
|
46
50
|
"codex",
|
|
47
51
|
"windsurf",
|
|
48
52
|
"copilot",
|
|
49
|
-
"
|
|
53
|
+
"antigravity",
|
|
54
|
+
"vscode",
|
|
55
|
+
"orama",
|
|
56
|
+
"vector-search",
|
|
57
|
+
"bm25"
|
|
50
58
|
],
|
|
51
59
|
"author": "AVIDS2",
|
|
52
60
|
"license": "Apache-2.0",
|
|
@@ -58,6 +66,10 @@
|
|
|
58
66
|
"bugs": {
|
|
59
67
|
"url": "https://github.com/AVIDS2/memorix/issues"
|
|
60
68
|
},
|
|
69
|
+
"funding": {
|
|
70
|
+
"type": "github",
|
|
71
|
+
"url": "https://github.com/sponsors/AVIDS2"
|
|
72
|
+
},
|
|
61
73
|
"engines": {
|
|
62
74
|
"node": ">=20.0.0"
|
|
63
75
|
},
|
|
@@ -85,3 +97,4 @@
|
|
|
85
97
|
"@types/node": "^22.0.0"
|
|
86
98
|
}
|
|
87
99
|
}
|
|
100
|
+
|
package/examples/CLAUDE.md
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# Memorix Usage Instructions
|
|
2
|
-
|
|
3
|
-
> Copy this file to your project root as CLAUDE.md (for Claude Code)
|
|
4
|
-
> or adapt it for your agent's rule format.
|
|
5
|
-
|
|
6
|
-
You have access to Memorix, a cross-agent memory system. Follow these rules:
|
|
7
|
-
|
|
8
|
-
## Automatic Behaviors
|
|
9
|
-
|
|
10
|
-
1. **Session Start**: Search memorix for recent context related to the current task
|
|
11
|
-
2. **After Major Changes**: Store decisions, bug fixes, and architecture changes
|
|
12
|
-
3. **Before Implementing**: Search for past decisions on the same topic
|
|
13
|
-
4. **Session End**: Store a summary of what was accomplished
|
|
14
|
-
|
|
15
|
-
## Storage Rules
|
|
16
|
-
|
|
17
|
-
- Use `memorix_store` with descriptive titles (10 words max)
|
|
18
|
-
- Always include `filesModified` when you edit files
|
|
19
|
-
- Always include `concepts` for searchable keywords
|
|
20
|
-
- Choose the right type: decision, problem-solution, gotcha, how-it-works, what-changed, trade-off
|
|
21
|
-
- Entity names should be kebab-case: "auth-module", "docker-config"
|
|
22
|
-
|
|
23
|
-
## Search Rules
|
|
24
|
-
|
|
25
|
-
- Use `memorix_search` before making architecture decisions
|
|
26
|
-
- Use `memorix_detail` to get full context when search results look relevant
|
|
27
|
-
- Use `memorix_timeline` to understand the sequence of events
|
package/examples/cursor-mcp.json
DELETED