crloop
v0.2.4
Published
Agentic code review loop — human and agent review together
Downloads
36
Readme
crloop
crloop is a local code review tool for your Git working directory. Browse diffs, annotate changed lines, export structured comments as Markdown — all in a browser UI running entirely on your machine.
Built for the AI agent workflow: agent writes code → you review and annotate → agent reads your comments and iterates.
Requirements
- Node.js 18+
- git in PATH
- A browser
Installation
npm install -g crloopUsage
crloop serve --repo /path/to/repoOpen http://localhost:3000 in your browser.
Multiple repositories
crloop serve --repo /path/to/frontend --repo /path/to/backendManage repos in a running server
crloop add-repo /path/to/repo # register a repo
crloop repos # list registered repos
crloop remove-repo <id> # unregister a repoStop the server
crloop stop-serverHelp
crloop --helpUninstall
Stop any running server first, then remove the package:
crloop stop-server
npm uninstall -g crloopDocumentation
- Usage manual — full CLI reference, comment storage, workflows
- Development — building and running from source
- API — HTTP API and comment file schema
