How do I review a pull request from Claude Code?
- Point Cutplane at the pull request. It reads the two commits, groups the changed files into the components they belong to, and tells you which parts of the system changed and what those changes reach, all before you open a single file. Every sentence links to the line of code it was computed from.
My agent changed 60 files. Where do I start?
- At the top, with the two or three things that actually changed in the system. Cutplane collapses the repository until only the change is left standing, taking thousands of files down to the handful of components this change affects, and ranks what to read first. You open a file once you have decided it matters, not to find out whether it does.
I vibe-coded a whole feature and never read the diff. Can I still ship it?
- That is the case this was built for. You get the shape of what the agent did in a page you can read in a minute: the new components it introduced, where each new file landed, what existing behaviour it could affect, and any new route, migration or dependency. Whether the code is correct is still your call, since this is not a linter or a test runner. But you stop shipping things you cannot describe.
Does this work with Cursor and Codex?
- Yes. Cutplane reads the code, not the agent, so a pull request from Cursor, Codex, Claude Code, a teammate or you is analysed identically. Which agent wrote it changes nothing.
Does it work on commits, or only pull requests?
- Both. Give it a pull request number, or any two refs: a base and a head. With no base it uses the merge base with your default branch, and the report says that is what it did.
Does it work with private repositories?
- Yes, public and private, on GitHub. Reading code comes from a GitHub App you install on the repositories you choose, not from your login: signing in asks GitHub for your name and email address and nothing else. On an organisation an owner approves the install, and you can remove it at any time. The CLI needs none of this. It runs against the clone you already have, with no account and no model call.
Does Cutplane track architecture drift across pull requests?
- Not yet. Cutplane analyses one change at a time, this pull request against its base, and everything it tells you is computed from those two commits. Watching structure degrade across a year of merged PRs is a different product with a different data model, and until it exists the honest answer is that this tool reads one pull request, not a history. There is a page under Concepts explaining what architecture drift is and why agents accelerate it.
Is this a code review tool or a diagram generator?
- A code review tool that draws. Structure comes from real static analysis: imports, function calls, API routes, database access, schema and dependency changes. The model only names and explains what the analysis found. When it is uncertain it shows less rather than something plausible, and there is a section whose whole job is naming what it chose not to claim.