No login. Paste and review.

Paste your AgentReview payload and start reviewing.

This is the fast path. Generate a payload from the CLI, paste it here, add inline comments, and export the feedback back to your agent.

Paste a Payload

The payload stays in your browser session. Paste it and go.

agentreview | pbcopy

Paste the payload and jump straight into the interactive review UI.

Press Enter or click the button to start.

Confused? scroll further

1. Install the CLI

pip install agentreview

Install once, then use it from any git or sl repository you want to review.

2. Generate a payload

agentreview | pbcopy

Copy a review payload straight to your clipboard so it is ready to paste here.

3. Review and send it back

Export comments back to your agent

Paste the payload, leave inline review comments, then export a clean handoff back to the agent.

How It Works

Generate it, review it, hand it back.

The loop stays tight: create a payload from the CLI, review inline in the browser, then export focused comments back to your coding agent.

Terminal

$ pip install agentreview

$ agentreview | pbcopy

===AGENTREVIEW:v1=== ... copied to clipboard
Browser Reviewdrag to comment on a range
src/review.ts
4848const summary = buildPrompt(diff);
4949const selection = lines.slice(start, end);
5050return addInlineComment(selection, note);
5151}
Handle multi-line selections the same way GitHub range comments do, then export the whole note back to the agent.
Export Backready for your agent

Exported comment

Lines 49-50 (new)

Handle range selection consistently and preserve the whole selection when exporting the feedback.

Agent Handoff

Apply the requested changes and return an updated patch.