prism-mcp-server 20.8.0 β 20.8.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 +26 -3
- package/dist/dashboard/ui.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
[](https://huggingface.co/dcostenco)
|
|
9
9
|
|
|
10
10
|
<p align="center">
|
|
11
|
-
<img src="docs/
|
|
11
|
+
<img src="docs/mind-palace-dashboard-v20.8.png" alt="Prism Mind Palace dashboard v20.8.0 β project state with handoff summary, pending TODOs, intent health, neural graph, and time-travel history" width="700" />
|
|
12
12
|
</p>
|
|
13
13
|
|
|
14
14
|
Prism Coder is an [MCP server](https://modelcontextprotocol.io) that gives Claude, Cursor, and other AI tools long-term memory that survives across sessions. It ships with the open-weight `prism-coder` model fleet (2Bβ27B) for fast, offline tool-routing β no cloud required.
|
|
@@ -116,6 +116,29 @@ or by re-enabling after each run.
|
|
|
116
116
|
<details>
|
|
117
117
|
<summary>Release history (optional)</summary>
|
|
118
118
|
|
|
119
|
+
## What's New in v20.7 β v20.8.0
|
|
120
|
+
|
|
121
|
+
- **First run proves the memory instead of describing it** β `session_bootstrap`
|
|
122
|
+
seeds one demo memory and shows it *recalled from disk*, so the saveβrecall
|
|
123
|
+
loop is felt in session 1. One-shot, contained in its own `prism-demo`
|
|
124
|
+
project, removable with one call.
|
|
125
|
+
- **Dashboard fixed** β a quoting typo (shipped 2026-05-29) killed the inline
|
|
126
|
+
script at parse time, so every dashboard since rendered "Loading projects..."
|
|
127
|
+
forever. Fixed, and the ES5 lint now `node --check`s the built inline script
|
|
128
|
+
so an unparseable dashboard can never ship again.
|
|
129
|
+
- **Trusted Publishing** β npm releases authenticate via GitHub OIDC. No stored
|
|
130
|
+
token to expire or leak, and every release carries a signed [provenance
|
|
131
|
+
attestation](https://docs.npmjs.com/generating-provenance-statements) β you
|
|
132
|
+
can verify the tarball you install was built from this repo by CI
|
|
133
|
+
(`npm audit signatures`).
|
|
134
|
+
- **TLS enforced for cloud sync** β a remote `http://` storage URL is upgraded
|
|
135
|
+
to `https://` instead of silently sending session content in the clear.
|
|
136
|
+
- **Codex plugin collision + enabled-state detection** β `prism connect` skips
|
|
137
|
+
its own registration only when a plugin *actually* provides `prism-mcp`
|
|
138
|
+
(cache present **and** enabled), preventing both duplicate and missing
|
|
139
|
+
servers.
|
|
140
|
+
- Windows CI stabilized; registry/npm listings realigned and deduplicated.
|
|
141
|
+
|
|
119
142
|
## What's New in v20.6.0
|
|
120
143
|
|
|
121
144
|
### Delivery Is Not a Suggestion
|
|
@@ -604,7 +627,7 @@ Your AI agent forgets everything between sessions. Prism fixes that β and adds
|
|
|
604
627
|
Every conversation feeds a persistent store. The next session loads the right context automatically β no re-explaining.
|
|
605
628
|
|
|
606
629
|
<p align="center">
|
|
607
|
-
<img src="docs/mind-palace-dashboard.png" alt="Mind Palace Dashboard β
|
|
630
|
+
<img src="docs/mind-palace-dashboard-v20.8-full.png" alt="Mind Palace Dashboard β full page: session ledger, memory analytics, lifecycle controls, background scheduler" width="700" />
|
|
608
631
|
</p>
|
|
609
632
|
|
|
610
633
|
The dashboard shows your current project state, pending TODOs, intent health, and a neural knowledge graph β all built automatically from your agent sessions.
|
|
@@ -730,7 +753,7 @@ draft that may need correctionβto Synalux for authenticated deterministic
|
|
|
730
753
|
correction. Advertised custom host tools remain local. Set
|
|
731
754
|
`route_guard: "local"` for a fully on-device route path.
|
|
732
755
|
|
|
733
|
-
| Model | Ollama tag | Size | [BFCL](https://gorilla.cs.berkeley.edu/
|
|
756
|
+
| Model | Ollama tag | Size | [BFCL](https://gorilla.cs.berkeley.edu/leaderboard.html) Accuracy | Role | Automatic routing tier |
|
|
734
757
|
|---|---|---|---|---|---|
|
|
735
758
|
| Qwen3.5-4B Q3_K_M | `prism-coder:2b` | 2.3 GB | 99.1% Γ 3 seeds | iPhone / mobile first gate | Free |
|
|
736
759
|
| Qwen3.5-4B Q4_K_M | `prism-coder:4b` | 3.4 GB | 100% Γ 3 seeds | Verifier | Free |
|
package/dist/dashboard/ui.js
CHANGED
|
@@ -1856,7 +1856,7 @@ function loadPipelines() {
|
|
|
1856
1856
|
html += '<div style="font-size:0.72rem;color:var(--accent-rose);margin-top:0.35rem;padding:0.3rem 0.5rem;background:rgba(244,63,94,0.08);border-radius:4px">β ' + escapeHtml(p.error.slice(0, 200)) + '</div>';
|
|
1857
1857
|
}
|
|
1858
1858
|
if (isActive) {
|
|
1859
|
-
html += '<div style="margin-top:0.5rem"><button onclick="abortPipeline(this.dataset.id)" data-id='
|
|
1859
|
+
html += '<div style="margin-top:0.5rem"><button onclick="abortPipeline(this.dataset.id)" data-id="' + escapeHtml(p.id) + '" class="cleanup-btn" style="font-size:0.72rem">π Abort Pipeline</button></div>';
|
|
1860
1860
|
}
|
|
1861
1861
|
html += '</div>';
|
|
1862
1862
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prism-mcp-server",
|
|
3
|
-
"version": "20.8.
|
|
3
|
+
"version": "20.8.1",
|
|
4
4
|
"mcpName": "io.github.dcostenco/prism-coder",
|
|
5
5
|
"description": "Persistent session memory for AI coding agents that never leaves your machine \u2014 including the on-device model that reasons over it. Restores your prior decisions, open TODOs, and changed files across sessions; adds associative recall of related past work, semantic drift detection, and local inference. Local-first by default. Works with Claude Code, Cursor, and Codex.",
|
|
6
6
|
"module": "index.ts",
|