Skills
Treat agent memory as a pruning problem, not a hoarding problem — decay it on an Ebbinghaus curve
Unbounded memory accumulation degrades agents through noise, retrieval latency, and interference from stale facts; context pollution now causes more failures than model quality. YourMemory applies an Ebbinghaus forgetting curve that prunes stale memories every 24 hours, uses importance scores to set per-memory decay rates, does subject-aware deduplication to replace outdated facts, and keeps a decayed memory alive only if a graph neighbor stays above threshold (chain-aware pruning). The result is +16pp recall over Mem0 on the LoCoMo benchmark.
Source
↳ Follow the thread