Install your GitHub App
Deploy OpenBugbot in your own Cloudflare account, then install your GitHub App on the repositories you want it to review.
OpenBugbot is a GitHub code-review tool you run yourself. It reviews non-draft pull requests with Codex, double-checks potential issues, and leaves focused comments where they matter.
Bug found
The function returns the same total for one item and two. Use the quantity when calculating the total.
function total(price, quantity) {- return price;+ return price * quantity;}OpenBugbot has one shared review configuration, not a dashboard of per-repository prompts. Change its prompts, model, reasoning level, and limits in your self-hosted deployment when you want to change how it reviews every installed repository.
Deploy OpenBugbot in your own Cloudflare account, then install your GitHub App on the repositories you want it to review.
A non-draft pull request sends a GitHub event to your Worker. The Worker queues a review and starts an isolated container only when there is work to do.
Parallel review agents examine the changed code, a verifier filters the findings, and OpenBugbot posts up to eight useful inline comments on GitHub.