From 811c94da36d84c00f6ee6e5e463bf61383e2a296 Mon Sep 17 00:00:00 2001 From: Alex Newman Date: Sat, 4 Apr 2026 15:20:30 -0700 Subject: [PATCH] fix: correct content hash description, update merged PR references, fix ChromaSync desc --- docs/architecture-overview.md | 2 +- docs/production-guide.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/architecture-overview.md b/docs/architecture-overview.md index 10a4b457..2882780a 100644 --- a/docs/architecture-overview.md +++ b/docs/architecture-overview.md @@ -96,7 +96,7 @@ The worker being unavailable NEVER blocks the user's Claude Code session. ### Deduplication (observations) ```text -SHA256(memory_session_id + title + narrative) -> content_hash +SHA256(memory_session_id + title + narrative)[:16] -> content_hash (16 hex chars) If hash exists within 30s window -> return existing ID (no insert) ``` diff --git a/docs/production-guide.md b/docs/production-guide.md index f77325ec..2c049b38 100644 --- a/docs/production-guide.md +++ b/docs/production-guide.md @@ -7,9 +7,9 @@ Practical guide based on 23 days of production usage with 3,400+ observations ac | Setting | Default | Recommended | Why | |---------|---------|-------------|-----| | CLAUDE_MEM_MAX_CONCURRENT_AGENTS | 2 | 3 | Better throughput without overload | -| CLAUDE_MEM_SEMANTIC_INJECT | (proposed in PR #1568) | true | Relevant context >> recent context | -| CLAUDE_MEM_SEMANTIC_INJECT_LIMIT | (proposed in PR #1568) | 5 | Sweet spot for token cost vs coverage | -| CLAUDE_MEM_TIER_ROUTING_ENABLED | (proposed in PR #1569) | true | ~52% cost savings, no quality loss | +| CLAUDE_MEM_SEMANTIC_INJECT | true | true | Relevant context >> recent context | +| CLAUDE_MEM_SEMANTIC_INJECT_LIMIT | 5 | 5 | Sweet spot for token cost vs coverage | +| CLAUDE_MEM_TIER_ROUTING_ENABLED | true | true | ~52% cost savings, no quality loss | ## Health Monitoring @@ -75,7 +75,7 @@ Based on active daily development usage: **Symptom:** `[ERROR] Batch add failed... IDs already exist` **Cause:** MCP timeout during add leaves partial writes; retry fails on existing IDs. -**Fix:** PR #1566 — fallback to update (upsert pattern). +**Fix:** PR #1566 — fallback to delete+add reconciliation. ### Port conflict on startup