@xultrax-web/agent-memory-mcp 0.11.4 → 0.11.6

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 CHANGED
@@ -1,15 +1,20 @@
1
1
  # agent-memory-mcp
2
2
 
3
- > Markdown memory for AI agents. Your data is just files.
3
+ > Codify how you work. Every AI tool obeys.
4
4
 
5
5
  [![CI](https://github.com/xultrax-web/agent-memory-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/xultrax-web/agent-memory-mcp/actions/workflows/ci.yml)
6
6
  [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
7
7
  [![Node](https://img.shields.io/badge/node-%3E%3D20-brightgreen.svg)](https://nodejs.org)
8
8
  [![MCP](https://img.shields.io/badge/MCP-server-blueviolet)](https://modelcontextprotocol.io)
9
9
 
10
- **Markdown memory for AI agents.** Plain files in a directory you control read them, edit them, grep them, commit them. Operator-grade storage primitives (atomic writes, file locking, soft-delete to `.trash/`, schema versioning, doctor command) wrap the files so nothing rots in the long tail.
10
+ **Memory as constraint, not just recall.** Plain markdown files in a directory you control. Capture your rules + recipes + decisions + context once, applied everywhere across sessions, across machines, across every AI tool you use.
11
11
 
12
- You can `cat` your memory. You can `grep` it. You can edit it in vim. You can commit it to git. You can move it between machines with `scp` or with the built-in `agent-memory sync` (git-backed). If the AI gets a memory wrong, you fix it in a text editor and save. No migration scripts. No vendor lock-in.
12
+ The wedge:
13
+
14
+ 1. **Rules are first-class memories.** Tag with severity (hard / soft), scope, enforce_on category, regex patterns, last_verified date.
15
+ 2. **Companion files emit automatically** to `AGENTS.md` (Linux-Foundation universal standard), `CLAUDE.md` (Claude Code's 5-level hierarchy), `.cursor/rules/*.mdc` (Cursor MDC), and `.gemini/instructions.md` — your rules show up in every tool, every session, with no plugin needed.
16
+ 3. **`check_action` gates destructive operations.** Agent proposes an action, server matches against your rule store, and either issues a [Compliance Receipt](docs/compliance-receipt-protocol-1.0.md) (HMAC-signed bearer token bound to your rules) or returns a structured rejection naming the rule that blocked.
17
+ 4. **Plain files all the way down.** You can `cat` your memory, `grep` it, edit it in vim, commit it to git, sync it to another machine via the built-in `agent-memory sync`. If the AI gets it wrong, you fix it in a text editor and save. No migration scripts. No vendor lock-in. Reference implementation of the [Compliance Receipt Protocol 1.0](docs/compliance-receipt-protocol-1.0.md) — other MCP servers can adopt the same receipts and interoperate.
13
18
 
14
19
  ---
15
20
 
@@ -116,10 +121,16 @@ Surfaces:
116
121
 
117
122
  The `healthy` flag is true iff no stale rules, no conflicts, no unreceipted ops in the recent log.
118
123
 
124
+ ### Compliance Receipt Protocol 1.0 spec (v0.11.5)
125
+
126
+ The CRP enforcement primitive is documented as a standalone spec at [docs/compliance-receipt-protocol-1.0.md](docs/compliance-receipt-protocol-1.0.md). Other MCP servers can adopt the same receipt format + validation rules to interoperate · `agent-memory-mcp` is the reference implementation.
127
+
128
+ The spec covers: receipt structure, canonical encoding, signing (HMAC-SHA256), validation order, rules-version hashing, reserved caveat types, MCP integration patterns, security considerations, cross-server adoption, and test vectors.
129
+
119
130
  ### Roadmap for the v0.11.x series:
120
131
 
121
- - Compliance Receipt Protocol 1.0 spec doc on GitHub so other MCP servers can adopt the pattern
122
- - Sampling-enriched Tier-2 `check_action` for clients that support it
132
+ - Sampling-enriched Tier-2 `check_action` for clients that support it (Claude Desktop, VS Code Copilot)
133
+ - Repositioning · README hero rewrite, /labs/agent-memory/ page, npm description (v0.11.6)
123
134
 
124
135
  ---
125
136
 
package/dist/index.js CHANGED
@@ -2087,7 +2087,7 @@ function actionColor(action) {
2087
2087
  // -------------------------------------------------------------
2088
2088
  // Server wiring
2089
2089
  // -------------------------------------------------------------
2090
- const server = new Server({ name: "agent-memory", version: "0.11.4" }, { capabilities: { tools: {}, resources: {}, prompts: {} } });
2090
+ const server = new Server({ name: "agent-memory", version: "0.11.6" }, { capabilities: { tools: {}, resources: {}, prompts: {} } });
2091
2091
  // -------------------------------------------------------------
2092
2092
  // Resource URI scheme
2093
2093
  // -------------------------------------------------------------
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@xultrax-web/agent-memory-mcp",
3
- "version": "0.11.4",
3
+ "version": "0.11.6",
4
4
  "mcpName": "io.github.xultrax-web/agent-memory-mcp",
5
- "description": "Markdown memory for AI agents. Plain files you can read, edit, grep, and commit. Operator-grade storage with atomic writes, file locking, tags, [[wiki-links]], find_related, git-backed multi-machine sync, and an Ink-based TUI.",
5
+ "description": "Codify how you work. Every AI tool obeys. Markdown rules + cross-tool companion files (AGENTS.md/CLAUDE.md/.cursor/rules/.gemini) + Compliance Receipts for protocol-level enforcement of destructive ops. Reference implementation of CRP 1.0. Works on every MCP client (no Sampling required).",
6
6
  "type": "module",
7
7
  "bin": {
8
8
  "agent-memory-mcp": "dist/index.js",