RedCrown.aiRedCrown.ai Docs Open the app

Inspect runs and reports

List runs and open their ranked reports and receipts.

1. List

Get a list of your runs to find the one you want to inspect.

UI

Open Proofs in the main nav. All your runs appear as cards with the experiment name, date, winner, and a link to the ranked report.

CLI

Not available via the CLI. Use the app or MCP to list runs.

MCP

Call list_experiments to retrieve your runs:

{}

2. Open a report

The ranked report shows each candidate's quality score, cost, latency, and savings. Expand any candidate to read the per-item receipts.

UI

Click a run in Proofs to open the ranked report. Click any candidate row to expand the receipts drill-down, which shows the model's output and score for each input item.

CLI

Write the full receipts to a local file when you run an eval:

redcrown eval task.json --report-json out.json

Open out.json to inspect per-item outputs and scores.

MCP

Fetch a run summary with get_run or the full ranked report with get_report:

{
  "run_id": "..."
}

Last verified .