88% of enterprise AI agents fail to reach production. Not because the model is wrong. Because no one verified that the agent actually did the right thing.
AgentV sits inside the execution loop and verifies state parity, policy adherence, and business outcomes before your agent earns the right to act. Cryptographically signed traces (Ed25519). HIPAA/FINRA/GDPR compliance packs. CI/CD hard gating. NIST AI-100-1 aligned. Built for regulated industries.
[5,000+ OOTB scenarios] β’ [50+ verticals] β’ [Apache 2.0] β’ [Enterprise Edition available]
graph TD
classDef agent fill:#f9f9f9,stroke:#333,stroke-width:2px;
classDef os fill:#1B3B5F,stroke:#fff,stroke-width:2px,color:#fff;
classDef pass fill:#00d26a,stroke:#333,stroke-width:2px,color:#000;
classDef fail fill:#ff4b4b,stroke:#333,stroke-width:2px,color:#fff;
Agent["π€ Autonomous Agent"]:::agent
subgraph "AgentV Verification OS"
Sim["π World Shims (Isolated State)"]:::os
Tel["𧬠Behavioral DNA (Telemetry)"]:::os
Vault["π Ed25519 Trace Vault"]:::os
Judge["βοΈ Industrial Policy Judges"]:::os
end
Pass["π’ Verified (Cleared for Prod)"]:::pass
Fail["π΄ Hard Gated (Violation)"]:::fail
Agent -- "Proposes Action/Tool" --> Sim
Sim -- "Intercepts State Delta" --> Tel
Tel -- "Hashes Trace Evidence" --> Vault
Tel -- "Evaluates Adherence" --> Judge
Judge -- "100% Policy Parity" --> Pass
Judge -- "Anomalous Behavior" --> Fail
| Attribute | Specification |
|---|---|
| License | Apache License 2.0 |
| Status | π’ Production-Ready (NIST AI-100-1 Aligned) |
| Version | v1.7.3 (August 2026 Release) |
| Trust Model | Behavioral DNA & VC v3.0.0 |
| Architecture | Identity-Centric Core |
| Quick Links | Quickstart β’ AES v1.4 Spec β’ Security β’ Editions |
- π Environmental DNA: Immutable snapshots of the execution environmentβregistry state, tool versions, and resource availability to ensure deterministic state parity.
- 𧬠Behavioral DNA: High-granularity telemetry (Phase β Action β Step) mapping the agent's decision-making process for precise policy adjudication and drift analysis.
- π‘οΈ Forensic DNA: Cryptographic anchoring of the entire execution trace using Ed25519 signatures and SHA3-256 hashes, ensuring non-repudiable WORM logs for regulatory compliance.
- Mission
- Getting Started
- At a Glance
- Zero-Touch Core Architecture
- Integrated Visual Suite (Native GUI)
- Security and Governance
- Troubleshooting
- How to Contribute
- Licensing and Editions
Get from zero to evaluated in seconds:
pip install -e .
agentv quickstart- Result: Launches mock agent, executes a telecom scenario, and builds a report.
- Next Step:
agentv consolefor the visual dashboard.
Autonomous software must be provably trustworthy before it earns the right to act. AgentV is the open infrastructure that provides the evidence, not just whether your agent said the right thing, but whether it did the right thing, changed the right state, and followed the right policy.
Embark on a 4-Phase, 18-Milestone Hands-on Curriculum designed to take you from foundational agent discovery through zero-trust production governance concepts. This is a learn-by-doing short-story based roadmap for anyone building reliable agentic systems.
| Phase | Path to Mastery | Milestones |
|---|---|---|
| π’ Foundations | Discovery, Native Adapters, and Sandboxing. | Start Here |
| π‘ Scale | Batch Evaluation, Pack Management, and Mutation. | Go Intermediate |
| π΄ Intelligence | Auto-Translation, Multi-Agent, and DAG Loops. | Go Advanced |
| π£ Governance | Trace Replay, IJA Consensus, and HITL Overrides. | Become Expert |
π Launch the Master Syllabus to begin your journey.
- Python 3.12+
- pip
Important
The fastest way to see the harness in action - no API keys or LLM setup required:
# 1. Clone the repository
git clone https://github.com/najeed/ai-agent-eval-harness.git
cd ai-agent-eval-harness
# 2. Set up a virtual environment (Recommended)
python -m venv venv
venv\Scripts\activate # On Windows
source venv/bin/activate # On macOS/Linux
# 3. Install the package in editable mode
pip install -e .
# 4. Run the Deterministic Quickstart (CLI)
agentv quickstartWhat it does: Spawns a deterministic in-process mock agent, executes a telecom troubleshooting evaluation, and generates a rich HTML report in reports/. 100% offline-ready.
Tip
Prefer a visual experience? After running the quickstart, launch the Integrated Visual Suite to replay the trace interactively: agentv console. This includes the Visual AES Builder for zero-code scenario design. See the User Manual for details.
The harness is organized into the following key components:
-
/dataproc_engine: High-fidelity industrial data extraction engine (7 Sectors, Gold Standards). -
/industries: Evaluation assets (5,000+ starter scenarios) categorized by 50+ industries. -
/eval_runner: Modular Core Engine (Multi-turn loop, Sandbox, Metrics, Simulators, Mutator). -
/eval_runner/console: Flask-based REST API for the Integrated Visual Suite. -
/ui/visual-debugger: Premium React-based Visual Debugger & Dashboard. -
/examples: Sample drift traces and triage scenarios for rapid onboarding. -
/reports: Generated artifacts (JSONL, trajectories, HTML heatmaps). -
/runs: Local execution history (Flight Recorder logs). -
/spec/aes: Agent Eval Specification (Foundational) - Benchmark standard v1.4. -
/docs: Deep-dive guides, architecture, and API specifications. -
/tests: Comprehensive test suite (Unit, Integration, and Red-Teaming). -
/sample_agent: Reference implementation for benchmark testing. -
NIST AI-100-1 Alignment: Core verification logic developed following NIST AI RMF principles, featuring the Weighted Severity Model (WSM) for multi-dimensional scoring and forensic Environmental DNA snapshots.
-
State Parity Verification: NIST-aligned mechanism ensuring cryptographic alignment between the agent's internal state and the physical environment (via
initial_state). -
Regulatory Safety Floor: Prevents "safety-washing" by capping aggregate scores at 0.49 (Fail) if foundational Safety or Security dimensions are compromised.
-
Behavioral DNA Telemetry: High-granularity event bus (4-level: PHASE, SUBTASK, ACTION, STEP) providing a precise "genetic" map of agent decision-making.
-
Verification Certificate (VC) v3.0.0: Traces are signed via the Identity Registry (Ed25519) and backed by a Forensic Evidence Ledger that hashes sidecar artifacts to ensure end-to-end provenance.
The v1.7.3 August 2026 Release presents the AgentV industrial-grade Verification OS, featuring runtime micro-frontend module federation, dynamic navigation manifests, 100% mutation testing sentinel assurance, full test parallelization across 5,000+ scenarios, and independent cryptographic verification:
- π Dynamic Navigation Manifest & Runtime Module Federation (
/v2): The native visual console now dynamically ingestsGET /api/navmanifests from the backend and loads third-party/enterprise plugin tabs on demand via standard ESM dynamicimport()βzero build-time recompilation required. - π‘οΈ 100% Mutation Testing Sentinel Assurance: Full population mutation testing across
verifier.py,tool_sandbox.py, andbase.pyguarantees 100% kill rate (91 killed, 0 timeout, 0 survived) for bulletproof industrial verification, backed by a.mutation_testing.lockprocess mutex. - π¨ Visual Sidebar Badging & Dynamic Icon Resolver: Pluggable navigation items can declare custom badges (e.g.
LIVE,APM,CUSTOM), enterprise tier markers, role-based access restrictions (required_role), and Lucide icon keys. - π‘οΈ Enterprise Verification Assurance Suite: Full parallelization of the 5,040+ scenario corpus via
pytest-xdist, strict exception hygiene, and multi-version schema dispatch. Includes an Independent Cryptographic Oracle (IndependentTraceOracle) with Ed25519 & ML-DSA-65 (PQC) validation, a 7-stage verify-after-tampering matrix, and synchronized TOCTOU barrier race testing. - β‘ Performance SLA Gates & 1,000 Session Scaling: Enforces hard interception latency SLA gates (<5ms mean overhead) and validates 1,000 concurrent evaluation sessions with 100% unique run IDs and zero state leakage under contention.
- ποΈ The Integrated Visual Console (Native GUI): Central dashboard (
/v2) featuring a React Flow canvas scenario builder, live timeline log playback debugger, side-by-side state diff visualizers, async restart-resilient HITL review queues (hitl.db), and drag-and-drop PRD spec-to-eval translators. - π Thread-Safe Governance & SHA-3 Security Standard: Thread-safe differential
RunsCachedaemon with real-time SSE streaming, drag-and-drop ZIP compliance bundle validation, and standardized FIPS-approved SHA-3 hashing with Ed25519 trace signatures.
The harness now ships with a validated corpus of 5,000+ scenarios designed to test agents across various industry workflows and edge cases:
Comprehensive coverage for 50+ verticals including:
- Finance & Banking: Loan processing, fraud detection, and regulatory audits.
- Healthcare: PII handling, insurance reconciliation, and diagnostic workflows.
- Telecom & Energy: Network troubleshooting, grid optimization, and billing.
- Cross-Industry Negotiation: Scenarios where agents must bridge data and policy gaps between two distinct verticals (e.g., Legal & Healthcare).
- Ethical & Safety Guardrails: Hardened tests for PII leakage, prompt injection, and bias.
- Interactive Complexity: Multi-turn flows involving conflicting human-in-the-loop (HITL) requirements.
- Simulations: High-fidelity sector labs (e.g., Bank, EHR/HL7, CRM) for testing agents in realistic, isolated environments.
All scenarios are 100% compliant with the AES v1.4 Specification.
- Start your Agent: The framework includes a reference agent for testing.
python sample_agent/agent_app.py
- Set Endpoint: Point the harness to your agent's webhook.
set AGENT_API_URL=http://localhost:5001/execute_task # Windows export AGENT_API_URL=http://localhost:5001/execute_task # Mac/Linux
- Run Evaluation:
# Standard HTTP (default) # Using Scenario ID alias (Cataloged) agentv evaluate --path loan_risk # Using project-relative path (Ad-hoc) agentv evaluate --path industries/telecom # Local Subprocess (stdin/stdout) agentv evaluate --path my_scenarios/ --protocol local --agent-cmd "python my_agent.py" # Socket (TCP/Unix) agentv evaluate --path tests/scenarios --protocol socket --agent-socket "localhost:9000"
Note
Path Decoupling: The harness now supports ad-hoc evaluations anywhere on your filesystem. Metadata like industry is inferred from the file content or folder structure, defaulting to local and unclassified for external files.
The harness supports multiple ways to talk to your agent. Use the --protocol flag to select the adapter and --agent (or specialized flags) to specify the endpoint.
| Protocol | Description | Configuration Flag | Env Variable |
|---|---|---|---|
| HTTP | Standard REST API (POST) | --protocol http (default) |
AGENT_API_URL |
| SSE | Server-Sent Events | --protocol sse |
(None) |
| Local | Local process via stdin/stdout | --protocol local or --agent-cmd |
AGENT_LOCAL_CMD |
| Socket | TCP or Unix Domain Socket | --protocol socket or --agent-socket |
AGENT_SOCKET_ADDR |
| OpenAPI | OpenAPI spec (REST) | --protocol openapi |
(None) |
- Evaluation Specification (AES): Standardized YAML/Markdown benchmarks for agents.
- 20-Shim Enterprise Suite: Environment simulators for Git, API, Database, Knowledge Base, Support Desk, Social Media, Vector DB, CI/CD, IoT, Security, and more (Enterprise Edition supports high-fidelity versions).
- Schema-Driven Core Registry: Decoupled environmental state management using declarative manifests (
shim_resources.json) with Async Simulation Hardening for non-blocking non-linear evaluations. - PBAC & Operational Governance: Granular Permission-Based Access Control (v1.2.3) and Operational Throttling (
EVAL_TURN_THROTTLE) for regulated enterprise environments. - Zero-Touch Hot-Swap Architecture: Dynamically register and swap simulators via plugins without core code modifications.
- Benchmark Ecosystem: Native loaders for GAIA (HuggingFace Integration) and AssistantBench. Supports benchmark URI schemes (e.g.,
gaia://2023,assistantbench://v1) for zero-config execution. - Native Framework Adapters: Full industrial-grade support for LangChain, LangGraph, Microsoft AutoGen (via
ag2://), and CrewAI via a dynamic plugin-discovery system. - High-Fidelity Industry Metrics: Modular, pluggable evaluators for Defense (ROE, C2, Intelligence Fusion), Healthcare, and Finance. Features high-precision numerical extraction and domain-specific LLM rubrics.
- Tool Sandbox: Governance-controlled execution with full VFS-aware state parity verification and TOCTOU barrier race protection.
- AST Mutation Testing Sentinel: Surgical AST mutation testing pipeline enforcing >=90% kill rate (100% achieved) across verification modules.
- Integrated Visual Suite (
/v2): Unified React dashboard featuring dynamic navigation manifest ingestion (GET /api/nav), runtime micro-frontend module federation, live trace replay, and visual debugging. - Stratified Failure Taxonomy: Formal, Enum-based failure registry (NIST-aligned) for precise, audit-grade root-cause diagnostics.
- Semantic Bridge: Ingest production traces (
import-drift) and analyze failures (triage). - Judge Guarding: Model-based scoring with support for OpenAI, Gemini, Claude, and Ollama.
list: Faceted search filtering across 5,000+ industry scenarios via--search.lint: Automated quality scoring and AES compliance verification via--path.install <pack>: Rapid deployment of curated, industry-specific scenario bundles (e.g.,telecom-pack,rag-agent-pack).analyze <url>: Proactive agent repo scanning; auto-generates AES stubs by identifying tools and endpoints.ci generate: One-click scaffolding of GitHub Actions workflows for evaluation-on-PR.failures search: Intelligence-driven retrieval of edge cases from the global failure corpus.explain: AI-powered trace diagnostics (loops, timeouts, PII leaks) via--run-id <id>.certify: Generate a non-repudiable Verification Certificate (VC) for a specific run trace using--run-id.verify: Verify the cryptographic integrity of a run trace using autonomous artifact resolution via--run-id.gate: "Hard Gating" tool for CI/CD pipelines to enforce signature and hash matches via--run-id.auto-translate: Leverage local LLMs (via Ollama) to convert raw documents into executable AES scenarios.aes add-standard: Expand the global industrial registry with new standard definitions (ID, Name, Industry, Description).init --standard <id>: Rapidly scaffold a dedicated, industry-compliant evaluation environment for a specific standard (e.g.,init --standard ISO_20022).
and more (check CLI Reference for complete list) ...
- Scenario Editor: A visual interface for constructing real-world AES logic; saves production-ready JSON directly to the catalog.
- VS Code Extension: Run evaluations and visualize timelines directly within your IDE.
- Visual Debugger: Real-time trajectory playback with interactive state inspection (Live Engine Hook).
The harness is built on a decoupled, event-driven architecture that allows custom integrations to be hot-swapped without core modifications.
- EventEmitter Bus: Passive observation of every turn, tool call, and state change.
- π§© Pluggable Judge Layer: Configurable model-based scoring with support for OpenAI, Gemini, Claude, and Ollama.
- π₯ High-Fidelity Metrics Framework: Decoupled, category-based evaluators (Accuracy, Planning, Defense, Technical) with extensible registration.
- Industry-Standard Rubrics: Specialized evaluators for Clinical Safety, Fiduciary Accuracy, Strategic Planning, and Causal Inference.
- Native HITL Support: built-in pausing for human intervention via the
humanadapter. - Advanced Discovery: Plugin-driven registry for third-party agent adapters (LangGraph, CrewAI, AutoGen, Grok).
- Pluggable World Shims: Register custom environment simulators through the
on_register_simulatorshook. - Pluggable Console & GUI Extensions: Inject custom React views, dynamic navigation manifests, and REST endpoints via the
on_register_console_routeshook.
The repository also features a standalone extraction engine designed for high-fidelity data acquisition:
- Sector Coverage: Finance, Healthcare, Energy, Telecom, Ecommerce, Agriculture, and Transportation.
- Zero-Mock Integrity: Automated fallback to high-fidelity simulations when live APIs are unavailable, maintaining 100% data availability.
Beyond the advanced suite, the harness provides a robust toolkit for professional evaluation:
doctor: Environment health checker.report: Rich HTML reporting with interactive Mermaid trajectories via--path.record&playground: Interaction capture and REPL experimentation for rapid prototyping.spec-to-eval: Convert Markdown PRDs/Specs into executable JSON scenarios. Supports--fill-defaultsto rapidly generate lint-compliant stubs.scenario generate: Interactive scaffolding for manual test authoring.mutate: Adversarial scenario generator (typos, injections, ambiguity).import-drift: Convert production logs into regression test cases.
The harness includes a unified React-powered SPA (/v2) that simplifies management of scenarios, runs, and visual debugging across all industries.
Key Feature Hubs:
- Dynamic Navigation & Micro-Frontends: Dynamic manifest ingestion (
GET /api/nav) and zero-recompilation runtime module federation via standard ESMimport(). - Scenario Explorer: Browse the catalog with faceted filters, global search, and real-time Quality Badges (Lint scores).
- Visual AES Builder: Construction of complex agentic evaluation sequences using a drag-and-drop node logicβoutputs production-ready JSON.
- Reports & Traces Hub: Historical execution timeline with detailed analysis and instant "View Report" navigation.
- Interactive Visual Debugger: Real-time trajectory playback, state inspection, and trace export (JSON) for regression testing.
- Documentation Hub: Categorized access to all Markdown guides, architectural diagrams, and API references.
- Sidebar Badging & Role Gating: Support for status badges (
LIVE,APM,CUSTOM), enterprise tier chips, and granular RBAC role gating.
Quick Launch:
agentv consoleAccess via browser at http://localhost:5000. The console features an adaptive, premium dark-mode UI with high-density data visualizations.
python -m pytestAll configurable parameters are centralized in eval_runner/config.py. You can override any setting via environment variables.
| Variable | Default | Description |
|---|---|---|
AGENT_API_URL |
http://localhost:5001/execute_task |
Agent entry point URL (HTTP) |
EVAL_MAX_TURNS |
10 |
Max conversation turns per task |
MAX_ENGINE_ATTEMPTS |
50 |
Security cap on evaluation attempts |
JUDGE_PROVIDER |
ollama |
LLM Judge provider (openai, anthropic, gemini, ollama, grok) |
JUDGE_MODEL |
(None) | Specific model for the judge |
LUNA_JUDGE_TEMPERATURE |
0.0 |
Temperature for judge generation |
OLLAMA_HOST |
http://localhost:11434 |
Local Ollama host URL |
OLLAMA_MODEL |
llama4 |
Default Ollama model |
OPENAI_API_KEY |
(None) | API key for OpenAI provider |
ANTHROPIC_API_KEY |
(None) | API key for Anthropic/Claude provider |
GOOGLE_API_KEY |
(None) | API key for Google/Gemini provider |
XAI_API_KEY |
(None) | API key for xAI/Grok provider |
DASHBOARD_API_KEY |
(None) | Mandatory key for Visual Debugger & REST API security |
EVAL_TURN_THROTTLE |
0.0 |
Artificial delay (seconds) between agent turns |
DEFAULT_ADAPTER_TIMEOUT |
30 |
Network timeout for agent adapters |
PLUGIN_TIMEOUT |
5.0 |
Execution timeout for plugin hooks |
REPORTS_DIR |
reports |
Base directory for generated reports |
... and more.
The platform is built with a Secure-by-Design philosophy, complying with enterprise-grade audit standards.
- PII/Secret Redaction: Automatic, recursive scanning and redaction of JWTs, AWS keys, and PII from all event logs.
- Secure Handoff Architecture: JWT-based authentication for between the core console and enterprise plugins.
- Tool Sandboxing: Path traversal protection and shell-character neutralization for all tool executions.
- WORM Logs: Write-Once-Read-Many immutable flight recorder traces (
run.jsonl). - Audit Points: 100% compliance with the 8-point Enterprise Security Audit (DoS caps, Fork Bomb prevention, RCE guards).
- Mandatory Authentication: Protection of all console and bridge routes via the
DASHBOARD_API_KEY. See the Security and Authentication Guide for generation and configuration instructions.
AgentV employs a Strict Industrial Vault methodology to protect run integrity:
- Individual Vaults: By default, each execution is isolated in its own directory (
runs/<run_id>/run.jsonl). - Master Log: A consolidated flight recorder at
runs/run.jsonltracks all system turns for aggregate analysis. - Rotation: The built-in rotation mechanism manages entire Vault Directories, purging historical subdirectories to maintain storage efficiency while preserving the most recent forensic artifacts. It is recommended to periodically clean up this directory via
agentv cleanup-runs.
ConnectionRefusedError: The harness cannot reach the agent. EnsureAGENT_API_URLis set correctly and the agent API is running.PluginTimeoutError: A registered plugin took too long to execute a hook. Check your plugin logic or increase the timeout.Invalid JSON Error (LLM): Theauto-translatecommand expects strict JSON. Ensure your local Ollama model (e.g.,llama4) is running and capable of JSON mode.docker: command not found: You need to install Docker if you intend to use Lab Mode.
For researchers needing full isolation or enterprise-grade local dashboards, we provide a containerized stack.
- Docker & Docker Compose:
- Windows/Mac: Install Docker Desktop.
- Linux: Install Docker Engine and Docker Compose.
docker compose up --buildThis orchestrates the Flask backend, the React frontend, and the Streamlit analytics dashboard in a secure, isolated network.
If you cannot install Docker, run these 3 commands in separate terminals:
python sample_agent/agent_app.pyagentv consolestreamlit run dashboard/app.py(requirespip install streamlit)
This is a community-driven project, and we welcome contributions! Please see our CONTRIBUTING.md file for detailed guidelines on how to add new industries, scenarios, or improve the engine.
Here are ways to get involved:
- β Star this repository
- π Report bugs
- π‘ Suggest features
- π Improve documentation
- π Good first issues
- π§ͺ Add test scenarios
- βοΈ Zero-CLA: We use the DCO (Developer Certificate of Origin). Just
git commit -s. - π Contribute new industries
- π― Create evaluation scenarios
Thanks to all our contributors! π
This project follows an Open Core model. The open-source capabilities provide a robust verification foundation, while the Enterprise Edition delivers the necessary security, governance, and audit-grade intelligence required for regulated deployments.
| Feature Module | Community Edition (OSS) | Enterprise Edition |
|---|---|---|
| Core Architecture | β Eval Engine, Hooks, JSON Schemas | β Enterprise Service Bus Integration |
| Industry Benchmark Set | β 5,000+ Starter Scenarios | β Prioritized Scenario Updates |
| Reliability Metrics | β
pass@k multi-attempt scoring |
β Persistent Leaderboards & Consensus |
| Scenario Mutations | πΆ Basic (Typos & Ambiguity) | β Adversarial Fuzzing & Prompt Injections |
| Execution Security | πΆ Basic Path/Shell Gating | β Context Payload Caps & Overflow Guards |
| Privacy Protections | β No | β Automatic PII Scanning & Redaction |
| Simulation | πΆ Real API required | β High-Fidelity Labs (Bank, EHR/HL7, CRM) |
| Compliance Suites | β No | β Production-Ready (HIPAA, FINRA, GDPR, PCI) |
| Observability | πΆ Terminal output | β OTEL Drift Gauges & Dashboard Feed |
| Defensibility Governance | β No | β WORM Audit Logs & Chained Integrity |
| Integrity Checks | β Ed25519 Trace Validation | β AES Scenario Merkle Sync (Root Verify) |
| Visual Debugger & GUI | β Local React Native App | β Enterprise Dashboard & Secure Handoff |
| Reproduction Workflow | πΆ JSONL Only | β Interactive Flight Recorder & Jupyter Repro |
| Parallel Engine | πΆ Sequential only | β Ray/Local JobQueue Distributed Runs |
| Interactive Triage | πΆ Heuristic only | β Multi-user Sync & Human Annotation |
| Advanced Sandbox | πΆ Path/Shell Gating | β Hardened Docker Isolation & Red-Team Probes |
| Auth & Governance | πΆ Basic Auth | β OIDC SSO, SCIM provisioning, PBAC, Managed Leaderboards |
Legend: β Full Capability β’ πΆ Basic/OSS Only β’ β Enterprise Only
Showcase your agent's rigorous reliability by adding the official Works with AgentV badge to your repository to show that it has been evaluated by the AgentV framework.
You can use the Shields.io service to generate a consistent badge for your project:
[](https://github.com/najeed/ai-agent-eval-harness)Alternatively, link directly to our high-fidelity SVG asset:
[](https://github.com/najeed/ai-agent-eval-harness)Ready for production-grade verification? The Enterprise Edition delivers WORM audit logs, OIDC SSO, PBAC, HIPAA/FINRA/GDPR compliance packs, and Docker-sandboxed isolation, everything regulated industries need before autonomous agents earn the right to act.
π Book a 30-minute call: AgentVOS.ai
The core of this project is licensed under the Apache License 2.0. See the LICENSE file for details.