Developer Resources

Ship Governed AI Agents

Add runtime governance to any AI agent in under five minutes. Python & JavaScript SDKs, REST API, and framework-specific wrappers.

Five-Minute Quickstart

From zero to governed agent in four steps.

1

Create a Fleet

Sign up and create your first governance fleet. This gives you an API key and a workspace for your agents.

Create free account →
2

Install the SDK

Add the Prüfer SDK to your project. Available for Python (pip) and JavaScript (npm).

3

Register an Agent

Register your AI agent with your fleet. This creates a governance identity for runtime enforcement.

4

Enforce Governance

Wrap agent actions with governance checks. Prüfer evaluates each action against your policy rules in real time.

from prufer import PruferClient

client = PruferClient(
    api_key="fleet_YOUR_KEY",
    base_url="https://api.prufer.ai/api/v1"
)

# Check governance before any agent action
decision = client.check_action(
    agent_id="clinical-advisor",
    action="recommend_treatment",
    context={
        "patient_age": 72,
        "diagnosis": "hypertension",
        "proposed": "ACE inhibitor"
    }
)

if decision.allowed:
    # Proceed with the action
    result = agent.run(action)
else:
    # Handle block or escalation
    print(f"Blocked: {decision.reason}")

Framework Integrations

Drop-in governance for the most popular agent frameworks. Zero architecture changes.

🦜

LangChain

Python & JS callbacks

Vercel AI

Tool wrapper

👥

CrewAI

Step & task hooks

🤖

OpenAI

Assistants API

⚙️

AutoGen

AG2 hooks

🔀

HTTP Proxy

Any LLM call

🎯

Decorator

Universal wrap

Agent Registration

# Register an agent with your fleet
curl -X POST https://api.prufer.ai/v1/enforce/register \
  -H "X-Fleet-Key: fleet_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id": "clinical-advisor",
    "name": "Clinical Decision Support",
    "type": "healthcare",
    "metadata": {
      "model": "gpt-4o",
      "department": "cardiology"
    }
  }'

Ready to integrate?

Create a free fleet, get your API key, and start making governance checks in under five minutes.