What governance covers
AtomicMemory governance spans four concerns:- Inspection — reading the content, provenance, and verification state of any memory
- Correction — fixing inaccurate claims, reclassifying memories, or permanently removing sensitive content
- Conflict resolution — adjudicating when the system holds two contradictory claims about the same subject
- Auditing — a tamper-evident record of every operator action so you can answer “who changed what, and when”
The governance GUI
The governance interface ships as a standalone web application. Each route covers a distinct governance surface.| Route | Surface | What it does |
|---|---|---|
/memory | Memory Explorer | Table view with VERIFICATION and ACTION STATE columns, filter chips, and lineage hints |
/memory/[memoryId] | Memory Inspector | Detail card + analyst correction panel (verify, supersede, confidence, reason) |
/conflicts | Conflict Queue | Side-by-side trusted-vs-claim view with four resolution actions |
/quarantine | Quarantine Queue | Write-time policy-gate queue — review, approve, reject, or escalate |
/audit | Admin Audit Log | Tamper-evident receipt chain with chain_valid banner and observability stats |
/events | Workflow Events | Typed event feed + delivery-subscription card for webhook integration |
/chats | Conversational assistant | Governed belief-state answer cards with current, superseded, conflict, and action-gate states |
The governance GUI runs on the same AtomicMemory Core backend as your agents. Mutation operations (correct, redact, hard delete) require the
CORE_ADMIN_API_KEY — a separate credential from the regular CORE_API_KEY used by agent workloads. Keep these keys distinct.The Langflow plugin (enterprise)
If you are building governance workflows inside Langflow, four components are available as part of the enterprise plugin:- Memory Inspector — surface individual memory detail and verification state in a flow
- Operator Action — execute correction, redaction, reclassification, revert, or delete operations
- Audit Reader — read the operator action log; sources its admin key from the
ATOMICMEMORY_LANGFLOW_ADMIN_API_KEYenvironment variable — never from a flow input - Search Diagnostics — inspect retrieval scoring and ranking for a given query
API key requirements
Governance and mutation operations use a separate admin credential from regular agent API calls.| Key | Used for | Where to set it |
|---|---|---|
CORE_API_KEY | Standard agent reads and writes | SDK, MCP server, framework adapters |
CORE_ADMIN_API_KEY | Operator actions — correct, redact, reclassify, revert, hard delete | Governance GUI, Langflow Operator Action component, direct API calls |
Where to go next
Inspect & Correct
View individual memories, correct inaccurate claims, resolve conflicts, and manage the quarantine queue through the UI or API.
Audit Log
Understand the tamper-evident receipt chain, how audit actors are attributed, and how to integrate with webhook event delivery.