AI-Powered Code Reviews

Catch bugs before they ship

Code Bunny reviews every pull request with AI — posting inline comments in under 60 seconds so you can merge with confidence.

No credit card requiredReviews in < 60sYour code stays private
pull/482
analyzing
auth/session.ts
+3 files
38export async function resetPassword(
39 userId: string
40 token: string
41) {
42 const user = await db.user.findUnique({
43 where: { id: userId },
44 });
45 await updatePassword(user, token);
46 return user;
47}
Code Bunny analysis82%
AI-powered pull request intelligence

Fast code.
Faster reviews.

Code Bunny reviews every pull request automatically, prioritizes what matters, understands your codebase, and catches risky changes before they reach production.

Automatic PR reviewsCodebase contextRisk prioritization
Code intelligence for every PR

Your code deserves a second pair of eyes.

Code Bunny follows your pull requests from GitHub to review, context, and actionable feedback without slowing your team down.

OPENacme/web-app #482

Add invitation API and emails

8 files changed · 126 additions · 31 deletions

Code Bunny reviewing
codebunny[bot]automated review
AI REVIEW
Potential issue· Major

Expired sessions can reach the authentication layer.

The session is issued without checking whether the existing token has expired. This can result in an invalid authenticated session being created.

src/server/auth/session.ts
− return issueSession(payload.userId);
+ if (payload.expiresAt <= Date.now()) return null;
+ return issueSession(payload.userId);
Review intelligence

More than a diff.
A deeper review.

Code Bunny reviews the parts of a change that matter to your engineering team — from correctness and security to reliability and maintainability.

01

Correctness

Catch logic errors, incorrect assumptions, edge cases, and broken behavior before they reach production.

02

Security

Spot authentication issues, injection risks, exposed secrets, unsafe input, and insecure handling of data.

03

Performance

Identify unnecessary work, inefficient queries, N+1 patterns, memory issues, and avoidable bottlenecks.

04

Reliability

Surface missing null checks, unhandled errors, race conditions, and failure paths that are easy to miss.

05

Readability

Find confusing logic, unclear naming, and complexity that makes code harder for your team to understand.

06

Maintainability

Flag duplication, tight coupling, unnecessary complexity, and patterns that make future changes harder.

Review the change in context.

Relevant repository context helps Code Bunny make more useful, proportional suggestions instead of noisy generic feedback.

diff + context → review
Automated by default

No extra workflow.
Just open the PR.

Once Code Bunny is connected to GitHub, pull requests can move through the review pipeline automatically — from webhook to AI analysis to GitHub feedback.

github.com
event

Pull request opened

pull_request.opened

#184 · Improve authentication flow

acme/backend · @aneesh

Event received
Code Bunny
review-pipeline
Pull request opened

GitHub sends Code Bunny the pull request event.

01
Review queued

The review is handed to the background review pipeline.

02
AI analyzes the changeanalyzing

Diff and relevant repository context are reviewed together.

03
Feedback posted

The generated review is sent back to the GitHub PR.

04
Pull request #184
Reviewed

Code Bunny review

Potential issue found in the authentication flow. Consider handling the stale session state before returning a successful result.

1 issue · 1 suggestionView review →
Posted directly to GitHub
INPUT

Pull request event

PROCESSING

Background AI review

OUTPUT

Review posted to GitHub

Product overview

Everything in one place.
Nothing extra.

Track your repositories, pull requests, review activity, and usage from the same workspace that powers your automated reviews.

codebunny / overview
Monthly usage
42/ 50 reviews
Pull requests
184142 reviewed
Indexed codebases
1224.8k chunks
Review engine
Activelistening

Review activity

Pull requests reviewed over the last 14 days

72

total reviews

Aug 25Sep 7

Repository status

Connected codebases

acme/backend

12.4k chunks

Synced

acme/api

8.1k chunks

Synced

acme/web

4.3k chunks

Syncing

Recent pull requests

Latest reviews processed by Code Bunny

View all →
#184Improve authentication flow

acme/backend · @aneesh

Reviewed
#183Add repository indexing

acme/api · @sarah

Processing
#181Refactor request validation

acme/web · @john

Reviewed
Same workspace. Same review pipeline.overview
Pricing

Start free.
Upgrade when you need more.

Choose the plan that fits your review volume. Connect GitHub and start reviewing pull requests without changing your workflow.

Free

For trying Code Bunny on a few repositories.

0forever

Includes

  • 50 AI reviews per month
  • GitHub App integration
  • Public and private repositories
  • Repository-aware reviews
Recommended

Pro

For teams shipping code regularly.

499per month

Includes

  • Unlimited AI reviews
  • Everything in Free
  • Repository context
  • Automated pull request reviews
  • Review activity and usage tracking

REVIEWS

Free: 50 / month

PRO

Unlimited reviews

WORKFLOW

GitHub-native

Start reviewing

Give every pull request
a second pair of eyes.

Connect GitHub, let Code Bunny understand your repositories, and start getting actionable AI reviews without changing the way your team ships code.

GitHub nativeRepository-awareStart with the free plan