SDKs & API

Integrate in 5 Minutes. Govern Forever.

Four language SDKs, five framework adapters, and a zero-code proxy fallback. Choose the integration path that fits your stack.

bash
npm install @palveron/agent-shield # or pip install palveron-sdk

Language SDKs

First-Class SDKs for Every Stack

Type-safe clients with built-in retry, error handling, and trace metadata. Install, configure, and govern.

TypeScript
npm install @palveron/agent-shield
TypeScript
import { Palveron } from "@palveron/agent-shield"; const client = new Palveron({ apiKey: process.env.PALVERON_API_KEY }); const result = await client.verify({ prompt: userMessage, agent: "support-bot" });
Python
pip install palveron-sdk
Python
from palveron_sdk import PalveronClient client = PalveronClient( api_key=os.environ["PALVERON_API_KEY"] ) result = client.verify( prompt=user_message, agent="support-bot" )
Go
go get github.com/disruptivetrends/palveron-sdk
Go
client := palveron.NewClient( os.Getenv("PALVERON_API_KEY"), ) result, err := client.Verify(ctx, &palveron.VerifyRequest{ Prompt: userMessage, Agent: "support-bot", }, )
Java
implementation 'com.github.disruptivetrends:palveron-sdk:+'
Java
var client = PalveronClient.builder() .apiKey(System.getenv("PALVERON_API_KEY")) .build(); var result = client.verify( VerifyRequest.builder() .prompt(userMessage) .agent("support-bot") .build() );

Framework Adapters

Native Adapters for AI Frameworks

LangChain
Callback handler with automatic trace creation and policy evaluation.
CrewAI
Crew-level governance with per-agent policy assignment.
OpenAI Agents
Drop-in middleware for the OpenAI Agents SDK.
Microsoft AGT
AGT-compatible capability export via toAgtCapabilities().
OpenClaw / MCP
MCP governance package for agent-to-server connections.
No SDK needed? Use the zero-code proxy, just change your API URL.

Deployment

Your Infrastructure, Your Rules

Managed Cloud

Hosted in EU (Hetzner, Germany). SOC 2 ready infrastructure. Zero maintenance, automatic updates.

Docker Compose

Single-command deployment for development and small teams. Includes PostgreSQL and the gateway.

Helm Charts

Production-grade Kubernetes deployment with horizontal scaling, health checks, and configurable replicas.

Ship Governed AI Today

Install the SDK, add your API key, and every AI request is governed. Community tier is free forever.

4 language SDKs
5 framework adapters
Zero-code proxy fallback