Show HN: R3 – A Local Code Review Tool for You and Your AI Agent R3, a local code review tool for AI agents, launched on Hacker News. It enables developers to leave line-specific feedback on agent-generated diffs and documents, tracking comments to resolution outside of chat interfaces. The tool runs fully locally with a web UI and is designed to streamline the review loop between humans and coding agents. r3 is a review tool for the diffs and docs produced by your coding agents, running locally with a web interface. You leave feedback pinned to the exact line or quote it's about, and track each comment to resolution. r3 fills a gap the chat box can't. Say your agent writes a long planning doc and you want to fix a handful of things. In a chat you copy-paste each passage to quote it, type your feedback, then lose track across turns of what's been handled. Instead of working in a linear, unstructured chat stream, r3 works like the code review tools you're used to, but just for you and your agents, and it runs fully locally. r3-demo-web.mp4 The point of r3 is a tight, copy-paste-free review loop between you and an agent. sequenceDiagram participant A as Agent participant S as r3 server participant U as You browser A- S: 1 r3 create — opens a review, shares the URL loop until you Approve or Abandon A- S: 2 r3 watch blocks for feedback U- S: 3 leave feedback + Submit S-- A: r3 watch prints your feedback to stdout and exits A- S: 4 r3 reply by feedback id S-- U: 5 web UI updates live end - The agent starts a review with and shares the URL. r3 create - The agent runs , which registers as a live watcher and waits for feedback. r3 watch