Tier 01 — Developers · Open-Core · Free

Ship AI Governance
in Two Lines of Code.

The Vantio Developer SDK is the fastest way to add application-layer AI telemetry to your stack. Install via npm or pip. Wrap your agent calls. Start collecting governance events immediately — 10,000 events per month, free, forever.

$0/mo
Free forever
10K
Events / month
<0.3ms
SDK overhead
Installation

Two Lines. Any Stack.

TypeScript / Node.js
npm
npm install @vantio/sdk
// Before — unshielded const output = await agent.run(prompt); // After — governed import { shield } from "@vantio/sdk"; const output = await shield(() => agent.run(prompt));
Python
PyPI
pip install vantio-sdk
from vantio import shield # Decorator pattern — zero refactoring @shield async def run_agent(prompt: str): return await agent.run(prompt)
Environment Configuration
# .env VANTIO_API_KEY=vtk_live_••••••••••••••••

Retrieve your Cryptographic Trace ID from the Oracle Dashboard. It is HMAC-signed to your account and scoped to your telemetry namespace.

Capabilities

What the SDK Does

One-Line NPM / PyPI Install

Distributed via the official npm registry and PyPI. Inject application-layer telemetry into any Node.js or Python AI agent stack in seconds — no kernel access, no infrastructure changes required.

Real-Time Telemetry Stream

Every `shield()` call emits a structured telemetry event: model ID, prompt hash, decision verdict, and latency. Events stream to the Oracle UI within 50ms of execution.

Framework-Agnostic Wrapping

Works with LangChain, AutoGen, CrewAI, AWS Bedrock Agents, and any raw OpenAI/Anthropic API call. The decorator and wrapper patterns require zero changes to your existing agent logic.

Structured Governance Events

Each event is JSON-serialized, HMAC-signed with your Cryptographic Trace ID, and posted to the Vantio ingestion endpoint. Your 10,000 free-tier events/month are cryptographically receipted in the Oracle ledger.

Sub-Millisecond SDK Overhead

The `shield()` wrapper adds <0.3ms overhead in the hot path. Telemetry emission is fully async — your agent latency is unaffected. Production-safe from day one.

Open-Core & Auditable

The SDK is MIT-licensed and open-source on GitHub. Every line of telemetry collection code is auditable by your security team before deployment.

Supported Frameworks

LangChain
AutoGen
CrewAI
Bedrock Agents
OpenAI SDK
Anthropic SDK
Technical Disclaimer — Scope of Coverage

Ring-3 application-layer visibility does not equal Ring-0 OS-level enforcement. The Developer SDK operates entirely in user-space (Ring-3). It wraps application-layer function calls and emits telemetry events. It does not intercept syscalls, attach to kernel LSM hooks, or enforce governance decisions at the kernel level.

Community SLA. No uptime guarantee. For Ring-0 kernel enforcement, see the Enterprise tier. For managed proxy-layer blocking, see the PRO / SMB tier.