prism-mcp-server 16.1.0 → 16.1.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.
|
@@ -483,7 +483,7 @@ export async function sessionSearchMemoryHandler(args) {
|
|
|
483
483
|
// This MUST happen after re-ranking but BEFORE recording access events,
|
|
484
484
|
// so we only log access for results actually delivered to the LLM.
|
|
485
485
|
results.splice(limit);
|
|
486
|
-
if (results.length > 0) {
|
|
486
|
+
if (PRISM_HDC_ENABLED && results.length > 0) {
|
|
487
487
|
const topScore = PRISM_ACTR_ENABLED ? results[0]._actr_composite : results[0].similarity;
|
|
488
488
|
const secondScore = results.length > 1 ? (PRISM_ACTR_ENABLED ? results[1]._actr_composite : results[1].similarity) : 0;
|
|
489
489
|
const gapDistance = (topScore || 0) - (secondScore || 0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prism-mcp-server",
|
|
3
|
-
"version": "16.1.
|
|
3
|
+
"version": "16.1.1",
|
|
4
4
|
"mcpName": "io.github.dcostenco/prism-coder",
|
|
5
5
|
"description": "Prism Coder — Cognitive memory + tool-calling intelligence for AI agents. Mind Palace persistent memory (BFCL Gold Certified, 100% Tool-Call Accuracy, 54 Agent Skills, Zero-Search HDC/HRR retrieval, HIPAA-hardened local-first storage, SLERP-optimized GRPO alignment) plus the prism-coder:7b / 14b open-weights LLM fleet.",
|
|
6
6
|
"module": "index.ts",
|