What problem does it solve?
AI agents often skip consulting their memory system before making factual claims, producing ungrounded assertions that users cannot easily detect. This Skill closes that gap by deterministically forcing a memory lookup before any factual claim is sent.
Core Features & Use Cases
- Assertion Detection: Identifies factual-assertion shapes ("X is Y", "A did B") in outgoing messages and checks whether a memory tool has fired in the current turn.
- Deterministic Enforcement: Requires a memory_search call against the assertion's subject before the message is delivered, without relying on the LLM remembering to do it.
- Smart Skipping: Ignores opinions, questions, and assertions already grounded by a memory tool call within the last ~30 seconds; fires at most 8 times per session.
- Use Case: When a user asks "What did we decide about the API migration?", the agent runs memory_search first and answers from actual stored memory instead of guessing from context.
Quick Start
Enable the recall-before-claim interceptor so the agent verifies factual claims against memory before sending messages.