Skip to content
Development
Skill

/audit-agent-run-evidence

Use when an agent, harness, gateway, MCP workflow, or multi-step automation claims completion and the available traces, checkpoints, approvals, tool calls, or deployment records must be judged without trusting self-reported success.

From plugin
sickn33-agentic-awesome-skills
46k200 skills
Install
$ npx -y skills add sickn33/antigravity-awesome-skills --skill audit-agent-run-evidence --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/audit-agent-run-evidence

Context preview

The summary Claude sees to decide when to auto-load this skill.

Use when an agent, harness, gateway, MCP workflow, or multi-step automation claims completion and the available traces, checkpoints, approvals, tool calls, or deployment records must be judged without trusting self-reported success.

SKILL.md

audit-agent-run-evidence.SKILL.md
name: audit-agent-run-evidence
description: "Use when an agent, harness, gateway, MCP workflow, or multi-step automation claims completion and the available traces, checkpoints, approvals, tool calls, or deployment records must be judged without trusting self-reported success."
risk: safe
source: self
date_added: "2026-08-19"

Audit Agent Run Evidence

Overview

Turn an end-to-end success statement into independently decidable claims. Reconstruct what happened from available records, grade each claim against the strongest witness, and keep missing evidence distinct from failure.

This is a read-only audit. Do not rerun tools, approve actions, resume workers, deploy artifacts, or modify evidence unless the user separately authorizes those actions.

When to Use

  • Auditing a completed or interrupted agent run from traces and artifacts.
  • Checking whether an agent's end-to-end success claim is actually supported.
  • Reviewing MCP, gateway, sandbox, checkpoint, retry, memory, approval, or deployment evidence.
  • Separating autonomous success from human-assisted or merely requested outcomes.

Do not use this skill to design instrumentation for a future run or to perform the missing actions. It evaluates evidence that already exists.

Establish the Contract

Record these inputs before judging the run:

  • declared goal and terminal success criteria;
  • run, workflow, task, and parent identifiers;
  • immutable code, configuration, model, prompt, tool-schema, and artifact revisions when available;
  • actors and trust boundaries: orchestrator, worker, sandbox, MCP server, gateway, human approver, CI, and deployment platform;
  • retry, deadline, token, cost, concurrency, and human-escalation budgets;
  • supplied evidence inventory and known collection gaps.

Do not silently strengthen the original success criteria. Do not weaken them to match the evidence that happens to exist.

Build a Claim Ledger

Split the overall claim into atomic predicates. Give every row a stable claim ID.

| Field | Required content | |---|---| | `claim_id` | Stable identifier | | `predicate` | One falsifiable statement | | `required_witness` | Source that can independently prove it | | `evidence_refs` | Exact event, log, artifact, or record IDs | | `counterevidence_refs` | Conflicting records | | `coverage` | Required instances versus observed instances | | `verdict` | `proven`, `partially_proven`, `contradicted`, or `not_proven` | | `gap` | Missing field, actor, interval, or verification |

Typical predicates include:

  • every required step reached its terminal postcondition;
  • sandbox isolation held for every executing worker;
  • each required MCP/tool call has a correlated response;
  • retries respected idempotency and did not duplicate committed effects;
  • a checkpoint was durably written, verified, and actually used for resume;
  • parallel branches satisfied the declared join policy;
  • memory reads cite a versioned source rather than an untracked summary;
  • retry, deadline, token, cost, and escalation budgets were respected;
  • approval was granted by an authorized human for the exact artifact and target;
  • the platform deployed that same artifact and passed the declared health checks.

Normalize Evidence

Preserve original records and create a normalized event view with:

{
  "run_id": "run-123",
  "event_id": "evt-42",
  "sequence": 42,
  "observed_at": "RFC3339 timestamp",
  "actor": {"type": "worker", "id": "worker-2"},
  "operation": "mcp.search",
  "state_before": "researching",
  "state_after": "researching",
  "attempt": 2,
  "request_id": "req-9",
  "idempotency_key": "task-7:search:2",
  "input_digest": "sha256:...",
  "output_digest": "sha256:...",
  "checkpoint_seq": 3,
  "parent_event_id": "evt-41",
  "status": "succeeded",
  "evidence_ref": "tool-log:991"
}

Use `null` or `unknown` for absent values. Never synthesize IDs, timestamps, digests, costs, approvals, or outcomes.

Verify bundle hashes or signatures when supplied. Check duplicate IDs, broken parent links, non-monotonic per-source sequences, impossible state transitions, unaccounted clock skew, and unexplained trace gaps. Treat an integrity failure as counterevidence for claims that depend on the affected records.

Rank Witnesses

Prefer the witness closest to the effect:

| Claim | Strong witness | Insufficient alone | |---|---|---| | Code changed | Commit/tree and diff | Agent narration | | Test passed | Complete test result bound to revision | Command invocation | | MCP effect occurred | Server or provider audit record | Client request | | Checkpoint resumed | Durable checkpoint plus verified load event | Checkpoint file exists | | Human approved | Authorization-system decision bound to artifact and target | Approval requested | | Deployment succeeded | Platform record plus required health checks | Deployment started | | Memory grounded a decision | Versioned memory read and citation | Final answer resembles memory |

An orchestrator and its child worker are not independent witnesses when they repeat the same unverified result. A cryptographic digest proves byte identity, not semantic correctness.

Reconstruct the Run

1. Order events by causal links and per-source sequence; use timestamps only as supporting evidence. 2. Build the state-transition path and mark every gap or illegal transition. 3. Link each retry chain by logical operation, request ID, and idempotency key. 4. Link checkpoints to the state they contain and the resume event that consumes them. 5. Preserve every parallel branch outcome; apply the declared `all_required`, `quorum`, `first_success`, or other join rule. 6. Track remaining budgets at each transition. A late success after budget exhaustion is a budget violation. 7. Bind approvals and deployment records to exact artifact digests and targets.

Do not infer successful completion from a final state label when required intermediate predicates are missing.

Assign Verdicts

  • `proven`: aut
Read more
Ships withsickn33-agentic-awesome-skills

Find reusable instructions for your project, inspect their complete files, and keep an exact skill set you can review and reuse. Codex or Claude inspects your project and chooses exact skills from the complete local AAS catalog.

Get the whole plugin
Stats
46,264
Stars
6,744
Forks
Active
Maintenance
Python
Language
MIT
License
7d ago
Last commit
8mo ago
Created

Repo: sickn33/antigravity-awesome-skills