Audit Every Action
Pull a verifiable trail of what your agent (or user) did.
Reading the Trail
const events = await brain.audit.list("acme", {
from: "2025-09-01",
to: "2025-09-30",
type: "action.executed", // optional filter
});
events.data.forEach((e) => {
console.log(e.timestamp, e.type, e.actor, e.summary);
});Type
When
Verifying a Specific Action
Pulling the Trace for One Action
Exporting for Compliance Review
Streaming Events Live
Filtering by Actor
What You Don't Have to Worry About
Concern
Why Brain handles it
What's Next
Last updated
