Side-by-side outputs from different AI models, deployed via GitHub Pages.
| Model | Path | Source |
|---|---|---|
| OpenClaw | /openclaw |
REVEAL |
| GPT-5.2 | /gpt-5.2 |
REVEAL 2 |
| Claude Code (Opus 4.6) | /claude-code |
REVEAL 3 |
| OpenCode Simple | /opencode |
REVEAL 4 |
| OpenCode Enhanced Frontend | /opencode-enhanced |
REVEAL 5 |
| Stitch UI | /stitch |
REVEAL 6 |
| Claude Design (Opus 4.7) | /claude-design |
REVEAL 7 |
- Drop the model's
index.htmlandstatic/folder into a new subdirectory:your-model-name/ ├── index.html └── static/ - Add an entry to the
modelsarray in the rootindex.html:{ name: "Your Model", path: "your-model-name", badge: "REVEAL 3", meta: "Short description" }
- Push and you're done.
# any static server works
npx serve .- All asset paths inside each subdirectory should be relative (
./static/...) not absolute (/static/...). - GitHub Pages is configured to serve from the
mainbranch root.