Security first.

The only agent memory API with OWASP ASI06 protection built into the write path.

OWASP ASI06 โ€” memory poisoning protection

ASI06 covers memory and context poisoning of AI agents. AgentMemo defends the write path: every memory is content-hashed, classified, and scored before it is trusted.

Trust scoring

Each API key carries a trust score (0โ€“1, starts at 1.0). Suspicious patterns โ€” burst writes, repeated contradictory content, spam โ€” lower it. Writes from keys below 0.3 are blocked with a 403 trust_score_too_low. Normal usage rebuilds trust over time.

Full audit trail

Every store, retrieve, forget, verify, and feedback is written to an append-only audit log with timestamp, action, trust score, and outcome โ€” essential for enterprise compliance.

Data isolation

All memory is isolated by (api_key, user_id, agent_id). One key can never read or delete another tenant's data.

GDPR compliance

Right to access: GET /users/:id/memories. Right to be forgotten: DELETE /users/:id/memories removes all memories, emotional records, and episodes for a user.

Responsible disclosure

Found a vulnerability? Email security@agentmemo.dev. We respond within 72 hours.