Increase retrieval priority for memories about a topic that are in Recall but not surfacing reliably
When something IS in Recall but consistently fails to inject into sessions, boost its importance score so it competes better at retrieval time.
Get the topic from user or context
Find matching memories
curl -s "http://192.168.50.19:8200/search/browse?query=<topic>&limit=10" \
-H "X-API-Key: recall-admin-key-change-me"
Identify candidates — memories with score ≥ 0.55 that are relevant but have low importance (check importance field in response)
Boost via admin rehabilitate (raises importance for matching IDs):
# If individual update endpoint available:
curl -s -X PATCH http://192.168.50.19:8200/memory/<id> \
-H "Content-Type: application/json" \
-H "X-API-Key: recall-admin-key-change-me" \
-d '{"importance": 0.88}'
# Fallback: re-store the memory with higher importance
curl -s -X POST http://192.168.50.19:8200/memory/store \
-H "Content-Type: application/json" \
-H "X-API-Key: recall-admin-key-change-me" \
-d '{
"content": "<original content>",
"domain": "<same domain>",
"tags": ["boosted", "<original tags>"],
"importance": 0.88
}'
Report: how many memories were boosted, new importance scores
/boost → memory exists, importance just needs to be higher (0.85–0.90)/anchor → memory must ALWAYS surface, store fresh with importance=1.0 + write to MEMORY.mdIf a memory has score 0.75+ and still didn't inject, the problem may not be importance — it may be:
/anchor/learn to re-store with correct domain