@xultrax-web/agent-memory-mcp 0.10.0 → 0.10.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.
Files changed (3) hide show
  1. package/README.md +46 -30
  2. package/dist/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -64,17 +64,15 @@ If you want vector similarity search, semantic recall, or auto-relation extracti
64
64
 
65
65
  ## Install
66
66
 
67
- ### Quick start (works today, no npm needed)
67
+ ### From npm (recommended)
68
68
 
69
69
  ```bash
70
- npx -y github:xultrax-web/agent-memory-mcp
70
+ npx -y @xultrax-web/agent-memory-mcp
71
71
  ```
72
72
 
73
- ### From npm (once published — landing v0.4.0)
73
+ ### Listed in the MCP Registry
74
74
 
75
- ```bash
76
- npx -y @xultrax-web/agent-memory-mcp
77
- ```
75
+ `io.github.xultrax-web/agent-memory-mcp` · browse at https://registry.modelcontextprotocol.io
78
76
 
79
77
  ### Build locally
80
78
 
@@ -103,7 +101,7 @@ Same JSON, slightly different paths per client.
103
101
  "mcpServers": {
104
102
  "agent-memory": {
105
103
  "command": "npx",
106
- "args": ["-y", "github:xultrax-web/agent-memory-mcp"]
104
+ "args": ["-y", "@xultrax-web/agent-memory-mcp"]
107
105
  }
108
106
  }
109
107
  }
@@ -117,7 +115,7 @@ Cline → MCP Servers → Add:
117
115
  {
118
116
  "agent-memory": {
119
117
  "command": "npx",
120
- "args": ["-y", "github:xultrax-web/agent-memory-mcp"]
118
+ "args": ["-y", "@xultrax-web/agent-memory-mcp"]
121
119
  }
122
120
  }
123
121
  ```
@@ -131,7 +129,7 @@ Cline → MCP Servers → Add:
131
129
  "mcpServers": {
132
130
  "agent-memory": {
133
131
  "command": "npx",
134
- "args": ["-y", "github:xultrax-web/agent-memory-mcp"]
132
+ "args": ["-y", "@xultrax-web/agent-memory-mcp"]
135
133
  }
136
134
  }
137
135
  }
@@ -140,7 +138,7 @@ Cline → MCP Servers → Add:
140
138
  > **Windows note:** if `npx` doesn't resolve cleanly, wrap with `cmd /c`:
141
139
  >
142
140
  > ```json
143
- > { "command": "cmd", "args": ["/c", "npx", "-y", "github:xultrax-web/agent-memory-mcp"] }
141
+ > { "command": "cmd", "args": ["/c", "npx", "-y", "@xultrax-web/agent-memory-mcp"] }
144
142
  > ```
145
143
 
146
144
  ### Continue.dev
@@ -155,7 +153,7 @@ Cline → MCP Servers → Add:
155
153
  "transport": {
156
154
  "type": "stdio",
157
155
  "command": "npx",
158
- "args": ["-y", "github:xultrax-web/agent-memory-mcp"]
156
+ "args": ["-y", "@xultrax-web/agent-memory-mcp"]
159
157
  }
160
158
  }
161
159
  ]
@@ -419,16 +417,6 @@ This server is built to be used daily, not to demo well once.
419
417
  - **`find_backlinks`** tool + `agent-memory backlinks <name>` CLI — "what links to this".
420
418
  - **`find_related`** tool + `agent-memory related <name>` CLI — combines outbound + inbound links, shared tags, type match, and content similarity into a ranked discovery view.
421
419
 
422
- **Shipped in v0.10 · the visual identity (TUI):**
423
-
424
- - **`agent-memory ui`** — Ink-based terminal UI for browsing, filtering, searching, and editing memories without leaving the terminal.
425
- - Type-filter quick-keys (0-4 cycle through all/user/feedback/project/reference)
426
- - Fuzzy live search with `/`
427
- - `e` opens the highlighted memory in `$EDITOR` (vim/notepad/nano/whatever) — saves back to disk
428
- - `d` soft-deletes with `y/n` confirmation
429
- - Detail pane previews the body of the selected memory
430
- - Color-coded by type, tag chips inline
431
-
432
420
  **Shipped in v0.9 · the moat — multi-machine memory via git:**
433
421
 
434
422
  - **`agent-memory sync init <remote-url>`** — convert `.agent-memory/` into a git repo, push to remote.
@@ -440,6 +428,16 @@ This server is built to be used daily, not to demo well once.
440
428
  - Per-machine state (`.lock`, `.events.jsonl`, `.trash/`) auto-excluded from sync.
441
429
  - Default commit identity injected (`agent-memory@local`) so machines without `git config --global user.email` work without setup.
442
430
 
431
+ **Shipped in v0.10 · the visual identity (TUI):**
432
+
433
+ - **`agent-memory ui`** — Ink-based terminal UI for browsing, filtering, searching, and editing memories without leaving the terminal.
434
+ - Type-filter quick-keys (0-4 cycle through all/user/feedback/project/reference)
435
+ - Fuzzy live search with `/`
436
+ - `e` opens the highlighted memory in `$EDITOR` (vim/notepad/nano/whatever) — saves back to disk
437
+ - `d` soft-deletes with `y/n` confirmation
438
+ - Detail pane previews the body of the selected memory
439
+ - Color-coded by type, tag chips inline
440
+
443
441
  **Landing in v0.11+:**
444
442
 
445
443
  - Folder support (`.agent-memory/work/`, `.agent-memory/personal/`)
@@ -451,15 +449,33 @@ This server is built to be used daily, not to demo well once.
451
449
 
452
450
  ## Roadmap
453
451
 
454
- - **v0.2** — MCP Resources support, Claude Code import script (`agent-memory import-claude-code`), CLI mode
455
- - **v0.3** — Atomic writes, soft delete, schema versioning, doctor command
456
- - **v0.4** — Structured event log, stats command, color output
457
- - **v0.5** Fuzzy search (Fuse.js), BM25 ranking, snippet highlighting
458
- - **v0.7** Comprehensive test suite, multi-client compatibility matrix
459
- - **v0.9** npm publish + MCP Registry submission
460
- - **v1.0** Public launch
461
-
462
- Beyond v1.0: sync backends (git remote, S3), web UI, team mode, browser extension, optional embeddings sidecar.
452
+ ### Released
453
+
454
+ | Version | Highlights |
455
+ | --------- | --------------------------------------------------------------------------------------------------- |
456
+ | v0.1 | Five-tool MVP, file storage, four-client config snippets |
457
+ | v0.2 | MCP Resources, Claude Code import (`agent-memory import-claude-code`), CLI mode, prettier baseline |
458
+ | v0.3 | Atomic writes, file locking, soft delete + `restore_memory`, `doctor` repair, schema versioning |
459
+ | v0.4 | Append-only event log (`.events.jsonl`), `stats` dashboard, `log_events` browser, color output |
460
+ | v0.5 | Fuzzy search via Fuse.js, relevance scoring, body-context snippets, `relevant_memories`, pagination |
461
+ | v0.6 | 25+ Vitest tests, GitHub Actions CI (Node 20/22/24 matrix), `COMPATIBILITY.md` |
462
+ | v0.7 | MCP Prompts (4 starter workflows), `verify_memory`, conflict detection on save |
463
+ | v0.8 | Tags, `[[wiki-links]]`, `find_backlinks`, `find_related` |
464
+ | v0.8.1 | Trusted Publishing live · tokenless OIDC publishes to npm + MCP Registry on git tag |
465
+ | **v0.9** | **`agent-memory sync` · multi-machine memory via git remote (init/push/pull/status/log)** |
466
+ | **v0.10** | **Ink-based TUI · `agent-memory ui` for visual browsing, search, and editing** |
467
+
468
+ ### Coming next
469
+
470
+ - Folder support inside the store (`.agent-memory/work/`, `.agent-memory/personal/`) for multi-context separation
471
+ - Auto-context loading — server hook that auto-fires `relevant_memories` before each LLM turn so context flows transparently
472
+ - Memory packs — export/import shareable `.tar.gz` bundles of curated memories
473
+ - Browser companion UI (`agent-memory web`) for non-terminal users
474
+ - TUI polish — file-watching for auto-refresh, inline editing, sync push/pull as keybindings
475
+
476
+ ### Beyond
477
+
478
+ Optional local-embeddings sidecar (transformers.js, no API), team mode with diff/merge, browser extension to capture from chatgpt.com / claude.ai → memory, mobile companion.
463
479
 
464
480
  Open an issue if you want one of these before I get to it.
465
481
 
package/dist/index.js CHANGED
@@ -1236,7 +1236,7 @@ function actionColor(action) {
1236
1236
  // -------------------------------------------------------------
1237
1237
  // Server wiring
1238
1238
  // -------------------------------------------------------------
1239
- const server = new Server({ name: "agent-memory", version: "0.10.0" }, { capabilities: { tools: {}, resources: {}, prompts: {} } });
1239
+ const server = new Server({ name: "agent-memory", version: "0.10.2" }, { capabilities: { tools: {}, resources: {}, prompts: {} } });
1240
1240
  // -------------------------------------------------------------
1241
1241
  // Resource URI scheme
1242
1242
  // -------------------------------------------------------------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xultrax-web/agent-memory-mcp",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
4
4
  "mcpName": "io.github.xultrax-web/agent-memory-mcp",
5
5
  "description": "Markdown memory for AI agents. Plain files you can read, edit, grep, and commit. The only MCP memory server that isn't a database.",
6
6
  "type": "module",