prism-mcp-server 2.3.2 → 2.3.4
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 +43 -1
- package/dist/config.js +1 -1
- package/dist/dashboard/server.js +4 -1
- package/dist/dashboard/ui.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
17
|
-
## What's New in v2.3.
|
|
17
|
+
## What's New in v2.3.4 — AI Reasoning Engine 🧠
|
|
18
18
|
|
|
19
19
|
| Feature | Description |
|
|
20
20
|
|---|---|
|
|
@@ -398,6 +398,48 @@ If it's been more than 4 hours since your last session, Prism automatically:
|
|
|
398
398
|
|
|
399
399
|
The agent boots up knowing exactly what to do — zero prompting needed.
|
|
400
400
|
|
|
401
|
+
### Auto-Load on Session Start (Recommended)
|
|
402
|
+
|
|
403
|
+
For the best experience, configure your AI coding assistant to **automatically call `session_load_context`** at the start of every new session. This ensures your agent always boots with full project memory — no manual prompting needed.
|
|
404
|
+
|
|
405
|
+
<details>
|
|
406
|
+
<summary><strong>Claude Code (.clauderules / CLAUDE.md)</strong></summary>
|
|
407
|
+
|
|
408
|
+
Add this rule to your project's `.clauderules` or `CLAUDE.md`:
|
|
409
|
+
|
|
410
|
+
```markdown
|
|
411
|
+
## Prism MCP Memory Auto-Load (CRITICAL)
|
|
412
|
+
At the start of every new session, you MUST call `session_load_context`
|
|
413
|
+
at the `standard` level for these projects:
|
|
414
|
+
- `my-project`
|
|
415
|
+
- `my-other-project`
|
|
416
|
+
|
|
417
|
+
Do NOT skip this step.
|
|
418
|
+
```
|
|
419
|
+
|
|
420
|
+
</details>
|
|
421
|
+
|
|
422
|
+
<details>
|
|
423
|
+
<summary><strong>Gemini / Antigravity (GEMINI.md)</strong></summary>
|
|
424
|
+
|
|
425
|
+
Add this rule to your `~/.gemini/GEMINI.md` global rules file:
|
|
426
|
+
|
|
427
|
+
```markdown
|
|
428
|
+
## Prism MCP Memory Auto-Load (CRITICAL)
|
|
429
|
+
**At the start of every new session**, immediately after displaying
|
|
430
|
+
the startup block, you MUST call `session_load_context` (via Prism MCP
|
|
431
|
+
/ athena-public server) at the `standard` level for these projects:
|
|
432
|
+
- `my-project`
|
|
433
|
+
- `my-other-project`
|
|
434
|
+
|
|
435
|
+
This ensures accumulated project memory, pending TODOs, and key context
|
|
436
|
+
from previous sessions are always available. Do NOT skip this step.
|
|
437
|
+
```
|
|
438
|
+
|
|
439
|
+
</details>
|
|
440
|
+
|
|
441
|
+
> **Tip:** Replace `my-project` with your actual project identifiers. You can list as many projects as you need — each one gets its own independent memory timeline.
|
|
442
|
+
|
|
401
443
|
---
|
|
402
444
|
|
|
403
445
|
## Time Travel (Version History)
|
package/dist/config.js
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
// multi-tenant Row Level Security (RLS) for production hosting.
|
|
23
23
|
export const SERVER_CONFIG = {
|
|
24
24
|
name: "prism-mcp",
|
|
25
|
-
version: "2.3.
|
|
25
|
+
version: "2.3.4",
|
|
26
26
|
};
|
|
27
27
|
// ─── Required: Brave Search API Key ───────────────────────────
|
|
28
28
|
export const BRAVE_API_KEY = process.env.BRAVE_API_KEY;
|
package/dist/dashboard/server.js
CHANGED
|
@@ -36,7 +36,10 @@ export async function startDashboardServer() {
|
|
|
36
36
|
const url = new URL(req.url || "/", `http://${req.headers.host}`);
|
|
37
37
|
// ─── Serve the Dashboard UI ───
|
|
38
38
|
if (url.pathname === "/" || url.pathname === "/index.html") {
|
|
39
|
-
res.writeHead(200, {
|
|
39
|
+
res.writeHead(200, {
|
|
40
|
+
"Content-Type": "text/html; charset=utf-8",
|
|
41
|
+
"Cache-Control": "no-store, no-cache, must-revalidate",
|
|
42
|
+
});
|
|
40
43
|
return res.end(renderDashboardHTML());
|
|
41
44
|
}
|
|
42
45
|
// ─── API: List all projects ───
|
package/dist/dashboard/ui.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Mind Palace Dashboard — UI Renderer (v2.3.
|
|
2
|
+
* Mind Palace Dashboard — UI Renderer (v2.3.4)
|
|
3
3
|
*
|
|
4
4
|
* Pure CSS + Vanilla JS single-page dashboard.
|
|
5
5
|
* No build step, no Tailwind, no framework — served as a template literal.
|
|
@@ -279,7 +279,7 @@ export function renderDashboardHTML() {
|
|
|
279
279
|
<div class="logo">
|
|
280
280
|
<span class="logo-icon">🧠</span>
|
|
281
281
|
Prism Mind Palace
|
|
282
|
-
<span class="version-badge">v2.3.
|
|
282
|
+
<span class="version-badge">v2.3.4</span>
|
|
283
283
|
</div>
|
|
284
284
|
<div class="selector">
|
|
285
285
|
<select id="projectSelect">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prism-mcp-server",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
4
|
"mcpName": "io.github.dcostenco/prism-mcp",
|
|
5
5
|
"description": "The Mind Palace for AI Agents — local-first MCP server with persistent memory (SQLite/Supabase), visual dashboard, time travel, multi-agent sync, Morning Briefings, reality drift detection, code mode templates, semantic vector search, and Brave Search + Gemini analysis. Zero-config local mode.",
|
|
6
6
|
"module": "index.ts",
|