prism-mcp-server 5.2.0 โ 5.2.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 +14 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,12 +92,12 @@ Soft/hard delete (Art. 17), full ZIP export (Art. 20), API key redaction, per-pr
|
|
|
92
92
|
|
|
93
93
|
- ๐ง **Cognitive Memory** โ Ebbinghaus importance decay computes `effective_importance = base ร 0.95^days` at retrieval time. Frequently accessed memories stay prominent; neglected ones naturally fade. Tracks `last_accessed_at` per entry.
|
|
94
94
|
- ๐ฏ **Context-Weighted Retrieval** โ New `context_boost` parameter on `session_search_memory` prepends your active project's context to the query before embedding, biasing results toward what matters right now.
|
|
95
|
-
- ๐ **Universal History Migration** โ Import years of Claude Code, Gemini, and ChatGPT sessions on day one. Strategy Pattern adapters with OOM-safe streaming, content-hash dedup, and `--dry-run` support.
|
|
95
|
+
- ๐ **[Universal History Migration](#migrating-existing-history-claude-gemini-openai)** โ Import years of Claude Code, Gemini, and ChatGPT sessions on day one. Strategy Pattern adapters with OOM-safe streaming, content-hash dedup, and `--dry-run` support. Also available via the [Dashboard Import UI](#-mind-palace-dashboard).
|
|
96
96
|
- ๐งน **Smart Consolidation** โ Enhanced compaction extracts recurring principles alongside summaries for richer rollups.
|
|
97
97
|
- ๐ก๏ธ **SQL Injection Prevention** โ 17-column allowlist on `patchLedger()` hardens all dynamic SQL paths.
|
|
98
98
|
- ๐งช **352 Tests** โ Zero regressions across 15 suites.
|
|
99
99
|
|
|
100
|
-
> [Full CHANGELOG โ](CHANGELOG.md)
|
|
100
|
+
> [Full CHANGELOG โ](CHANGELOG.md) ยท [Architecture Deep Dive โ](docs/ARCHITECTURE.md)
|
|
101
101
|
|
|
102
102
|
---
|
|
103
103
|
|
|
@@ -719,6 +719,18 @@ See [CHANGELOG.md](CHANGELOG.md) for full details.
|
|
|
719
719
|
|
|
720
720
|
---
|
|
721
721
|
|
|
722
|
+
## โ ๏ธ Limitations
|
|
723
|
+
|
|
724
|
+
- **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).
|
|
725
|
+
- **Auto-load is model-dependent.** Session auto-loading relies on the LLM following system prompt instructions. Some models (especially Gemini) intermittently hallucinate that MCP tools are "unavailable." See the [Gemini/Antigravity setup guide](#gemini--antigravity--auto-load-rules-battle-tested) for workarounds.
|
|
726
|
+
- **No real-time sync without Supabase.** Local SQLite mode is single-machine only. Multi-device or team sync requires a Supabase backend.
|
|
727
|
+
- **Embedding quality varies by provider.** Gemini `text-embedding-004` and OpenAI `text-embedding-3-small` produce high-quality 768-dim vectors. Ollama embeddings (e.g., `nomic-embed-text`) are usable but may reduce retrieval accuracy.
|
|
728
|
+
- **Dashboard is HTTP-only.** The Mind Palace dashboard at `localhost:3000` does not support HTTPS. For remote access, use a reverse proxy (nginx/Caddy) or SSH tunnel. Basic auth is available via `PRISM_DASHBOARD_USER` / `PRISM_DASHBOARD_PASS`.
|
|
729
|
+
- **Migration is one-way.** Universal History Migration imports sessions *into* Prism but does not export back to Claude/Gemini/OpenAI formats. Use `session_export_memory` for portable JSON/Markdown export.
|
|
730
|
+
- **No Windows CI testing.** Prism is developed and tested on macOS/Linux. It should work on Windows via Node.js, but edge cases (file paths, PID locks) may surface.
|
|
731
|
+
|
|
732
|
+
---
|
|
733
|
+
|
|
722
734
|
## License
|
|
723
735
|
|
|
724
736
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prism-mcp-server",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.1",
|
|
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",
|