Execution-backed PR verification.
Vergo is a side-agent CI product: it does not just review code, it reproduces the PR environment, executes verification plans, and posts evidence-rich reports back to GitHub.
AI code review tools are great at static review. They are weaker at proving a PR works in realistic runtime conditions.
Vergo fills that gap by:
- generating a reproducible verification plan per PR
- executing checks in isolated sandboxes
- publishing pass/fail + artifacts + confidence score
- GitHub App receives PR event or
/verifycommand. - Planner builds runbook from PR diff + repo context + env requirements.
- Runner executes plan in sandbox (tests, API checks, smoke checks).
- Reporter posts evidence comment + check-run status.
src/app/page.tsx— marketing landing pagesrc/app/sign-in/page.tsx— sign-in placeholdersrc/app/app/page.tsx— dashboard mock.vergo.example.yml— sample per-repo verification config
- Vergo (chosen) — verify + go
- Rivet
- Proofly
- Shipfox
- Runmark
npm install
npm run dev- Implement GitHub App auth and install flow
- Wire
/verify,/verify quick,/verify plancommand handling - Connect planner (
pr-repro-skill) as backend service - Add sandbox runner and artifact storage
- Post PR comments + check-run statuses from real runs