prism-mcp-server 7.8.6 β†’ 7.8.7

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 +7 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -691,9 +691,9 @@ The Generator strips the `console.log`, resubmits, and the next `EVALUATE` retur
691
691
 
692
692
  ## πŸ†• What's New
693
693
 
694
- > **Current release: v7.8.2 β€” Cognitive Architecture**
694
+ > **Current release: v7.8.7 β€” Cognitive Architecture**
695
695
 
696
- - 🧠 **v7.8.0 β€” Cognitive Architecture:** The biggest leap forward yet. Moved beyond flat vector search into a true cognitive architecture inspired by human brain mechanics. Episodic-to-Semantic memory consolidation (Hebbian learning), ACT-R Spreading Activation with multi-hop causal reasoning, Uncertainty-Aware Rejection Gate (your agent can say "I don't know"), and Dynamic Fast Weight Decay (semantic memories outlive episodic chatter by 2Γ—). **Your agents don't just remember; they learn.** β†’ [Cognitive Architecture](#-cognitive-architecture-v78)
696
+ - 🧠 **v7.8.x β€” Cognitive Architecture:** The biggest leap forward yet. Moved beyond flat vector search into a true cognitive architecture inspired by human brain mechanics. Episodic-to-Semantic memory consolidation (Hebbian learning), ACT-R Spreading Activation with multi-hop causal reasoning, Uncertainty-Aware Rejection Gate (your agent can say "I don't know"), and Dynamic Fast Weight Decay (semantic memories outlive episodic chatter by 2Γ—). Validated by **LoCoMo-Plus benchmark** (arXiv 2602.10715) with Precision@K and MRR metrics. **Your agents don't just remember; they learn.** β†’ [Cognitive Architecture](#-cognitive-architecture-v78)
697
697
  - 🌐 **v7.7.0 β€” Cloud-Native SSE Transport:** Full unauthenticated and authenticated Server-Sent Events MCP support for seamless network deployments.
698
698
  - 🩺 **v7.5.0 β€” Intent Health Dashboard + Security Hardening:** Real-time 0–100 project health scoring (staleness Γ— TODO load Γ— decisions). 10 XSS injection vectors patched. Algorithm hardened with NaN guards and score ceiling.
699
699
  - βš”οΈ **v7.4.0 β€” Adversarial Evaluation:** Split-brain anti-sycophancy pipeline. Generator and evaluator in isolated roles with evidence-bound findings.
@@ -968,6 +968,7 @@ Prism is a **stdio-based MCP server** that manages persistent agent memory. Here
968
968
  β”‚ β”‚ β€’ ACT-R Spreading Activation (multi-hop) β”‚ β”‚
969
969
  β”‚ β”‚ β€’ Episodic β†’ Semantic Consolidation (Hebbian) β”‚ β”‚
970
970
  β”‚ β”‚ β€’ Uncertainty-Aware Rejection Gate β”‚ β”‚
971
+ β”‚ β”‚ β€’ LoCoMo-Plus Benchmark Validation β”‚ β”‚
971
972
  β”‚ β”‚ β€’ Dynamic Fast Weight Decay (dual-rate) β”‚ β”‚
972
973
  β”‚ β”‚ β€’ HDC Cognitive Routing (XOR binding) β”‚ β”‚
973
974
  β”‚ β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚
@@ -1056,16 +1057,18 @@ Prism has evolved from smart session logging into a **cognitive memory architect
1056
1057
  | **v7.8** | Multi-Hop Causal Reasoning β€” spreading activation traverses `caused_by`/`led_to` edges with damped fan effect (`1/ln(fan+e)`) and lateral inhibition | ACT-R spreading activation (Anderson), Collins & Loftus (1975) | βœ… Shipped |
1057
1058
  | **v7.8** | Uncertainty-Aware Rejection Gate β€” dual-signal (similarity floor + gap distance) safety layer prevents hallucination from low-confidence retrievals | Metacognition research, uncertainty quantification | βœ… Shipped |
1058
1059
  | **v7.8** | Dynamic Fast Weight Decay β€” `is_rollup` semantic nodes decay 50% slower (`ageModifier = 0.5`) than episodic entries, creating Long-Term Context anchors | ACT-R base-level activation with differential decay rates | βœ… Shipped |
1060
+ | **v7.8** | LoCoMo Benchmark Harness β€” deterministic integration suite (`tests/benchmarks/locomo.ts`, 20 assertions) benchmarking multi-hop compaction structures via `MockLLM` | Long-Context Memory evaluation (cognitive benchmarking) | βœ… Shipped |
1061
+ | **v7.8** | LoCoMo-Plus Benchmark β€” 16-assertion suite (`tests/benchmarks/locomo-plus.ts`) adapted from arXiv 2602.10715 validating cue–trigger semantic disconnect bridging via graph traversal and Hebbian consolidation; reports Precision@1/3/5/10 and MRR | LoCoMo-Plus (Li et al., ARR 2026), cue–trigger disconnect research | βœ… Shipped |
1059
1062
  | **v7.x** | Affect-Tagged Memory β€” sentiment shapes what gets recalled | Affect-modulated retrieval (neuroscience) | πŸ”­ Horizon |
1060
1063
  | **v8+** | Zero-Search Retrieval β€” no index, no ANN, just ask the vector | Holographic Reduced Representations | πŸ”­ Horizon |
1061
1064
 
1062
- > Informed by Anderson's ACT-R (Adaptive Control of Thoughtβ€”Rational), Collins & Loftus spreading activation networks (1975), Kanerva's SDM (1988), Hebb's learning rule, and LeCun's "Why AI Systems Don't Learn" (Dupoux, LeCun, Malik).
1065
+ > Informed by Anderson's ACT-R (Adaptive Control of Thoughtβ€”Rational), Collins & Loftus spreading activation networks (1975), Kanerva's SDM (1988), Hebb's learning rule, Li et al. LoCoMo-Plus (ARR 2026), and LeCun's "Why AI Systems Don't Learn" (Dupoux, LeCun, Malik).
1063
1066
 
1064
1067
  ---
1065
1068
 
1066
1069
  ## πŸ“¦ Milestones & Roadmap
1067
1070
 
1068
- > **Current: v7.8.2** β€” Cognitive Architecture ([CHANGELOG](CHANGELOG.md))
1071
+ > **Current: v7.8.7** β€” Cognitive Architecture ([CHANGELOG](CHANGELOG.md))
1069
1072
 
1070
1073
  | Release | Headline |
1071
1074
  |---------|----------|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prism-mcp-server",
3
- "version": "7.8.6",
3
+ "version": "7.8.7",
4
4
  "mcpName": "io.github.dcostenco/prism-mcp",
5
5
  "description": "The Mind Palace for AI Agents β€” a true Cognitive Architecture with Hebbian learning (episodicβ†’semantic consolidation), ACT-R spreading activation (multi-hop causal reasoning), uncertainty-aware rejection gates (agents that know when they don't know), adversarial evaluation (anti-sycophancy), fail-closed Dark Factory pipelines, persistent memory (SQLite/Supabase), multi-agent Hivemind, time travel & visual dashboard. Zero-config local mode.",
6
6
  "module": "index.ts",