Resolvr
Code review inside VS Code. Open diffs, leave threaded comments on any line, then hand the open threads to your AI agent to work through. Session files live on your machine. No account needed, no server to run.

Features
- Threaded inline comments on any line, using VS Code's native Comments API
- Changed files tree in the Source Control sidebar with diff stats
- Side-by-side diff panel
- Live updates as session files change on disk
- "Resolve with AI": spawns your configured agent in a terminal to tackle open threads
Install
From the VS Code Marketplace:
code --install-extension ugudlado.resolvr
Or grab the .vsix from the latest release:
code --install-extension resolvr-<version>.vsix
How it works
Open changed files in the sidebar and comment on any line. Threads stay open until resolved. Reply, reopen, or mark as won't fix. When you're ready, hit "Resolve with AI" and your agent picks up the open threads inline.
Sessions are stored in .review/sessions/ as JSON files you can diff, commit, or ignore.
Development
git clone https://github.com/ugudlado/resolvr.git
cd resolvr
pnpm install
pnpm build # bundle the extension
pnpm watch # watch mode
pnpm type-check # type check
pnpm format # prettier
Packaging
pnpm package
Debug in VS Code
Press F5 to launch the Extension Development Host.
Contributing
- Fork and create a feature branch
pnpm install
- Make changes, run
pnpm type-check
pnpm build
- Open a pull request
License
MIT. See LICENSE.