Ecosystem Verification
This guide provides the protocols for verifying that your AgentV environment is production-ready across all framework adapters and proprietary models.
🚦 Prerequisites
Section titled “🚦 Prerequisites”Environment Setup
Section titled “Environment Setup”Ensure the harness is installed in editable mode and all API keys are configured in your .env file.
pip install -e .Dependency Audit
Section titled “Dependency Audit”Use the doctor utility to perform a global health check of your dependencies and connection status.
agentv doctor🌎 Framework Verification (Adapters)
Section titled “🌎 Framework Verification (Adapters)”Verify that the harness can communicate with external frameworks using the appropriate protocols.
AG2 (formerly AutoGen)
Section titled “AG2 (formerly AutoGen)”- Protocol:
ag2 - Verification:
Terminal window agentv run --path scenarios/loan_scenario.json --protocol ag2
LangChain / LangGraph
Section titled “LangChain / LangGraph”- Protocol:
langgraph - Verification:
Terminal window agentv run --path scenarios/loan_scenario.json --protocol langgraph
CrewAI
Section titled “CrewAI”- Protocol:
crewai - Verification:
Terminal window agentv run --path scenarios/loan_scenario.json --protocol crewai
💎 Proprietary Model Verification
Section titled “💎 Proprietary Model Verification”Verify production readiness for frontier models using live API keys.
| Provider | Protocol | Verification Command |
|---|---|---|
| OpenAI | openai:// | agentv run --protocol openai --agent openai://gpt-5.4-mini |
| Anthropic | claude:// | agentv run --protocol claude --agent claude://claude-4.6-sonnet |
gemini:// | agentv run --protocol gemini --agent gemini://gemini-2.5-flash | |
| xAI | grok:// | agentv run --protocol grok --agent grok://grok-4.20-multi-agent |
⚖️ Judge & Calibration Audit
Section titled “⚖️ Judge & Calibration Audit”For industrial certification, we must verify that the LLM-Judge is aligned with human ground truth.
1. Rubric Routing
Section titled “1. Rubric Routing”Run a scenario with a specialized rubric and verify the correct prompt injection in the run.jsonl trace.
agentv evaluate --run-id <id>2. Calibration Command
Section titled “2. Calibration Command”Compare judge scores against human labels (if present in the trace).
agentv calibrate --run-id <id>The report will provide Mean Absolute Error (MAE) and Pearson Correlation for the judge.
✅ Production Readiness Checklist
Section titled “✅ Production Readiness Checklist”-
agentv doctorreturns all GREEN. - No
ImportErroron any ecosystem adapter. - API keys are correctly masked in log outputs.
- Results generated in
reports/include required framework metadata. - Verification Certificates (VCs) are signed with the project’s private key.