wyrm-mcp 7.0.0 → 7.0.1
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 +6 -2
- package/dist/tool-manifest.json +1 -1
- package/dist/wyrm-manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,10 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/wyrm-mcp)
|
|
6
6
|
[](LICENSE)
|
|
7
|
-
[](https://github.com/Ghosts-Protocol-Pvt-Ltd/Wyrm)
|
|
8
8
|
[](https://www.typescriptlang.org/)
|
|
9
9
|
[](https://modelcontextprotocol.io)
|
|
10
10
|
|
|
11
|
+
**[wyrm.ghosts.lk](https://wyrm.ghosts.lk)** · **[npm](https://www.npmjs.com/package/wyrm-mcp)** · **[GitHub](https://github.com/Ghosts-Protocol-Pvt-Ltd/Wyrm)** · **[Ghost Protocol](https://ghosts.lk)** · `npm i -g wyrm-mcp`
|
|
12
|
+
|
|
13
|
+
Local-first persistent memory for AI agents over MCP — by [Ghost Protocol](https://ghosts.lk). Runs fully offline on your machine: no cloud, no account, no LLM required. The managed cloud tier lives at **[wyrm.ghosts.lk](https://wyrm.ghosts.lk)**.
|
|
14
|
+
|
|
11
15
|
---
|
|
12
16
|
|
|
13
17
|
## What Wyrm actually is
|
|
@@ -45,7 +49,7 @@ The unit of cognition is now the **run** — an orchestrator fanning out structu
|
|
|
45
49
|
- **Single-channel wire (opt-in token economy).** `WYRM_CHANNEL` (vendor-neutral, set per MCP-client config) chooses which channel(s) ride the wire. Default **`both`** = today's exact bytes (no change unless you opt in). **`structured`** keeps the full `structuredContent` body byte-identical and collapses `content[0].text` to the template's summary line + a "full body in structuredContent" pointer — **lossless by construction** (the text was always *derived* from the body) and protocol-valid, but requires that your harness forwards `structuredContent` to the model. **`text`** drops `structuredContent` and keeps the full prose (the human-complete derivation) — the lean mode for harnesses that read text only; **note:** a strict MCP client rejects a body-less response for a tool that declares an `outputSchema`, so `text` is for non-strict / text-only consumers. Measured on `bench/token-economy.mjs --channel`: an opted-in working hour drops **~40%** (`structured`) to **~49%** (`text`); recall (82% of that hour) is the lever. `session_rehydrate` is exempt (its briefing markdown *is* the payload).
|
|
46
50
|
- **CLI exile + deletions.** 22 operator/egress tools moved to `wyrm` subcommands — their MCP names return a structured redirect with the exact command (`wyrm_cloud_backup`/`wyrm_sync_export` keep executing through 7.0.x so scheduled backups never silently stop). The legacy `wyrm-http` server is **deleted** (its 6.18 access log measured zero traffic) — `wyrm serve` is the HTTP surface.
|
|
47
51
|
|
|
48
|
-
**Compatibility:** all 137 names callable; text output reformats (exact-string consumers pin the 6.x line — kept on
|
|
52
|
+
**Compatibility:** all 137 names callable; text output reformats (exact-string consumers pin the 6.x line — kept on the `legacy` dist-tag (`wyrm-mcp@6.18.1`): `npm i wyrm-mcp@legacy`); a v6.x database opens with 100% rows (migrations 20–24, all additive + guarded). Per-name dispositions: `specs/wyrm-v7-brood/disposition.md` in the repo.
|
|
49
53
|
|
|
50
54
|
## New in 6.0 — "Present"
|
|
51
55
|
|
package/dist/tool-manifest.json
CHANGED
package/dist/wyrm-manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wyrm-mcp",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"description": "Local-first persistent memory for AI agents over MCP. Ground truths, negative learning (recorded failures block repeats), decision causality, hybrid recall, live memory streams, run-attributed fleet memory — a structured SQLite memory on your machine, no cloud or LLM required. Claude / Copilot / Cursor / Windsurf / Codex.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
],
|
|
76
76
|
"author": "Ghost Protocol (Pvt) Ltd <ryan@ghosts.lk>",
|
|
77
77
|
"license": "AGPL-3.0-or-later",
|
|
78
|
-
"homepage": "https://
|
|
78
|
+
"homepage": "https://wyrm.ghosts.lk",
|
|
79
79
|
"repository": {
|
|
80
80
|
"type": "git",
|
|
81
81
|
"url": "git+https://github.com/Ghosts-Protocol-Pvt-Ltd/Wyrm.git"
|