export_jobs
Extract job records in JSONL or JSON format for statistical analysis, including status, duration, and score to compute success rates and study failure modes.
Instructions
Export all job records as JSONL or JSON for statistical analysis. Each record includes id, status, repo_url, task (truncated to 500 chars), started_at, finished_at, exit_code, output_lines count, score, and duration_seconds. Use this to pull job traces, compute success rates, and study failure modes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | How many days back to export (default: 7) | |
| format | No | Output format: 'jsonl' (one record per line) or 'json' (array). Default: 'jsonl' | |
| status | No | Filter by status: 'done' | 'failed' | 'cancelled' | 'running' (optional) |