Adaptive AI Agent Execution Layer for risk scoring, audit trails, and regulatory compliance
Project description
Vaara is the runtime evidence layer for AI Act compliance. Open source, no SaaS, no telemetry.
Vaara intercepts agent tool calls, scores each one with a conformal risk interval, and writes a hash-chained audit record. Online learning across five expert signals via Multiplicative Weight Update. Distribution-free conformal coverage on the score.
In practical terms: every agent action gets a confidence-bounded risk score with mathematical coverage guarantees, the scorer learns from its misses, and the audit record is tamper-evident. An external auditor can verify these properties without trusting your stack.
For broader agent governance (zero-trust identity, capability-based access control, multi-language SDKs) see Microsoft's Agent Governance Toolkit.
Install
pip install vaara
Python 3.10+. Zero runtime deps. Optional XGBoost classifier: pip install vaara[ml].
Quick start
from vaara.pipeline import InterceptionPipeline
pipeline = InterceptionPipeline()
result = pipeline.intercept(
agent_id="agent-007",
tool_name="fs.write_file",
parameters={"path": "/etc/service.yaml", "content": "..."},
agent_confidence=0.8,
)
if result.allowed:
pipeline.report_outcome(result.action_id, outcome_severity=0.0)
else:
print(result.reason)
report_outcome closes the loop. MWU reweights signals based on which ones predicted the outcome.
What evidence looks like
vaara compliance report --format json against a real audit trail produces an article-level evidence record an auditor can read directly. Status is reported honestly: articles without recorded events return evidence_insufficient, not a rubber-stamp.
{
"system_name": "Acme HR Assistant",
"overall_status": "evidence_insufficient",
"trail_integrity": {"size": 105, "chain_intact": true},
"articles": [
{"article": "Article 12(1)", "title": "Record-Keeping (Logging)",
"status": "evidence_sufficient", "strength": "strong", "evidence_count": 105},
{"article": "Article 9(2)(a)", "title": "Risk Identification and Analysis",
"status": "evidence_sufficient", "strength": "strong", "evidence_count": 35},
{"article": "Article 15(1)", "title": "Accuracy, Robustness and Cybersecurity",
"status": "evidence_insufficient", "strength": "absent", "evidence_count": 0}
]
}
The same data renders as a styled PDF for Notified Bodies (vaara compliance report --format pdf, requires pip install 'vaara[pdf]'), a static HTML dashboard (vaara compliance dashboard), or a Sigstore-signed regulator-handoff envelope (vaara trail export, optional ML-DSA-65 / FIPS 204 post-quantum signer via pip install 'vaara[pq]').
Per-article verdict drill-down (since v0.26.0). Each article in the report now carries two extra surfaces a reviewer can read without re-running the engine. verdict_inputs lists the threshold-vs-observed snapshot the engine compared against (minimum record count, staleness window, strong-strength bounds, future-timestamp and chain-integrity flags) plus a verdict_reasons list of human-readable rationale lines explaining why the status and strength landed where they did. contributing_events lists the most recent qualifying audit records the verdict sits on (record ID, action ID, ISO timestamp, agent, tool, and a filtered drill_down dict of just the data fields that fed the risk/decision/outcome: point estimate, conformal interval, decision, reason, outcome severity). The drill-down renders in every output format: JSON, markdown, narrative, PDF, and the HTML dashboard. An auditor reading the report can trace status → threshold delta → concrete event in one sitting.
Numbers
Concrete evidence the system performs at levels relevant to high-risk-use deployments. Each figure is reproducible from the public corpus or the bench harness in bench/.
- 5,955-entry adversarial corpus (3,422 attack across 8 categories, 2,533 benign)
- 97.1% attack recall on held-out distribution-shift split, threshold 0.55
- PAIR adaptive-attacker calibration: ASR 0/25 against Qwen2.5-32B
- vaara-bench-v1: 77-trace synthetic-corpus benchmark with frozen methodology, 100% soft TPR, 0% hard FPR
- 140 µs / 210 µs p99 inference latency, commodity CPU
- Distribution-free conformal coverage on the score
- MWU regret bound O(sqrt(T log N))
Framework integrations
Native adapters in src/vaara/integrations/ route the major Python agent frameworks through Vaara's pipeline. Each adapter intercepts tool calls via the framework's own callback or hook surface, scores them, gates them, and emits the same audit events as a direct pipeline.intercept() call. Frameworks are not hard dependencies (lazy import, duck typing), so the base pip install vaara keeps a clean dependency tree.
- LangChain.
VaaraCallbackHandlerslots intoconfig={"callbacks": [...]}and gates every tool invocation automatically.vaara_wrap_tool(tool, pipeline)is the per-tool variant for fine-grained control. - CrewAI.
VaaraCrewGovernancewraps a crew so every agent action passes through the same scoring and audit chain. - OpenAI Agents SDK.
VaaraToolGuardrailplusvaara_wrap_functionwrap function-tool calls before they execute. Compatible with the Responses API and the Agents-SDK tracing model. - MCP server.
vaara.integrations.mcp_serverexposes scoring, audit emission, and policy reload as MCP tools so any MCP-compatible agent can route through Vaara without a custom client. (For Vaara in front of an upstream MCP server, see the MCP proxy section below.)
All four framework adapters share the same in-process pipeline, so audit records hash-chain together regardless of which framework the action came through. Each adapter has its own docstring with the two integration patterns it supports.
Cloud guardrails as upstream signals
Three adapters route findings from AWS Bedrock Guardrails, Azure AI Content Safety, and GCP Model Armor into Vaara's audit trail and OVERT envelope with EU AI Act article tags. The cloud filter runs in the deployer's environment as an upstream signal. Vaara records the verdict, normalises 27 provider categories onto a shared vocabulary, and tags each finding against Art. 5, 10, 13, 15, 53, and the CSAM-specific obligation from the Digital Omnibus political agreement of May 2026.
- AWS Bedrock Guardrails.
vaara.integrations.bedrock_guardrails.BedrockGuardrailsAdapter. WrapsApplyGuardrailacross the five Bedrock policy buckets. - Azure AI Content Safety.
vaara.integrations.azure_content_safety.AzureContentSafetyAdapter. Wrapsanalyze_text, Prompt Shields, Protected Material, and Groundedness Detection. - GCP Model Armor.
vaara.integrations.gcp_model_armor.GcpModelArmorAdapter. Wrapssanitize_user_promptandsanitize_model_response.
Each adapter returns a ContentSafetyFinding the deployer routes into pipeline.intercept(context=finding.to_audit_context()). Cloud SDKs are optional extras: pip install 'vaara[bedrock]', pip install 'vaara[azure-content-safety]', pip install 'vaara[gcp-model-armor]'. The category-to-article mapping table lives in src/vaara/integrations/_content_safety_articles.py and is the value the adapters wrap. Article-level rationale is in COMPLIANCE.md.
OSS guardrails as upstream signals
Four adapters route findings from NVIDIA NeMo Guardrails, Guardrails AI, LLM Guard, and Rebuff into the same audit trail and OVERT envelope path as the v0.19.0 cloud adapters. The OSS guardrail runs in the deployer's environment as an upstream signal. Vaara records the verdict, normalises 41 OSS provider categories onto the same shared vocabulary, and tags each finding against Art. 5, 10, 13, 15, and 53.
- NVIDIA NeMo Guardrails.
vaara.integrations.nemo_guardrails.NemoGuardrailsAdapter. ParsesGenerationResponse.log.activated_railsacross input, dialog, output, and retrieval rail types. - Guardrails AI.
vaara.integrations.guardrails_ai.GuardrailsAIAdapter. ParsesValidationOutcome.validation_summariesfrom anyGuard.parseorGuard.validatecall. - LLM Guard.
vaara.integrations.llm_guard.LLMGuardAdapter. Wrapsscan_promptandscan_outputand parses the(sanitized, results_valid, results_score)triple. - Rebuff.
vaara.integrations.rebuff.RebuffAdapter. ParsesDetectResponseacross the heuristic, model, and vector injection-detection layers, plus the canary-word leak check on responses.
Each adapter returns a ContentSafetyFinding the deployer routes into pipeline.intercept(context=finding.to_audit_context()). OSS SDKs are optional extras: pip install 'vaara[nemo-guardrails]', pip install 'vaara[guardrails-ai]', pip install 'vaara[llm-guard]', pip install 'vaara[rebuff]'. The 41 new mapping rows extend the same table at src/vaara/integrations/_content_safety_articles.py. Article-level rationale is in COMPLIANCE.md.
HTTP API
The same scorer and audit trail are available over HTTP for non-Python agents and for control planes that prefer a network boundary. Install with the server extra:
pip install 'vaara[server]'
vaara serve --host 0.0.0.0 --port 8000
curl -sX POST http://localhost:8000/v1/score \
-H 'content-type: application/json' \
-d '{"tool_name":"tx.transfer","agent_id":"agent-007","base_risk_score":0.5}'
The wire contract is in docs/openapi.yaml. Vaara defines the interface. Control-plane and orchestration vendors call it. Integration recipes for adopters live under examples/recipes/. Operator endpoints include POST /v1/policy/reload for atomic hot policy swap (start with vaara serve --policy PATH to enable), and POST /v1/detect/injection and POST /v1/detect/pii as named buyer-visible detectors with matching CLI subcommands that exit non-zero on detection for CI gating.
Vaara's scorer can be run alongside external scorers via vaara.scorer.composition.ExternalScorer and vaara.scorer.composite.CompositeScorer. Any service that implements the /v1/score wire contract (NeMo Guardrails, another Vaara instance) can be composed. The composite preserves the strongest decision across members.
TypeScript client
The first-party TypeScript client lives at clients/ts and ships on npm as @vaara/client. Typed wrappers over every v1 endpoint, Node 18+, ESM, declarations shipped. JS/TS agents (LangChain.js, Vercel AI SDK, MCP, any Node service) can call Vaara without a Python sidecar.
npm install @vaara/client
import { VaaraClient } from "@vaara/client";
const vaara = new VaaraClient({ baseUrl: "http://localhost:8000" });
const r = await vaara.score({ tool_name: "tx.transfer", agent_id: "agent-007", base_risk_score: 0.6 });
if (r.decision === "deny") throw new Error("blocked");
MCP proxy (Vaara as a transparent governance layer)
vaara.integrations.mcp_proxy.VaaraMCPProxy sits between an MCP client (Claude Code, Cursor, any MCP-capable host) and an upstream MCP server. Every tools/call from the client routes through Vaara's interception pipeline before reaching the upstream. Allowed calls forward transparently and report the upstream outcome back to the scorer. Blocked calls return an MCP isError: true response with the block reason. The initialization handshake and notifications/* forward unchanged. tools/list, resources/list, resources/read, prompts/list, and prompts/get route through the operator perimeter described below before reaching the client or upstream.
One-line example in front of @sap/mdk-mcp-server (SAP's official Mobile Development Kit MCP server, on npm):
python -m vaara.integrations.mcp_proxy \
--upstream npx --upstream-arg -y --upstream-arg @sap/mdk-mcp-server \
--db ./mcp_audit.db
Point your MCP client at the proxy instead of the upstream. The audit chain captures every tool call without changing client or upstream behavior. Distinct from mcp_server, which exposes Vaara itself as an MCP server for agents that consult Vaara as a tool.
Operator-side tool filtering (since v0.22.0). The proxy accepts repeatable --allow-tool NAME and --deny-tool NAME flags. Filtered tools are dropped from tools/list responses before the client sees them and any matching tools/call is rejected at the proxy perimeter without contacting the upstream. Use this to hide write/delete tools (e.g. delete_file, merge_pull_request) when the upstream server exposes more capability than the deployment policy allows. Denylist wins on overlap with allowlist. No flags = passthrough.
Resources and prompts coverage (since v0.23.0). The same perimeter shape extends to MCP's other two primitives. --allow-resource URI / --deny-resource URI gate resources/list and resources/read. --allow-prompt NAME / --deny-prompt NAME gate prompts/list and prompts/get. Every allowed resources/read and prompts/get writes a request+decision audit pair to the hash chain so a regulator can reconstruct exactly which resources the agent read and which prompts it retrieved. Resource reads and prompt gets are read-oriented MCP surfaces. They do not run through the risk scorer. The operator perimeter is the gate, and the audit chain captures the evidence.
OVERT 1.0 envelopes per interaction (since v0.24.0). Off by default. When you pass --overt-signing-key KEY.pem, --overt-operator-key OPKEY.bin, and --overt-receipts-dir DIR/, the proxy writes one OVERT 1.0 Protocol Profile 1.0 Base Envelope (canonical CBOR, Ed25519, closed 9-field schema) per governed interaction into DIR/{nanosecond_timestamp}-{counter:010d}.cbor. Covers all four states: allowed tools/call, blocked tools/call, perimeter-filtered call, and perimeter-filtered resources/read / prompts/get. The arbiter public key is pinned alongside as pubkey.bin. Each envelope verifies offline under vaara overt verify against any conformant verifier. Three-step recipe:
Streaming notifications inside the boundary (since v0.25.0). Long-running upstream tools emit notifications/progress and notifications/message over the lifetime of a tools/call. The proxy now routes each notification through the same audit pair (request + decision) and, when OVERT is configured, emits a dedicated Base Envelope with action class mcp.notification.progress or mcp.notification.message. Progress events correlate to the originating call via the _meta.progressToken from the request, so a regulator reading the receipt directory can reconstruct what arrived between request and response. Notifications still forward to the client unchanged. Audit failures are logged and swallowed: observation never blocks streaming.
# 1. Generate an Ed25519 signing key (evaluation/demo; for production use a KMS or HSM, see docs/signing-keys.md).
vaara keygen --dev --out signing.pem
# 2. Mint an operator HMAC key (>= 16 raw bytes). Used for request_commitment per OVERT Annex B.4.
head -c 32 /dev/urandom > op.key
# 3. Run the proxy with OVERT emission turned on.
python -m vaara.integrations.mcp_proxy \
--upstream npx --upstream-arg -y --upstream-arg @sap/mdk-mcp-server \
--overt-signing-key signing.pem \
--overt-operator-key op.key \
--overt-receipts-dir ./overt_receipts
# Each interaction now produces a Provisional Receipt:
vaara overt verify ./overt_receipts/1779309684224332669-0000000001.cbor \
--pubkey-file ./overt_receipts/pubkey.bin
# → {"valid": true, "monotonic_counter": 1, ...}
non_content_metadata carries structural fields only (action class, tool/resource/prompt identifier, decision, reason, agent_id, action_id). The request content itself never leaves the operator environment. Only its HMAC-SHA256 commitment crosses the trust boundary. The monotonic counter advances strictly across the whole proxy process so gaps are detectable. Emission failure is logged and swallowed: attestation problems must not block legitimate upstream traffic.
Worked examples with real upstream servers:
examples/github-mcp-proxy-demo/. Vaara in front ofgithub/github-mcp-server(GitHub's official MCP server, MIT-licensed). End-to-end verified: real subprocess, 42 tools advertised, hash-chained audit trail recorded.examples/sap-mcp-proxy-demo/. Vaara in front of community SAP MCP servers (SAP/mdk-mcp-server,mario-andreschak/mcp-abap-abap-adt-api,lemaiwo/btp-sap-odata-to-mcp-server).
The proxy is MCP-protocol-level, not vendor-specific. The same three-step recipe applies to any stdio-capable MCP server (Microsoft Graph MCP, Salesforce MCP, ServiceNow MCP, cloud-provider MCP servers, Databricks MCP, and so on).
OVERT 1.0 attestation
OVERT 1.0 lets an external party (regulator, auditor, customer) verify that a runtime decision actually happened the way you say it did, without trusting your stack or reading your code. Vaara emits OVERT envelopes alongside its audit records.
Vaara implements the OVERT 1.0 (overt.is) Protocol Profile 1.0 Base Envelope. OVERT 1.0 is an open standard for runtime trust in AI systems, authored by Glacis Technologies and published 25 March 2026. Closed-schema 9-field structure at AAL-3 Phase 2 (Provisional Receipt), canonical CBOR (RFC 8949), Ed25519 signatures, HMAC-SHA256 keyed commitments, IEEE-754 float rejection.
pip install 'vaara[attestation]'
from vaara.attestation.overt import emit_base_envelope, make_request_commitment, encoder_binary_identity
envelope = emit_base_envelope(
signing_key=key,
request_commitment=make_request_commitment(payload, operator_key=op_key),
encoder_binary_identity=encoder_binary_identity(arbiter_version="vaara/0.26.0", policy_hash=ph),
non_content_metadata={"action_class": "tx.transfer", "decision": "escalate"},
monotonic_counter=42,
arbiter_instance_identifier=uuid_bytes,
)
Vaara operates as the Arbiter in OVERT terms. The reference Phase 3 IAP (vaara.attestation.iap) notary-signs the Provisional Receipt and anchors it in a transparency log. Production deployments can swap in sigstore Rekor or an equivalent independently-operated log at the same call sites. The OVERT S3P (MEA-2) emitter at vaara.attestation.s3p ships exact Clopper-Pearson confidence intervals (pure Python, no scipy) and a proposed Protocol Profile extension that reports aggregate statistics over per-action conformal prediction intervals alongside the standard binomial CI.
The vaara overt verify RECEIPT.cbor --pubkey-file PUB.bin CLI validates any canonical-CBOR Base Envelope against a supplied raw 32-byte Ed25519 public key. The verifier reads only the wire format and takes no dependency on Vaara's emitter, so any OVERT-conformant implementation can route its conformance check through it.
An experimental hardware TEE hook (vaara.attestation.tee) binds an OVERT envelope to an AMD SEV-SNP attestation report by placing SHA-512(canonical_cbor(envelope)) in the report's 64-byte REPORT_DATA field. The envelope schema is unchanged (closed per spec). The TEE report is a sibling artefact: a relying party checks the Ed25519 envelope signature and the ECDSA P-384 report signature independently. vaara tee parse and vaara tee verify expose the verifier as a CLI.
See COMPLIANCE.md "Position relative to open runtime-attestation standards" for the architectural framing and "OVERT 1.0 Part 3 (Agentic AI Controls) mapping" for the TOOL-, MCP-, MULTI-, CAP-, DISC-, HITL-, DRIFT-* control-by-control walk.
Where things live
| Path | Contents |
|---|---|
| docs/formal_specification.md | MWU regret bound, conformal coverage, security properties |
| COMPLIANCE.md | EU AI Act (Art. 9, 11 to 15, 61) and DORA (Art. 10, 12, 13) mapping, eval numbers, PAIR calibration |
| CHANGELOG.md | Version-by-version feature evolution |
| docs/signing-keys.md | Release signing and verification |
| SECURITY.md | Security policy and reporting |
| CONTRIBUTING.md | Contribution guidelines |
src/vaara/integrations/ |
LangChain, OpenAI Agents SDK, CrewAI, MCP, Bedrock, Azure, GCP |
src/vaara/audit/ |
Hash-chain trail, SQLite backend, append-only WAL |
src/vaara/policy/ |
YAML / JSON policy schema, vaara policy validate and vaara policy test |
src/vaara/sandbox/ |
Synthetic-trace cold-start calibration |
Article 14 runtime: why oversight of agentic AI has to be evidenced as action, not model is the position post on the EU Apply AI Alliance Futurium.
Vaara helps deployers assemble evidence for their own conformity work. It does not certify compliance or constitute legal advice. Deployers own their obligations under the EU AI Act and other applicable law.
License
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 vaara-0.27.0.tar.gz.
File metadata
- Download URL: vaara-0.27.0.tar.gz
- Upload date:
- Size: 519.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fbe07e91b79ee847d38f50f55b72d6592e02e54e501e2ba3b4036876d4b356d
|
|
| MD5 |
a1291ccee5639578771499ae1ca940ce
|
|
| BLAKE2b-256 |
1ade342b912eacb6754bdfe3fec49505f73ecdf56c608ce64b0d50d06700e87a
|
Provenance
The following attestation bundles were made for vaara-0.27.0.tar.gz:
Publisher:
release.yml on vaaraio/vaara
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vaara-0.27.0.tar.gz -
Subject digest:
3fbe07e91b79ee847d38f50f55b72d6592e02e54e501e2ba3b4036876d4b356d - Sigstore transparency entry: 1599172797
- Sigstore integration time:
-
Permalink:
vaaraio/vaara@cb34832622b133f9acf17adc9caa311a8cca67ed -
Branch / Tag:
refs/tags/v0.27.0 - Owner: https://github.com/vaaraio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@cb34832622b133f9acf17adc9caa311a8cca67ed -
Trigger Event:
push
-
Statement type:
File details
Details for the file vaara-0.27.0-py3-none-any.whl.
File metadata
- Download URL: vaara-0.27.0-py3-none-any.whl
- Upload date:
- Size: 459.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
231c2e3d7778a7569eb9c3106ec00eecd65ccb1f0bdc2ab5b827323e9ec9e557
|
|
| MD5 |
2ca067c0b4cc742cad65e3d3b99c7908
|
|
| BLAKE2b-256 |
3f045e467b1bba0c0fdced7e97a3256e3a3192d8a96b113881bcae80e51a9e9a
|
Provenance
The following attestation bundles were made for vaara-0.27.0-py3-none-any.whl:
Publisher:
release.yml on vaaraio/vaara
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vaara-0.27.0-py3-none-any.whl -
Subject digest:
231c2e3d7778a7569eb9c3106ec00eecd65ccb1f0bdc2ab5b827323e9ec9e557 - Sigstore transparency entry: 1599173006
- Sigstore integration time:
-
Permalink:
vaaraio/vaara@cb34832622b133f9acf17adc9caa311a8cca67ed -
Branch / Tag:
refs/tags/v0.27.0 - Owner: https://github.com/vaaraio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@cb34832622b133f9acf17adc9caa311a8cca67ed -
Trigger Event:
push
-
Statement type: