Agentic Execution Protocol™ (AEP™) - trust & safety infrastructure for AI agents
Project description
aceteam-aep
AceTeam™ trust & safety infrastructure for AI agents. The Agentic Execution Protocol™ (AEP™) adds cost tracking, safety detection, and enforcement to any LLM-powered tool — zero code changes required.
Installation
pip install aceteam-aep[all] # Everything (recommended)
pip install aceteam-aep[safety,proxy] # Safety detectors + proxy
pip install aceteam-aep # Core only (cost tracking + regex safety)
Quick Start — Make OpenClaw (or any agent) Safe
No code changes. Just run the proxy and point your agent at it:
# Terminal 1: Start the AEP safety proxy
aceteam-aep proxy --port 8080
# Terminal 2: Run OpenClaw through the proxy
export OPENAI_BASE_URL=http://localhost:8080/v1
export OPENAI_API_KEY=sk-your-key
openclaw run "analyze these financial statements"
Open http://localhost:8080/aep/ — the dashboard shows every LLM call flowing through in real-time: cost, safety signals, and enforcement decisions.
The proxy intercepts both directions:
- Incoming requests — blocks dangerous prompts before they reach the API
- Outgoing responses — blocks PII, toxic content, and cost anomalies before the agent sees them
Works with OpenClaw, LangChain, CrewAI, curl, or any tool that calls the OpenAI API.
What the Proxy Sees
The proxy is a reverse proxy (man-in-the-middle by design). It reads the full request AND full response. It can block in either direction.
Your Agent
│
├─── REQUEST ──────────────────────────────┐
│ messages: [user prompt, tool results] │
│ ▼
│ ┌─────────────┐
│ │ AEP Proxy │
│ │ │
│ │ ✓ Input │──── if dangerous ──→ BLOCK (never reaches API)
│ │ text │
│ │ │──── if safe ──→ forward to OpenAI
│ │ │
│ │ ✓ Output │──── if PII/toxic ──→ BLOCK (agent never sees it)
│ │ text │
│ │ │──── if safe ──→ return to agent
│ │ ✓ Cost │
│ │ ✓ Tool calls│
│ └─────────────┘
│ │
◄─── RESPONSE ─────────────────────────────┘
assistant message, token usage
| Data | Proxy Sees It? | Details |
|---|---|---|
| User messages (input text) | Yes | Full message array from request body |
| LLM response (output text) | Yes | Full response including all choices |
| Tool call requests | Yes | What functions the LLM asks to call |
| Tool call results | Yes | Included in next request's messages |
| Token usage + cost | Yes | From response usage field |
| Agent actions between calls | No | File writes, code execution, browser actions happen inside the agent, not via the LLM API |
| Application context | No | Who is calling, data classification — unless sent via X-AEP-* headers |
The proxy sees every word going to and from the LLM. It cannot see what the agent does between LLM calls. For that, use the SDK (Layer 2).
Two Layers: Proxy + SDK
Think WireGuard + Tailscale. WireGuard is a minimal wire protocol. Tailscale adds identity and management on top. Same here:
Layer 1 — AEP Proxy (free, zero code changes)
- Sees all LLM traffic (input, output, tool calls, cost)
- Runs safety detectors, enforces PASS/FLAG/BLOCK
- Dashboard at
/aep/ - Works with any language, any framework
Layer 2 — AEP SDK (application-level context)
- Adds identity:
X-AEP-Entity: org:acme - Adds governance:
X-AEP-Classification: confidential - Adds provenance: citation chains, source tracking
- Via HTTP headers through the proxy, or via Python
wrap()
Layer 1 gets developers in the door. Layer 2 is what enterprises need for compliance.
Python SDK — Wrap Your Existing Client
import openai
from aceteam_aep import wrap
client = wrap(openai.OpenAI())
# Use exactly as before — AEP intercepts transparently
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello"}],
)
# AEP tracks everything
print(client.aep.cost_usd) # $0.000150
print(client.aep.enforcement.action) # "pass"
print(client.aep.safety_signals) # []
client.aep.print_summary() # Colored CLI output
Works with OpenAI, Anthropic, and any OpenAI-compatible client. Sync and async.
import anthropic
from aceteam_aep import wrap
client = wrap(anthropic.Anthropic())
# Same API — client.aep.cost_usd, client.aep.safety_signals, etc.
Safety Signals
Every LLM call is evaluated by pluggable safety detectors:
| Detector | What It Catches | Model |
|---|---|---|
| PII | SSN, email, phone, credit cards in output | iiiorg/piiranha-v1-detect-personal-information (~110M) |
| Content Safety | Toxic, harmful, or unsafe content | s-nlp/roberta_toxicity_classifier (~125M) |
| Cost Anomaly | Spend spikes >5x session average | Statistical (no model) |
Models lazy-load on first use, run on CPU. Falls back to regex if transformers not installed.
Enforcement: PASS / FLAG / BLOCK
Every call produces an enforcement decision based on signal severity:
- PASS — No signals or low severity. Safe to proceed.
- FLAG — Medium severity. Route to human review.
- BLOCK — High severity (PII, toxic content). Prevent delivery.
client = wrap(openai.OpenAI())
response = client.chat.completions.create(...)
match client.aep.enforcement.action:
case "pass":
return response
case "flag":
queue_for_review(response)
case "block":
return reject(client.aep.enforcement.reason)
Custom Detectors
from aceteam_aep import wrap
from aceteam_aep.safety.base import SafetySignal
class MyDetector:
name = "my_detector"
def check(self, *, input_text, output_text, call_id, **kwargs):
if "secret" in output_text.lower():
return [SafetySignal(
signal_type="data_leak",
severity="high",
call_id=call_id,
detail="Potential secret in output",
)]
return []
client = wrap(openai.OpenAI(), detectors=[MyDetector()])
Dashboard
client.aep.serve_dashboard() # http://localhost:8899
Dark-themed local web UI showing cost, safety status, signal timeline, and call history. Auto-refreshes every 2 seconds.
CLI Output
client.aep.print_summary()
──────────────────────────────────────────────────
AEP Session Summary
──────────────────────────────────────────────────
Calls: 5
Cost: $0.004200
Safety: PASS
──────────────────────────────────────────────────
Agent Loop (Advanced)
For building agents from scratch with full AEP compliance:
from aceteam_aep import create_client, run_agent_loop, ChatMessage, tool
client = create_client("gpt-4o", api_key="sk-...")
@tool
def search(query: str) -> str:
"""Search for information."""
return f"Results for: {query}"
result = await run_agent_loop(
client,
[ChatMessage(role="user", content="Search for AEP protocol")],
tools=[search],
system_prompt="You are a helpful assistant.",
)
Workshop Guide
Step-by-step setup in 5 minutes — from install to safety signals firing:
Covers: proxy setup, routing agents (Python/OpenClaw/curl), triggering safety signals, governance headers, custom detectors. Works for workshops, onboarding, or self-guided evaluation.
Providers
- OpenAI (GPT-4o, GPT-5, o1, o3)
- Anthropic (Claude Opus, Sonnet, Haiku)
- Google (Gemini 2.5, 3.0)
- xAI (Grok)
- Ollama (local models)
- OpenAI-compatible (SambaNova, TheAgentic, DeepSeek)
Trademarks
"Agentic Execution Protocol," "AEP," and "AceTeam" are trademarks of AceTeam. The software is licensed under Apache 2.0. The trademark is not included in the license grant — you may not use these names to endorse or promote derivative works without written permission.
Project details
Release history Release notifications | RSS feed
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 aceteam_aep-0.5.0.tar.gz.
File metadata
- Download URL: aceteam_aep-0.5.0.tar.gz
- Upload date:
- Size: 175.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6fa661bb3f11d3b817d5d83f566843fee108b45712d5136260c3962018a99ad
|
|
| MD5 |
0e591d3add1fa47bb93d9d25837e3a32
|
|
| BLAKE2b-256 |
a404696c0eb82bba78c73e09e03d3c829ab31cca180c909787d41d4fce821d9b
|
File details
Details for the file aceteam_aep-0.5.0-py3-none-any.whl.
File metadata
- Download URL: aceteam_aep-0.5.0-py3-none-any.whl
- Upload date:
- Size: 70.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5dbf289497f4c7fcb7bda379921e5901aa91c994e1c4e45cd903635385fc13d6
|
|
| MD5 |
d00e22a3d825cbdd2612665a17268d9a
|
|
| BLAKE2b-256 |
08ae6230621a3fbc01322726daa05526e8b498a25ec9ff17c17a51a9d4d4ec8c
|