Expand description
Recall-domain posterior updates — direct update functions replacing fold-based replay.
These functions mutate a BalancedRecallState in place at the point of action:
after a recall hit/miss and after explicit feedback. No fold trait or event log
needed — pack-memory owns its own posterior lifecycle.
See crates/khive-pack-memory/docs/api/memory-lifecycle.md.
Functions§
- on_
explicit_ feedback - Called when an agent provides explicit feedback on a recalled entity.
- on_
recall_ hit - Called after a successful
memory.recallthat returned at least one result. - on_
recall_ miss - Called after a
memory.recallthat returned no results.