fix: correct content hash description, update merged PR references, fix ChromaSync desc

This commit is contained in:
Alex Newman
2026-04-04 15:20:30 -07:00
parent af6bfda2d8
commit 811c94da36
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ The worker being unavailable NEVER blocks the user's Claude Code session.
### Deduplication (observations) ### Deduplication (observations)
```text ```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) If hash exists within 30s window -> return existing ID (no insert)
``` ```
+4 -4
View File
@@ -7,9 +7,9 @@ Practical guide based on 23 days of production usage with 3,400+ observations ac
| Setting | Default | Recommended | Why | | Setting | Default | Recommended | Why |
|---------|---------|-------------|-----| |---------|---------|-------------|-----|
| CLAUDE_MEM_MAX_CONCURRENT_AGENTS | 2 | 3 | Better throughput without overload | | 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 | true | true | Relevant context >> recent context |
| CLAUDE_MEM_SEMANTIC_INJECT_LIMIT | (proposed in PR #1568) | 5 | Sweet spot for token cost vs coverage | | CLAUDE_MEM_SEMANTIC_INJECT_LIMIT | 5 | 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_TIER_ROUTING_ENABLED | true | true | ~52% cost savings, no quality loss |
## Health Monitoring ## Health Monitoring
@@ -75,7 +75,7 @@ Based on active daily development usage:
**Symptom:** `[ERROR] Batch add failed... IDs already exist` **Symptom:** `[ERROR] Batch add failed... IDs already exist`
**Cause:** MCP timeout during add leaves partial writes; retry fails on existing IDs. **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 ### Port conflict on startup