Skip to content

Results

The results command family works on existing AgentV run workspaces and index.jsonl manifests. Use it after an eval run to inspect failures, validate manifests, export artifact layouts, or generate a shareable HTML report.

SubcommandPurpose
results reportGenerate a self-contained static HTML report from an existing run workspace
results exportMaterialize or normalize the artifact workspace structure for a manifest
results summaryPrint aggregate metrics for a run
results failuresShow only failing cases
results showDisplay case-level rows from a run workspace
results validateValidate that a workspace or manifest resolves correctly

The results report command turns an existing run workspace or index.jsonl manifest into a self-contained HTML report for sharing, inspection, and human review.

AgentV results report overview showing 11 tests across 2 eval files with pass, fail, pass rate, duration, and cost summary cards
Terminal window
agentv results report <run-workspace-or-index.jsonl>

Examples:

Terminal window
# Generate report.html next to the run manifest
agentv results report .agentv/results/runs/2026-03-14T10-32-00_claude
# Use an explicit output path
agentv results report .agentv/results/runs/2026-03-14T10-32-00_claude/index.jsonl \
--out ./reports/human-review.html

What it shows:

  • Summary stats — total tests, passed, failed, pass rate, duration, and cost
  • Eval file groups — test cases grouped by eval file with pass rate, test count, and duration
  • Expandable details — unified assertions with pass/fail indicators and type badges, collapsible input/output
  • Criteria column — shows the test prompt or description inline for quick scanning
AgentV results report showing an expanded failing test case with unified assertions, deterministic type badges, pass/fail indicators, evidence text, and collapsible input/output
OptionDescription
--out, -oOutput HTML file (defaults to <run-dir>/report.html)
--dir, -dWorking directory used to resolve the source path

Use results export when you need the artifact workspace layout itself rather than a rendered report.

Terminal window
agentv results export <run-workspace-or-index.jsonl> [--out <dir>]

This is useful when a manifest needs to be materialized into a predictable artifact tree for other tooling, review, or archiving.

For lightweight terminal workflows:

Terminal window
agentv results summary .agentv/results/runs/<timestamp>
agentv results failures .agentv/results/runs/<timestamp>
agentv results show .agentv/results/runs/<timestamp> --test-id my-case
agentv results validate .agentv/results/runs/<timestamp>

For a review-centric workflow built around these artifacts, see Human Review Checkpoint.