memorix 0.5.2 β 0.6.1
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/README.md +18 -1
- package/dist/cli/index.js +483 -72
- package/dist/cli/index.js.map +1 -1
- package/dist/dashboard/static/app.js +143 -11
- package/dist/dashboard/static/index.html +5 -0
- package/dist/dashboard/static/style.css +197 -0
- package/dist/index.js +450 -70
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<
|
|
2
|
+
<img src="assets/logo.png" alt="Memorix Logo" width="120">
|
|
3
|
+
<h1 align="center">Memorix</h1>
|
|
3
4
|
<p align="center"><strong>Cross-Agent Memory Bridge β Universal memory layer for AI coding agents via MCP</strong></p>
|
|
4
5
|
<p align="center">
|
|
5
6
|
<a href="https://www.npmjs.com/package/memorix"><img src="https://img.shields.io/npm/v/memorix.svg?style=flat-square&color=cb3837" alt="npm version"></a>
|
|
@@ -98,6 +99,22 @@ Then use `"command": "memorix"` instead of `"command": "npx"` in your config.
|
|
|
98
99
|
- **Skills & Workflows** β Copy skill folders and workflow files across agents
|
|
99
100
|
- **Apply with Safety** β Backup `.bak` β Atomic write β Auto-rollback on failure
|
|
100
101
|
|
|
102
|
+
### π Project Isolation
|
|
103
|
+
|
|
104
|
+
- **Per-Project Data** β Each project stores data in its own directory (`~/.memorix/data/<owner--repo>/`)
|
|
105
|
+
- **Git-Based Detection** β Project identity derived from `git remote`, no manual config needed
|
|
106
|
+
- **Scoped Search** β `memorix_search` defaults to current project; set `scope: "global"` to search all
|
|
107
|
+
- **Auto Migration** β Legacy global data automatically migrates to project directories on first run
|
|
108
|
+
- **Zero Cross-Contamination** β Architecture decisions from project A never leak into project B
|
|
109
|
+
|
|
110
|
+
### π Visual Dashboard
|
|
111
|
+
|
|
112
|
+
- **Web Dashboard** β `memorix_dashboard` opens a beautiful web UI at `http://localhost:3210`
|
|
113
|
+
- **Project Switcher** β Dropdown to view any project's data without switching IDEs
|
|
114
|
+
- **Knowledge Graph** β Interactive visualization of entities and relations
|
|
115
|
+
- **Retention Scores** β Exponential decay scoring with immunity status
|
|
116
|
+
- **Light/Dark Theme** β Premium glassmorphism design, bilingual (EN/δΈζ)
|
|
117
|
+
|
|
101
118
|
### πͺ Auto-Memory Hooks
|
|
102
119
|
|
|
103
120
|
- **Implicit Memory** β Auto-captures decisions, errors, gotchas from agent activity
|