New v1.0 — watch the live demo

Copilot. Not autopilot.

Your AI copilot for PR reviews.

A Chrome extension that gives your AI CLI a seat in every GitHub PR — reviews, workflow diagrams, and PR-aware chat. You stay in control: every comment posts as a pending review.

Pay once · Source-available · 30-day refund · One-command install

Live preview
github.com/your-org/your-repo/pull/1234
+import { validateToken } from './auth';
export async function handler(req, res) {
- const user = await db.users.find(req.id);
+ const token = await validateToken(req.headers);
+ if (!token) return res.status(401).end();
+ const user = await db.users.find(token.userId);
return res.json({ email: user.email });
}
// downstream caller still passes req.id...
2 comments posted
Posted as a pending review on GitHub.
Scout pass… Investigating… Posting…
High handler.ts:7

Callers still pass req.id — but the function now reads token.userId. Check api.ts:48.

Generated by GhRev · Confidence 92%
Pending
Review state
92%
Confidence
0 B
Sent to us

Built for the way you already work

Bring your own AI CLI
Native GitHub workflow
Code never leaves your laptop

See it in action

Watch GhRev review a real PR

Open a real PR, ask GhRev to explain it, generate a workflow diagram, then trigger a full review — all from the same floating button.

GitHub PR with GhRev floating action button showing Review, Diagram, and Chat options
01 Pick what you need

Click the floating GhRev button on any PR — Review, Diagram, or Chat.

01 Ask GhRev to explain the PR
02 Generate a workflow diagram
03 Trigger a full inline review
04 Submit when you're happy

Your AI CLI already costs $20/mo.
Why pay another $30/mo for someone else's PR reviewer?

GhRev wires your CLI directly into GitHub. Same brain, native workflow, one-time cost.

Three workflows, one extension

Everything you need on every PR

Senior-engineer review

Two-phase scout + investigate workflow. Posts inline comments as a pending review — you submit them. Confidence score on every comment, severity filtering, auto de-dupe.

  • Reads file context, not just the diff
  • Cites file:line for cross-file claims
  • Never auto-submits

Workflow diagrams

One click renders a before/after flowchart in plain English. Zoom, pan, post as a PR comment. Reviewers understand the change in seconds.

  • Mermaid output, native GitHub render
  • Shared flow + diverging branches
  • Cached per commit SHA

PR-aware chat

Ask anything about the PR. @-mention changed files. Select code on the page → "Ask GhRev" pops up. Replies link directly to the head SHA blob.

  • Full Markdown rendering
  • File paths auto-link to GitHub
  • Persistent session per PR
Token analytics dashboard
Charts of tokens spent per day, per kind, per PR. All stored locally.
Per-comment confidence
Every comment ships with a self-rated confidence percentage.
Two-phase review
Scout pass identifies what to check; investigate pass writes the comments.
Heartbeat streaming
Long jobs don't time out; live progress chip on the PR page.

Setup in 60 seconds

From clone to first review

1

Clone & install

Run ./setup.sh. Detects your OS, installs Node + gh, asks which CLI to use, walks through GitHub login.

2

Load the extension

Chrome → chrome://extensions → Load unpacked. Paste the secret the script printed.

3

Open any PR

A floating GhRev button appears bottom-center on every github.com PR. Click — pick Review, Diagram, or Chat.

setup.sh
$ git clone https://github.com/arshadkazmi42/ghrev.git
$ cd ghrev && ./setup.sh
◆ GhRev — one-command setup
────────────────────────────────────
· os: macos · arch: arm64 · pkg: brew
✓ node v20.11.0
✓ gh 2.50.0
✓ AI CLI detected
✓ gh: logged in
✓ config written to ~/.ghrev/config.json
✓ GhRev is set up.

Pay once, own forever

One price. Lifetime access.

No subscriptions. No per-seat math. No surprise renewals. One payment, updates forever.

Lifetime
One-time
$49
Pay once. Use forever.
Get GhRev

30-day money-back guarantee. Instant access to the private repo.

Everything included
  • Lifetime updates
    Pull new features for as long as you use it.
  • Private GitHub repo access
    Added as a collaborator the moment you pay.
  • One-command install
    ./setup.sh handles everything.
  • Source-available license
    Audit it, modify it, run it anywhere — yours.
  • Email support
    Direct line to the maintainer.

Source-available — no redistribution. Full refund within 30 days, no questions asked.

Privacy by architecture

Your code stays on your machine.

GhRev runs as a local server bound to 127.0.0.1. It invokes your local AI CLI, which talks to its own backend — never ours. We have no servers in the loop. We can't see your code, your reviews, your tokens, or your activity.

  • Loopback-only server
    Server binds to 127.0.0.1 — never reachable from the internet.
  • Pending reviews only
    Comments post as a pending review. You submit manually in GitHub UI.
  • No code uploads
    Diffs and file reads happen via your local checkout. GhRev never proxies.
  • Token redaction
    Streamed logs filter out anything that looks like a token before showing in the UI.
  • Source-available
    Buyers see the full source. Audit it. Modify it. Own it.
You
Your laptop
Browser + local server
↕ loopback (127.0.0.1)
$_
Your AI CLI
Whichever one you already use
↕ CLI's own auth, not ours
AI
AI provider
Whichever your CLI talks to
↑ no GhRev servers anywhere in this chain

Why I built GhRev

At work, AI code writing tools increased our productivity by 100x. But PR reviews were still slow.

I used Copilot's review bot and Codex, but both were not enough. They just post comments at you. I wanted a copilot who could read the PR with me, answer my quick questions, and catch the edge cases I might miss. And I wanted all of this without leaving the PR page.

I was also already paying for an AI CLI, and I didn't want another subscription on top, or to burn API tokens.

So I built it for me. Started as a PR reviewer on autopilot, but then pivoted to a copilot with chat support and before/after workflow diagrams of the PR. I use it regularly on all my PR reviews now, and it is quite useful.

It has already caught some really good logical bugs in the code that manual review missed.

Arshad Kazmi, maker of GhRev
Arshad Kazmi
@arshadkazmi42

FAQ

Questions, answered

Does my code ever leave my machine?
No. GhRev runs a server on 127.0.0.1 that shells out to your local AI CLI. The CLI talks to its own AI provider. GhRev has no servers — we can't see your code or your reviews.
What if I don't already have an AI CLI?
The setup script walks you through installing one via npm. You'll need to log into it once with your own account; whichever subscription or API plan you have is the brain GhRev uses.
Does it auto-post comments to my team's PRs?
No. Every review is posted as a pending review — invisible to your team until you click Submit review in the GitHub UI. The server has no code path that submits.
What about private repos?
Works the same. GhRev uses your existing gh auth, so any repo you can access on GitHub, you can review with GhRev.
Lifetime means what, exactly?
You pay once, get added to the private GitHub repo, and pull updates forever. We commit to shipping updates for at least 24 months from your purchase. Refund within 30 days, no questions.
Why not just call my AI CLI directly?
You can. GhRev adds: the Chrome UI on every PR, structured review with confidence scores, inline GitHub posting via gh api, the workflow diagrams, chat with @-mentions, and token analytics. Saves the 30 minutes you'd spend wiring all of that yourself.
Windows?
Use WSL. Native Windows is not supported today.
What's the license?
Source-available. You can use it on any number of your own machines or inside your company. You can modify it. You can't redistribute it or resell it. (Polyform Strict-style.)

Stop paying twice
for AI on your PRs.

Use the AI you already have. Pay once. Own the code.

30-day money-back guarantee · One-time payment · Lifetime updates