Function-Level Review
Focus only on changed functions. Keep prompts small and avoid LLM hallucinations.
AI Code Review Before Your PR
Catch bugs, enforce standards, and ship faster — directly from your terminal.
go build -o codepr .
sudo install -m 755 codepr /usr/local/bin/codepr
cd your-repo
codepr review
Traditional code review relies heavily on human availability.
Large pull requests are difficult to review quickly, and important issues often slip through until late in the process.
AI tools exist, but many simply send entire files to LLMs, leading to noisy results and high token costs.
Instead of analyzing entire files, CodePR focuses on the most relevant parts of a change.
It extracts changed functions, adds surrounding context, and sends only the necessary code to the AI reviewer.
This keeps prompts small, fast, and accurate.
Focus only on changed functions. Keep prompts small and avoid LLM hallucinations.
Automatically extract developer intent to provide context-aware and actionable feedback.
Receive parsed output with severity, line numbers, and suggestions—ready for CI/CD rules.
Review code locally and catch bugs before your teammates are even notified.
Audit token usage, extracted contexts, and raw LLM prompts without leaving the terminal.
PR opened with unhandled edge cases and missing tests.
diff --git a/payment.go b/payment.go
+ func Process(req Request) {
+ // No validation
+ db.Save(req.Amount)
+ }
Issues caught locally before teammates are pinged.
[HIGH] payment.go:2
Missing validation before db save.
Suggestion: Add req.Amount > 0 check.
Tests
- Add test for negative amount
Run CodePR locally to catch potential issues before opening a pull request.
Integrate CodePR into CI pipelines to review code changes automatically.
Extra validation for sensitive modules such as payments, permissions, financial systems, and authentication.
CodePR CLI is fully open source.
We believe developer tooling should be transparent, auditable, and easy to customize.
You can inspect how the review pipeline works and adapt it to your own workflows without locking your code into a black box.
CodePR CLI is the first step. We are building additional tools to bring AI-powered code review into modern development workflows.
go build -o codepr .
sudo install -m 755 codepr /usr/local/bin/codepr
codepr config set api_key <your_api_key>
codepr config set base_url https://api.deepseek.com/v1
codepr config set model deepseek-chat
codepr review
codepr review --last
codepr review --repo /path/to/repo
Join the waitlist for GitHub App updates, SaaS dashboard previews, and early access invites.