memorix 0.5.1 → 0.5.2
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 +8 -6
- package/dist/cli/index.js +4 -1
- package/dist/cli/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
|
|
20
20
|
---
|
|
21
21
|
|
|
22
|
-
> **
|
|
22
|
+
> **One project, six agents, zero context loss.**
|
|
23
23
|
>
|
|
24
|
-
> Memorix
|
|
24
|
+
> Memorix is a **cross-agent memory bridge** — it lets Cursor, Windsurf, Claude Code, Codex, Copilot, and Antigravity **share the same project knowledge** in real-time. Architecture decisions made in one IDE are instantly available in another. Switch tools, open new windows, start fresh sessions — your context follows you everywhere via [MCP](https://modelcontextprotocol.io/). It also **syncs MCP configs, rules, skills, and workflows** across all your agents automatically.
|
|
25
25
|
|
|
26
26
|
---
|
|
27
27
|
|
|
@@ -199,7 +199,8 @@ args = ["-y", "memorix@latest", "serve"]
|
|
|
199
199
|
| `memorix_search` | L1: Compact index search | ~50-100/result |
|
|
200
200
|
| `memorix_timeline` | L2: Chronological context | ~100-200/group |
|
|
201
201
|
| `memorix_detail` | L3: Full observation details | ~500-1000/result |
|
|
202
|
-
| `memorix_retention` | Memory decay & retention
|
|
202
|
+
| `memorix_retention` | Memory decay & retention status | — |
|
|
203
|
+
| `memorix_dashboard` | Launch visual web dashboard in browser | — |
|
|
203
204
|
| `memorix_rules_sync` | Scan/deduplicate/generate rules across agents | — |
|
|
204
205
|
| `memorix_workspace_sync` | Migrate MCP configs, workflows, skills | — |
|
|
205
206
|
|
|
@@ -266,7 +267,7 @@ Files: ["src/auth/jwt.ts", "src/config.ts"]
|
|
|
266
267
|
└────────────────────────┬─────────────────────────────────────┘
|
|
267
268
|
│ MCP Protocol (stdio)
|
|
268
269
|
┌────────────────────────▼─────────────────────────────────────┐
|
|
269
|
-
│ Memorix MCP Server (
|
|
270
|
+
│ Memorix MCP Server (17 tools) │
|
|
270
271
|
│ │
|
|
271
272
|
│ ┌─────────────┐ ┌──────────────┐ ┌──────────────────┐ │
|
|
272
273
|
│ │ Memory │ │ Compact │ │ Workspace Sync │ │
|
|
@@ -340,7 +341,7 @@ npm run build # Production build
|
|
|
340
341
|
|
|
341
342
|
```
|
|
342
343
|
src/
|
|
343
|
-
├── server.ts # MCP Server entry (
|
|
344
|
+
├── server.ts # MCP Server entry (17 tools)
|
|
344
345
|
├── types.ts # All type definitions
|
|
345
346
|
├── memory/ # Graph, observations, retention, entity extraction
|
|
346
347
|
├── store/ # Orama search engine + disk persistence
|
|
@@ -349,8 +350,9 @@ src/
|
|
|
349
350
|
├── hooks/ # Auto-memory hooks (normalizer + pattern detector)
|
|
350
351
|
├── workspace/ # Cross-agent MCP/workflow/skills sync
|
|
351
352
|
├── rules/ # Cross-agent rules sync (6 adapters)
|
|
353
|
+
├── dashboard/ # Visual web dashboard (knowledge graph, stats)
|
|
352
354
|
├── project/ # Git-based project detection
|
|
353
|
-
└── cli/ # CLI commands (serve, hook, sync,
|
|
355
|
+
└── cli/ # CLI commands (serve, hook, sync, dashboard)
|
|
354
356
|
```
|
|
355
357
|
|
|
356
358
|
> 📚 Full documentation available in [`docs/`](./docs/) — architecture, modules, API reference, design decisions, and more.
|
package/dist/cli/index.js
CHANGED
|
@@ -5277,10 +5277,13 @@ var init_dashboard = __esm({
|
|
|
5277
5277
|
// src/cli/index.ts
|
|
5278
5278
|
init_esm_shims();
|
|
5279
5279
|
import { defineCommand as defineCommand10, runMain } from "citty";
|
|
5280
|
+
import { createRequire as createRequire2 } from "module";
|
|
5281
|
+
var require2 = createRequire2(import.meta.url);
|
|
5282
|
+
var pkg = require2("../../package.json");
|
|
5280
5283
|
var main = defineCommand10({
|
|
5281
5284
|
meta: {
|
|
5282
5285
|
name: "memorix",
|
|
5283
|
-
version:
|
|
5286
|
+
version: pkg.version,
|
|
5284
5287
|
description: "Cross-Agent Memory Bridge \u2014 Universal memory layer for AI coding agents via MCP"
|
|
5285
5288
|
},
|
|
5286
5289
|
subCommands: {
|