https://github.com/fullstop000/ignis-bench-reports
Static-hosted per-run HTML reports for ignis agent-benchmark runs.
https://github.com/fullstop000/ignis-bench-reports
Last synced: about 1 month ago
JSON representation
Static-hosted per-run HTML reports for ignis agent-benchmark runs.
- Host: GitHub
- URL: https://github.com/fullstop000/ignis-bench-reports
- Owner: Fullstop000
- Created: 2026-06-02T06:23:48.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-11T17:23:51.000Z (about 1 month ago)
- Last Synced: 2026-06-11T19:14:33.970Z (about 1 month ago)
- Language: HTML
- Homepage: https://ignis-bench-reports.vercel.app
- Size: 27.3 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ignis · benchmark reports
Static-hosted per-run HTML reports for [ignis](https://github.com/Fullstop000/ignis)
against agent benchmarks (Terminal-Bench 2.x today, others later).
The canonical history lives in the main repo's
[`benchmarks/RESULTS.md`](https://github.com/Fullstop000/ignis/blob/master/benchmarks/RESULTS.md).
Each row links here for the per-trial drill-in. This repo is just the static
host — no scripts, no run output, just rendered HTML.
## Layout
```
.
├── index.html # landing page with the run list
├── reports/ # one HTML per run; filename matches the history/ CSV stem
│ └── tb21-minimax-m3-20260602.html
└── README.md
```
## Adding a new run
1. Generate the HTML in the main repo:
```bash
cd benchmarks/terminal-bench
python3 scripts/generate_report.py runs/ -o /tmp/.html
```
2. Copy `.html` to `reports/` here, mirroring the CSV name committed
under `benchmarks/terminal-bench/history/` in the main repo.
3. Add one `` to `index.html` (newest first) and update the row in
`benchmarks/RESULTS.md` to link the new HTML.
4. Push — Vercel auto-deploys.
## Hosting
Deployed on Vercel as a static site (no build step, no framework). The
`vercel.json` enables `cleanUrls` so reports work as `/reports/`
without the `.html` suffix in the URL.
## License
Apache-2.0, same as the main repo.