engramx 3.0.1 → 3.0.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/CHANGELOG.md +13 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,19 @@ All notable changes to engram are documented here. Format based on
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [3.0.2] — 2026-04-24 — "MCP Registry"
|
|
10
|
+
|
|
11
|
+
Chore release. No runtime changes. Adds the `mcpName` field to `package.json`
|
|
12
|
+
required by the Official MCP Registry (`registry.modelcontextprotocol.io`)
|
|
13
|
+
for namespace-ownership proof.
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- `package.json` → top-level `"mcpName": "io.github.NickCirv/engram"`. Registry-side check reads the published npm tarball's `package.json` and verifies the field matches the server name in `server.json`. Without it, `mcp-publisher publish` returns HTTP 400 with the guidance message.
|
|
17
|
+
- Also tightened `server.json` description fields to the registry's 100-char limit (top-level description + 5 environment-variable descriptions).
|
|
18
|
+
|
|
19
|
+
### Why not bundled into 3.0.1
|
|
20
|
+
The `preuninstall` fix needed to ship ASAP to stop new users hitting the orphaned-hooks bug. MCP Registry integration was a separate problem surfaced during the submission flow.
|
|
21
|
+
|
|
9
22
|
## [3.0.1] — 2026-04-24 — "Clean Uninstall"
|
|
10
23
|
|
|
11
24
|
**Patch release fixing the orphaned-hooks bug reported by @freenow82 within
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "engramx",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
|
+
"mcpName": "io.github.NickCirv/engram",
|
|
4
5
|
"description": "The context spine for AI coding agents. 9 built-in providers + mcpConfig plugin contract (wrap any MCP server in 10 lines), generic MCP-client aggregator (stdio), pre-mortem mistake-guard, bi-temporal mistake memory, Anthropic Auto-Memory bridge, SSE streaming context packets, dual-emit AGENTS.md+CLAUDE.md. 90.8% measured real-world token savings (reproducible bench included). Local SQLite, zero cloud.",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|