@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 +16 -5
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
# agent-memory-mcp
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> Codify how you work. Every AI tool obeys.
|
|
4
4
|
|
|
5
5
|
[](https://github.com/xultrax-web/agent-memory-mcp/actions/workflows/ci.yml)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](https://nodejs.org)
|
|
8
8
|
[](https://modelcontextprotocol.io)
|
|
9
9
|
|
|
10
|
-
**
|
|
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
|
-
|
|
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
|
-
-
|
|
122
|
-
-
|
|
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.
|
|
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.
|
|
3
|
+
"version": "0.11.6",
|
|
4
4
|
"mcpName": "io.github.xultrax-web/agent-memory-mcp",
|
|
5
|
-
"description": "
|
|
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",
|