🛡️ AgentGuard
The governance layer that lets companies trust their AI agents enough to actually deploy them.
62% of production AI teams plan to improve observability in the next year. Over 40% of agentic AI projects will be canceled by 2027 due to inadequate risk controls. Humans still verify 69% of AI decisions because there are no guardrails they trust.
AgentGuard fixes this. One SDK. Full audit trail. Every LLM call and tool use — intercepted, policy-checked, cost-tracked, and logged. 3 lines of code.
Quick Start
from openai import OpenAI
from agentguard import AgentGuard
client = OpenAI()
guard = AgentGuard(
policies=["pii", "content_filter", "cost_limit"],
audit_path="audit.jsonl",
cost_limit=5.00,
)
safe_client = guard.wrap_openai(client)
# Use exactly like the original — now with full protection
response = safe_client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello!"}],
)
Every call is now:
- ✅ PII-scanned — blocks emails, SSNs, credit cards, phone numbers
- ✅ Policy-checked — blocks prompt injections, enforces budget limits
- ✅ Cost-tracked — per-model, per-run, and daily spend tracking
- ✅ Audit-logged — immutable JSON-lines trail for compliance
Installation
# Core (OpenAI support included)
pip install agentaudit-sdk
# With Anthropic support
pip install "agentaudit-sdk[anthropics]"
🤖 Anthropic Claude Integration
Wrap Claude exactly like OpenAI — 3 lines, full protection.
import anthropic
from agentguard import AgentGuard
client = anthropic.Anthropic()
guard = AgentGuard(
policies=["pii", "content_filter", "cost_limit"],
audit_path="audit.jsonl",
cost_limit=5.00,
)
safe = guard.wrap_anthropic(client)
# Use exactly like the original — now fully protected
response = safe.messages.create(
model="claude-3-5-sonnet-20241022",
max_tokens=1024,
messages=[{"role": "user", "content": "Hello, Claude!"}],
)
print(response.content[0].text)
Every call is now:
- ✅ PII-scanned — both
messageslist AND the top-levelsystemprompt - ✅ Policy-checked — prompt injections blocked, budget enforced
- ✅ Cost-tracked — accurate per-model pricing for all Claude 3 variants
- ✅ Audit-logged — immutable JSON-lines trail
Async Claude
import anthropic
from agentguard import AgentGuard
async with AgentGuard(policies=["pii", "content_filter"]) as guard:
client = anthropic.AsyncAnthropic()
safe = guard.wrap_anthropic_async(client)
response = await safe.messages.create(
model="claude-3-5-haiku-20241022",
max_tokens=512,
system="You are a helpful assistant.", # 🛡️ system prompt is PII-scanned too
messages=[{"role": "user", "content": "Summarise this report."}],
)
print(response.content[0].text)
Supported Claude Models (with built-in pricing)
| Model | Input / 1M tokens | Output / 1M tokens |
|---|---|---|
claude-3-5-sonnet-20241022 |
$3.00 | $15.00 |
claude-3-5-haiku-20241022 |
$0.80 | $4.00 |
claude-3-opus-20240229 |
$15.00 | $75.00 |
claude-3-sonnet-20240229 |
$3.00 | $15.00 |
claude-3-haiku-20240307 |
$0.25 | $1.25 |
Features
🛡️ Built-in Policies
| Policy | What It Does |
|---|---|
pii |
Blocks PII (emails, SSN, credit cards, phones, IPs) in inputs & outputs |
content_filter |
Blocks prompt injection attempts & system prompt extraction |
cost_limit |
Enforces per-run, daily, and total budget limits |
rate_limit |
Throttles calls per time window (sliding window) |
tool_restriction |
Blocklist/allowlist for agent tool usage |
🔧 Tool Guarding
Wrap any function — sync or async. Policies are enforced before the tool runs.
def delete_database(db_name: str) -> str:
...
safe_delete = guard.wrap_tool(delete_database)
safe_delete(db_name="production") # 🛡️ Blocked by tool_restriction policy
# PII is caught in tool arguments too
def send_email(to: str, body: str) -> str:
...
safe_send = guard.wrap_tool(send_email)
safe_send(to="john@example.com", body="Hi") # 🛡️ Blocked: PII detected
⚡ Full Async Support
Works with AsyncOpenAI and async tool functions — zero changes to your logic.
from openai import AsyncOpenAI
async with AgentGuard(policies=["pii", "content_filter"]) as guard:
client = AsyncOpenAI()
safe = guard.wrap_openai_async(client)
response = await safe.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello!"}],
)
# Async tools — auto-detected
async def fetch_data(url: str) -> str:
...
safe_fetch = guard.wrap_tool(fetch_data) # auto-detects async
result = await safe_fetch(url="https://api.example.com")
💰 Cost Tracking
Real-time spend tracking with per-model pricing for GPT-4o, GPT-4o-mini, Claude, Gemini, o1, o3-mini, and more.
report = guard.get_report()
# {
# 'total_cost_usd': 0.0234,
# 'total_tokens_in': 1500,
# 'total_tokens_out': 800,
# 'daily_cost_usd': 0.0234,
# 'run_cost_usd': 0.0120,
# 'policies_active': ['pii', 'content_filter', 'cost_limit']
# }
🎬 Audit Reader & Replay
The killer feature. Prove exactly what your agent did, step by step.
Python API
from agentguard import AuditReader
reader = AuditReader("audit.jsonl")
run = reader.get_run("run_abc123")
run.print_trace()
╔══════════════════════════════════════════════════════════╗
║ AGENTGUARD RUN TRACE ║
╠══════════════════════════════════════════════════════════╣
║ Run ID: run_abc123 ║
║ Events: 3 ║
║ Tokens: 1,500 in / 800 out ║
║ Cost: $0.0234 ║
║ Violations: None ║
╠══════════════════════════════════════════════════════════╣
║ Step 1 LLM OK
║ Model: gpt-4o
║ user: "Process the customer refund"
║ assistant: "I'll process that refund now."
║
║ Step 2 TOOL OK
║ Tool: process_refund
║ Args: {"order_id": "ORD-12345", "amount": 49.99}
║ Duration: 230ms
║
║ Step 3 LLM OK
║ Model: gpt-4o
║ assistant: "The refund of $49.99 has been processed."
╚══════════════════════════════════════════════════════════╝
CLI Tool
# List all runs with summary stats
agentguard --file audit.jsonl runs
# Step-by-step replay of any run
agentguard --file audit.jsonl replay <run_id>
agentguard --file audit.jsonl replay <run_id> --delay 0.5 # slow replay
# Show all policy violations (audit-ready)
agentguard --file audit.jsonl violations
# Dashboard — costs, models, tools, violations
agentguard --file audit.jsonl stats
# Search events by any content
agentguard --file audit.jsonl search "delete_database"
# Export for compliance reports
agentguard --file audit.jsonl export --format json -o report.json
agentguard --file audit.jsonl export --format csv -o audit.csv
# Live tail — watch events in real-time
agentguard --file audit.jsonl tail
🔌 Custom Policies
Build your own — just subclass Policy and implement evaluate().
from agentguard import Policy, PolicyResult, PolicyAction
from agentguard.core.events import LLMCallEvent
class NoProfanityPolicy(Policy):
name = "no_profanity"
supported_events = [LLMCallEvent]
def evaluate(self, event):
bad_words = ["damn", "hell"]
content = str(event.messages).lower()
if any(w in content for w in bad_words):
return PolicyResult(
action=PolicyAction.BLOCK,
policy_name=self.name,
reason="Profanity detected",
)
return PolicyResult(action=PolicyAction.ALLOW, policy_name=self.name)
guard = AgentGuard(policies=[NoProfanityPolicy(), "pii"])
🔔 Human-in-the-Loop Escalation
def on_escalation(event):
print(f"ALERT: {event.reason}")
# Send to Slack, PagerDuty, email, etc.
guard = AgentGuard(
policies=["pii", "content_filter"],
on_escalation=on_escalation, # supports async callbacks too
)
Run the Demo
python examples/basic_usage.py
Run Tests
pip install agentaudit-sdk[dev]
pytest tests/ -v
# 104 tests passing in <1 second
Architecture
Your App → AI Agent → 🛡️ AgentGuard SDK → Tool / LLM API
│
┌──────┴──────────┐
│ Interceptor │ ← before/after hooks
├─────────────────┤
│ Policy Engine │ ← PII, Cost, Content, Rate, Tool
├─────────────────┤
│ PII Detector │ ← Regex (pluggable to ML/Presidio)
├─────────────────┤
│ Cost Tracker │ ← Per-model pricing, run/daily/total
├─────────────────┤
│ Audit Logger │ ← Thread-safe, JSON-lines, rotation
├─────────────────┤
│ Audit Reader │ ← Query, filter, replay, CLI
└─────────────────┘
src/agentguard/
├── core/
│ ├── events.py # Pydantic event models (run_id grouping)
│ ├── interceptor.py # Central before/after hooks
│ └── guard.py # Main orchestrator (3-line API)
├── policies/
│ ├── base.py # Policy engine + event-type filtering
│ ├── pii_policy.py # PII blocking
│ ├── cost_policy.py # Budget enforcement
│ ├── tool_policy.py # Tool blocklist/allowlist
│ ├── rate_limit_policy.py # Sliding window rate limiter
│ └── content_policy.py # Prompt injection detection
├── detectors/
│ └── pii.py # Regex PII detector (pluggable Protocol)
├── tracking/
│ └── cost.py # Token & cost tracking
├── logging/
│ ├── audit.py # Thread-safe JSON-lines logger
│ └── reader.py # Audit reader + replay engine
├── integrations/
│ └── openai.py # Sync + Async OpenAI proxy
└── cli.py # CLI audit reader (7 commands)
Why AgentGuard?
| Problem | How AgentGuard Solves It |
|---|---|
| "Nobody knows what our agent is doing" | Every LLM call and tool use is logged with full context |
| "We can't trace agent failures" | Run-level audit trails with step-by-step replay |
| "Auditors want proof" | JSON-lines logs + CSV export mapped to compliance frameworks |
| "Humans verify 69% of AI decisions" | Policy guardrails let you reduce human review confidently |
| "Agents keep leaking PII" | Automatic PII detection and blocking on all inputs & outputs |
| "AI costs are unpredictable" | Per-run, daily, and total budget limits with real-time tracking |
| "Demo works, production doesn't" | The missing operating system — cost controls, guardrails, audit trails |
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentaudit_sdk-0.1.3.tar.gz.
File metadata
- Download URL: agentaudit_sdk-0.1.3.tar.gz
- Upload date:
- Size: 69.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5335ae8892bcf01841177a9f75dcdda5db701adad454470c6c0962f9f2ec3eae
|
|
| MD5 |
d021c8df350e5e01aa06a5712ae2f307
|
|
| BLAKE2b-256 |
1999c76cb20dea226b3d20160a7a80c913112ad3514ce18c4cadfb3e643e57e7
|
File details
Details for the file agentaudit_sdk-0.1.3-py3-none-any.whl.
File metadata
- Download URL: agentaudit_sdk-0.1.3-py3-none-any.whl
- Upload date:
- Size: 66.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5ad26bbdc11b7a1f53a9e66493c25bbc9366c111e0e12b993a3b51148b3e707
|
|
| MD5 |
04737c931a0e357fb60976df9f1209f1
|
|
| BLAKE2b-256 |
eed6a062144dbbc883446bfb0a67a6fc3ead1d2848013ebe36e412d76912888c
|