Skip to content

Ecosystem Verification

This guide provides the protocols for verifying that your AgentV environment is production-ready across all framework adapters and proprietary models.

Ensure the harness is installed in editable mode and all API keys are configured in your .env file.

Terminal window
pip install -e .

Use the doctor utility to perform a global health check of your dependencies and connection status.

Terminal window
agentv doctor

Verify that the harness can communicate with external frameworks using the appropriate protocols.

  • Protocol: ag2
  • Verification:
    Terminal window
    agentv run --path scenarios/loan_scenario.json --protocol ag2
  • Protocol: langgraph
  • Verification:
    Terminal window
    agentv run --path scenarios/loan_scenario.json --protocol langgraph
  • Protocol: crewai
  • Verification:
    Terminal window
    agentv run --path scenarios/loan_scenario.json --protocol crewai

Verify production readiness for frontier models using live API keys.

ProviderProtocolVerification Command
OpenAIopenai://agentv run --protocol openai --agent openai://gpt-5.4-mini
Anthropicclaude://agentv run --protocol claude --agent claude://claude-4.6-sonnet
Googlegemini://agentv run --protocol gemini --agent gemini://gemini-2.5-flash
xAIgrok://agentv run --protocol grok --agent grok://grok-4.20-multi-agent

For industrial certification, we must verify that the LLM-Judge is aligned with human ground truth.

Run a scenario with a specialized rubric and verify the correct prompt injection in the run.jsonl trace.

Terminal window
agentv evaluate --run-id <id>

Compare judge scores against human labels (if present in the trace).

Terminal window
agentv calibrate --run-id <id>

The report will provide Mean Absolute Error (MAE) and Pearson Correlation for the judge.


  • agentv doctor returns all GREEN.
  • No ImportError on 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.