prism-mcp-server 6.5.1 → 6.5.3

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.
Files changed (2) hide show
  1. package/README.md +35 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![Smithery](https://img.shields.io/badge/Smithery-listed-6B4FBB)](https://smithery.ai)
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
8
8
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.0+-3178C6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
9
- [![Node.js](https://img.shields.io/badge/Node.js-18+-339933?logo=node.js&logoColor=white)](https://nodejs.org/)
9
+ [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)
10
10
 
11
11
  **Your AI agent forgets everything between sessions. Prism fixes that.**
12
12
 
@@ -33,7 +33,7 @@ Works with **Claude Desktop · Claude Code · Cursor · Windsurf · Cline · Gem
33
33
  - [Architecture](#architecture)
34
34
  - [Scientific Foundation](#-scientific-foundation)
35
35
  - [Product Roadmap](#-product-roadmap)
36
- - [Limitations](#limitations)
36
+ - [Troubleshooting FAQ](#-troubleshooting-faq)
37
37
 
38
38
  ---
39
39
 
@@ -391,10 +391,29 @@ Soft/hard delete (Art. 17), full export in JSON, Markdown, or Obsidian vault `.z
391
391
 
392
392
  **Morning Briefings** — After 4+ hours away, Prism auto-synthesizes a 3-bullet action plan from your last sessions.
393
393
 
394
+ ### Claude Code: Parallel Explore Agent Workflows
395
+
396
+ When you need to quickly map a large auth system, launch multiple `Explore` subagents in parallel and merge their findings:
397
+
398
+ ```text
399
+ Run 3 Explore agents in parallel.
400
+ 1) Map auth architecture
401
+ 2) List auth API endpoints
402
+ 3) Find auth test coverage gaps
403
+ Research only, no code changes.
404
+ Return a merged summary.
405
+ ```
406
+
407
+ Then continue a specific thread with a follow-up message to the selected agent, such as deeper refresh-token edge-case analysis.
408
+
394
409
  ---
395
410
 
396
411
  ## 🆕 What's New
397
412
 
413
+ ### v6.5.1 — Dashboard Project-Load Hotfix ✅
414
+ - 🩹 **Project Selector Recovery** — Fixed a startup path where the dashboard selector could stay stuck on "Loading projects..." when Supabase env vars were unresolved placeholders.
415
+ - 🔄 **Safe Backend Fallback** — If Supabase is requested but env is invalid/unresolved, Prism now auto-falls back to local SQLite so `/api/projects` and dashboard boot remain operational.
416
+
398
417
  ### v6.5 — HDC Cognitive Routing ✅
399
418
  > **Current stable release.** The Mind Palace gains a brain-inspired routing engine.
400
419
 
@@ -743,9 +762,21 @@ Full Superposed Memory (SDM) + Hyperdimensional Computing (HDC/VSA) becomes the
743
762
  - **v7.x: Affect-Tagged Memory** — Recall prioritization improves by weighting memories with affective/contextual valence, making surfaced context more behaviorally useful.
744
763
  - **v8+: Zero-Search Retrieval** — Direct vector-addressed recall (“just ask the vector”) reduces retrieval indirection and moves Prism toward truly native associative memory.
745
764
 
746
- ---
747
765
 
748
- ## Limitations
766
+ ## ❓ Troubleshooting FAQ
767
+
768
+ **Q: Why is the dashboard project selector stuck on "Loading projects..."?**
769
+ A: This usually means Supabase env values are unresolved placeholders (for example `${SUPABASE_URL}`) or invalid. As of v6.5.1 Prism auto-falls back to local SQLite, but you should still fix env values for cloud mode.
770
+
771
+ **Q: Why is semantic search quality weak or inconsistent?**
772
+ A: Check embedding provider configuration and key availability. Missing embedding credentials reduce semantic recall quality and can shift behavior toward keyword-heavy matches.
773
+
774
+ **Q: How do I delete a bad memory entry?**
775
+ A: Use `session_forget_memory` for targeted soft/hard deletion. For manual cleanup and merge workflows, use the dashboard graph editor.
776
+
777
+ **Q: How do I verify the install quickly?**
778
+ A: Run `npm run build && npm test`, then open the Mind Palace dashboard (`localhost:3000`) and confirm projects load plus Graph Health renders.
779
+
749
780
 
750
781
  - **LLM-dependent features require an API key.** Semantic search, Morning Briefings, auto-compaction, and VLM captioning need a `GOOGLE_API_KEY` (Gemini) or equivalent provider key. Without one, Prism falls back to keyword-only search (FTS5).
751
782
  - **Auto-load is model- and client-dependent.** Session auto-loading relies on both the LLM following system prompt instructions *and* the MCP client completing tool registration before the model's first turn. Prism provides platform-specific [Setup Guides](#-setup-guides) and a server-side fallback (v5.2.1) that auto-pushes context after 10 seconds.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prism-mcp-server",
3
- "version": "6.5.1",
3
+ "version": "6.5.3",
4
4
  "mcpName": "io.github.dcostenco/prism-mcp",
5
5
  "description": "The Mind Palace for AI Agents — persistent memory (SQLite/Supabase), behavioral learning & IDE rules sync, multimodal VLM image captioning, pluggable LLM providers (OpenAI/Anthropic/Gemini/Ollama), OpenTelemetry distributed tracing, GDPR export, multi-agent Hivemind sync, time travel, visual Mind Palace dashboard. Zero-config local mode.",
6
6
  "module": "index.ts",