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.
Wraps pip install,
asks for your API key, writes the env file, and sends a test
receipt to verify the chain. Works on Linux, macOS and Windows.
# Linux / macOS curl -fsSL https://www.agentaudit.co.uk/install.sh | bash
# Windows PowerShell iwr -useb https://www.agentaudit.co.uk/install.ps1 | iex
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
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
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)
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.
ghcr.io/agentaudit/*.www.agentaudit.co.uk on TCP 443. No inbound ports required — the SDK initiates every connection.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