Durable, access-scoped, append-only record of who changed what app data, when, and whether it was the agent or a human. Use when adding an activity feed or change history, declaring what a mutating action targets, auditing sensitive reads, or answering "what did the agent change / who edited this".
74
93%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Every mutating action automatically records an audit event — no wiring
needed. The framework captures who/what/when/from-where at the defineAction
seam, redacts credentials, and attributes the change to a human or the agent
(with the agent thread/turn that caused it). You only touch audit config to
make events more useful (declare the target) or to opt a read in / a noisy
write out.
This is distinct from:
Audit is complete, durable, locally queryable, and scoped to the data it describes.
By default an event is scoped to the actor (you see your own changes and the agent's changes on your behalf). To make a change to a shared resource show up in the owner's audit trail, declare the target:
defineAction({
description: "Delete a recording",
schema: z.object({ id: z.string() }),
audit: {
// type + id label the event; ownerEmail/orgId/visibility scope who can read it.
target: (args, result, meta) => ({
type: "recording",
id: args.id,
// Optional — defaults to the actor. Set when editing someone else's resource.
ownerEmail: result?.ownerEmail,
visibility: "org",
}),
summary: (args) => `Deleted recording ${args.id}`,
},
run: async (args, ctx) => { /* ... */ },
});target, ownerEmail, visibility, and summary are all optional. The
minimum useful addition is target: () => ({ type, id }).
readOnly) are audited automatically.audit: { onRead: true }.audit: { enabled: true }.audit: { enabled: false }.audit: { recordInputs: false }. Inputs are credential-redacted regardless.Two actions are available to the agent and the frontend in every app, scoped in SQL to the caller — they never leak another tenant's rows:
list-audit-events — filter by targetType/targetId, actorKind
(agent | human | system), status, threadId/turnId, action,
sinceMs, limit.get-audit-event — one event by id, with its redacted input payload.export-audit-events — bulk CSV/NDJSON export (same filters minus limit,
plus format and maxRows) for offline/compliance pulls; itself audited
via onRead.Call them from the UI with useActionQuery to build an activity feed or a
"who changed this" line — never hand-write a fetch to the audit table.
audit.target
and read it back instead.summary or rely on inputs being safe — redaction covers
credential-shaped values, but keep summaries free of sensitive data.AGENT_NATIVE_AUDIT_RETENTION_DAYS,
default 365 days; 0 = keep forever). Global kill switch:
AGENT_NATIVE_AUDIT_ENABLED=false.c1ee18b
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.