Agent Audit/Download
DOWNLOADSDK · installer · Docker · bootstrap

Install in one minute.

Pick the path that matches your stack. The Python SDK is the fastest if your agent already runs on Python; the bootstrap scripts wrap install + API-key configuration into a single command; the Windows installer ships in Q3 2026 for ops teams who want a signed MSI.

Available

Python SDK

pip · 3.10+ · framework adapters built-in

Direct pip install. Ships with adapters for OpenAI Agents SDK, Claude Agent SDK and MCP. The agentaudit-verify CLI is included.

pip install agentaudit
agentaudit init
Available

Docker sidecar

ghcr.io image · non-Python runtimes

Drop-in sidecar for stacks where pip isn't an option — Node, Go, Java, .NET. Same ingest API, same redaction guarantees.

docker pull ghcr.io/agentaudit/sdk:latest
docker run -e AGENTAUDIT_API_KEY=… \
  -p 4318:4318 \
  ghcr.io/agentaudit/sdk:latest
Early access

Windows installer

Signed MSI · v1.0.0-rc · ops-team friendly

Authenticode-signed MSI for ops teams that prefer a desktop installer over a package manager. Bundles Python 3.11, installs the SDK into a managed virtualenv, writes the API key, sends a test receipt. GA Q3 2026 on the public download URL; design partners get the pre-release now.

AgentAuditSetup-1.0.0-x64.msi
WiX 5 source: /installer/wix/Product.wxs
Codesign: DigiCert EV (Agent Audit Ltd, GB)

How we verify the install.

Once the SDK has sent its first receipt, your dashboard flips the install status from amber (waiting) to green (connected). No manual confirmation, no support ticket.

Behind the scenes: every receipt the SDK ingests includes a client_version header and a verified API-key hash. The dashboard polls /api/install/status every 30 seconds and renders the SDK version, host fingerprint and last-seen timestamp once they're known. If you're not seeing the green dot within a minute of running an agent, run agentaudit doctor from the SDK — it tests DNS, TLS, auth and ingestion in order and prints the first one that fails.

Lost your API key? You cannot recover it (we only keep the SHA-256 hash). Revoke and replace it from Settings → API keys.

Before you install

  • You'll need an Agent Audit account (sign up free) and one API key from Settings → API keys.
  • For Python: 3.10 or newer, plus pip 22+. Virtualenv recommended.
  • For Docker: a recent Docker Engine and access to ghcr.io/agentaudit/*.
  • Outbound HTTPS to www.agentaudit.co.uk on TCP 443. No inbound ports required — the SDK initiates every connection.
  • Air-gapped or BYO-S3 deployments: contact us — we ship an offline buffer with deferred sync, configured per pilot.

Don't see your platform?

Tell us what you're running and we'll either ship the adapter or wire your runtime to the REST API directly. The Python SDK is the reference implementation; everything else follows.

Talk to us