LiveReview Logo

LiveReview

AI Code Review with Teeth

AI generates code fast, like a wild horse.
LiveReview tames it into your workhorse.

Horse under human control, wearing a bridle
Wild, untamed horse
Before

AI Speed

  • Raw power.
  • Uncontrolled behavior.
After

Human Control

  • Guided.
  • Focused.
Prioritized by blast radius

Blast-Radius Aware AI Code Review
for Business-Critical Systems.

Your team's attention is limited. Spend review effort where business risk is highest — not spread evenly across every diff.

LiveReview — Blast Radius & Review Priority scoring

LiveReview scores risk using a live call graph of your codebase, not just the diff in front of you. Hover a node to preview its blast radius, click to lock it in.

Backend (Go)Frontend (React)FunctionStructBlast radius

82 symbols from LiveReview's own codebase — size shows how central a symbol is.

How does Blast Radius scoring work? (a more technical explanation)

Here's the goal:

  • A 3-line fix in a function used by 40 other files, that also writes to a database, should score high.
  • A 300-line UI change in one file, fully covered by tests and used by nothing else, should score low, even though it's the bigger diff.

To get there, LiveReview gives each hunk two scores, then combines them into one and ranks every hunk in the diff by it.

  • Blast Radius: how far a change can reach through your code.
    • How many other places call this code, directly or a few steps removed
    • Whether it writes to a database or other long-term storage
    • Whether those callers live in other parts of the codebase, not just nearby files
  • Review Priority: how much scrutiny a change warrants, based on its complexity, subtlety, and potential for important details to be missed.
    • How many different paths the logic can take, and how hard it is to follow
    • How deeply loops sit nested inside other loops
    • How many other functions or symbols this code itself calls into
    • Whether the code has tests

LiveReview may add new signals over time. The two questions behind them stay the same: how far, and how much scrutiny.

Customer trust runs on uptime, responsiveness, and delight — all of which demand engineering confidence.

LiveReview is the org-wide harness for AI-written code — turning raw AI power into enterprise-grade dependability.

Before LiveReview
UptimeResponsivenessEngineering ConfidenceCustomer DelightCustomer Trust
AI Code Volume →
After LiveReview
UptimeResponsivenessEngineering ConfidenceCustomer DelightCustomer Trust
AI Code Volume →
Org-Wide Harness

Enforce your standards on every line of AI-generated code.

Activate checks at the levels that matter to you — mix and match enforcement per repository.

Commit
Before Push
MR / PR
CI / CD
Scheduled Checks

Want the code nobody committed to today still checked? See Scheduled Reviews below.

Pick the Right Review Depth Based on Your Need for Shipping Speed

Not every repo needs the same amount of scrutiny. Turn on more checkpoints where the blast radius of a bad change is high, and fewer where speed matters most.

  • Commit Only: fastest, lightest net. Fine for low-stakes, throwaway repos.
  • Commit + Scheduled: the startup pick. Near-zero friction day-to-day, plus a daily sweep that catches anything that slipped past commit-time checks.
  • Commit + Before Push + MR/PR: the standard team flow. A human sees every change before it merges.
  • All Five (Full Harness): maximum coverage, for repos where a bad change is expensive: payments, auth, core infra.

There's no single right answer, only the right trade-off for a given repository, team, or organization. Mix and match per repository, and change your mind any time.

Prevent Outages, Breaches, and Technical Debt Before They Happen

Every commit git-lrc reviews gets checked against the same risk categories LiveReview tracks across production codebases. Hover or tap any item below to see exactly what it costs when it slips through.

10
Risk Categories
100+
Failure Patterns Tracked
Every Commit
Scanned Automatically

What takes down production - and impacts your on-call rotation.

Reliability

10 risks tracked

Correctness

10 risks tracked

Performance

10 risks tracked

Scalability

10 risks tracked

ReliabilityError Handling

Unhandled errors crash services mid-request, leaving customers staring at broken pages during peak traffic.

Livi

👋 Hi, I'm Livi. Ask me anything about your engineering data.

An AI chatbot for your engineering data

Ask Livi a product, engineering, or ops question in plain English. It answers with a chart pulled straight from your organization's own data, no dashboards to build, no SQL to write.

Every engineering decision becomes more data-backed, so you can act with confidence instead of guesswork.

Exec

Track adoption and ROI across the whole org without waiting on a report.

How broadly has the org adopted LiveReview this month?

Eng Manager

See which repos and engineers need attention, and where issues are piling up.

Which repos have the highest issue concentration?

Product

Understand engineering velocity and capacity by repo, in plain language.

Which repos are gaining or losing engineering velocity?

Engineer

Trace an incident back to the reviews and files that touched it.

Which files have the most issues flagged?

Livi
LiviAI Analytics Chatbot
Exec
Is LiveReview adoption increasing across the org?
Livi
Adoption is up 23% this month. Here's the daily review count with a 7 day rolling average: steady growth since mid June, from 1 review in May to 15 on Aug 12.

16 example questions across 8 categories, the same structure as LiveReview's Onboarding Report.

Get Actionable Engineering Intelligence with MCP and APIs

Every code review performed by LiveReview adds to a growing source of engineering intelligence. Query, analyze, and act on that knowledge with the LiveReview MCP and API.

Instead of manually piecing together pull requests, comments, and reviews, generate custom reports, identify your strongest contributors, uncover quality and security trends, drill into engineering activity, or ask whatever your imagination comes up with, all in minutes instead of hours.

See what you can build
  1. 1Go to CI/CD Gates in the LiveReview dashboard and click 'New Ruleset'.
  2. 2Name it, then write or pick a preset jq expression against the findings document.
  3. 3Use 'Ask LLM' if the condition gets complex: it builds a copy-paste prompt (with your org's taxonomy and a sample document) for ChatGPT, Gemini, or DeepSeek to draft the expression.
  4. 4Confirm the live BLOCK/ALLOW preview matches what you expect against a real past review, then save.
  5. 5Open the ruleset's 'Get code' integration page, copy the snippet for your CI provider, and add the LIVEREVIEW_API_KEY secret to your pipeline.

…and many more.

Enforce Your Team's Engineering Standards with Repository Rules

A good reviewer doesn't just know your language and framework — it knows your repository: which patterns your team prefers, which dependencies are off-limits, and which files don't need a second look. LiveReview enforces your team's engineering standards through repository rules — drop a .lrc/ directory in your repo and LiveReview reads it on every review.

This is per-repo, and stacks on top of any org-wide Custom Prompts. Most teams should start with Repository Rules — each team keeps its own rules without affecting anyone else's repo.

.lrc/
├── ignore               # files the reviewer never sees
├── rules/
│   ├── INSTRUCTIONS.md  # read first, every review
│   ├── security.md
│   └── style.md
└── policy/
    └── tools.toml       # which checks are allowed to run
See repository rules in action

Repository Rules

Write down the handful of decisions that come up in every review — "prefer direct SQL over ORM abstractions", "avoid new infrastructure dependencies". INSTRUCTIONS.md is read first, every other rules/*.md file follows in order, so the reviewer always has your team's context.

Ignore File

Point the reviewer away from generated code, vendored dependencies, and anything else that doesn't need a second look. Gitignore syntax, matched from your repo root — ignored files don't count toward billable lines.

PoliciesComing soon

Decide which tools and checks are allowed to run on this repo. Machine-readable settings that LiveReview reads directly — never sent to the AI model.

Static ChecksComing soon

Pair AI review with static analyzers like semgrep and eslint, authorized through policy and run as part of the same commit-time flow — one gate, multiple kinds of checks.

CI/CD Gates: Precise, Customized Merge Enforcement

Write a jq rule against a review's findings, save it, and call one URL from any CI/CD pipeline to block or allow the build. A generic "fail if severity is high" checkbox can't match how your team actually thinks about risk, jq can.

  • Works on any review source: web, git-lrc, CI/CD triggers, or API/MCP triggers all produce the same findings document, so one gate covers every path to a merge.
  • Full power of jq to enforce complex conditions, customized exactly to repository, team, and org requirements.
  • Live expression editor: LLM help drafts a jq rule, live preview runs it against a synthetic sample and real past reviews as you type.
See CI/CD Gates in action

Write the rule that matches how your team actually weighs risk

Different teams weigh the same findings differently. jq lets each team encode its own answer, not a preset severity bucket:

Security-conscious team

Cares about

Even one security finding is unacceptable, and so is any critical-severity bug elsewhere.

What They Need in Plain English

Block if there's any security finding, or any critical-severity finding of any kind.

What They Need in jq
(.counts.by_category.security > 0) or (.counts.by_severity.critical > 0)

Fast-moving startup

Cares about

Ship velocity matters most: block only on correctness and UX bugs that would actually hurt users or slow the team down, let architecture/style debt through for now.

What They Need in Plain English

Block only if there's a critical or warning-level finding in correctness, UX, or developer experience.

What They Need in jq
[.findings[] | select((.category=="correctness" or .category=="ui-ux" or .category=="developer-experience") and (.severity=="critical" or .severity=="warning"))] | length > 0

Mature enterprise

Cares about

Security is non-negotiable, but cost, scale, and architecture decisions matter just as much once you're operating at scale.

What They Need in Plain English

Block on any security finding, or on a critical finding in cost, architecture, or scalability.

What They Need in jq
(.counts.by_category.security > 0) or ([.findings[] | select((.category=="cost" or .category=="architecture" or .category=="scalability") and .severity=="critical")] | length > 0)

Every category above comes from the same 10-category, 100+ risk taxonomy LiveReview already tracks on every review: the gate is just a rule over data you're already generating.

Cut AI Review Costs by 50% Without Compromising Quality

Adaptive Reviews saves 40-50% of AI inference costs using an innovative multi-model technique. A powerful Leader Model detects complex issues, while a cost-efficient Helper Model explains them - delivering the exact same review quality at half the price.

See Adaptive Reviews in action

Reduce Costs by 40-50%

Significantly lower your AI inference costs. By using a cost-efficient Helper Model for explanations, you can save 40-50% compared to using a single expensive model for everything.

Double Review Volume

Review up to 2x more code with the exact same budget. With optimized token usage, you don't have to constantly monitor limits or restrict how much code gets reviewed.

Leader + Helper Architecture

A powerful Leader Model is solely dedicated to analyzing your code and finding complex issues, while a more economical Helper Model expands those findings into helpful, detailed explanations.

Maintain Review Quality

Because issue detection is still driven by the high-end Leader Model, there is no degradation in the quality or accuracy of the code reviews you receive.

Cognitive Coverage

Cognitive Coverage via PR Quizzes

AI can write a diff faster than you can read it. LiveReview quizzes you on the PR before it gets committed — so you stay in touch with the technical decisions baked into your codebase, instead of rubber-stamping code you never really understood.

Auto-generated from the diff
Questions come straight from the actual changes — no manual quiz writing.
Quick, before commit
Takes less than a minute, and runs before the diff gets committed — not after.
Slides, text, or quiz mode
Switch between a walkthrough, plain text, and the quiz for the same PR.
Builds durable understanding
Surfaces gaps in your grasp of the system while they're still cheap to fix.
See Cognitive Coverage in action
LiveReview — PR Quiz mode

AI Code Review with Teeth.

A powerful and flexible AI code reviewer — light on the pocket, heavy on impact.

Git-Level Guardrails
Unread code never sneaks in. Reviews track every commit, and deliberate skips stay in the audit trail.
Works With Your Git Setup
GitHub, GitLab, Bitbucket, Gitea, Azure DevOps, or something else—LiveReview adapts to your workflow, not the other way around.
Fair Pricing
Free includes 30k reviewed LOC per month. Paid plans start at $32 for 100k LOC, keep users unlimited, and scale by reviewed LOC instead of seats or opaque token usage.
Works Wherever You Do
Web, CLI, IDE. Cloud, self-hosted, or air gapped. Same guardrails and visibility everywhere.
Trusted & Transparent
Source-available code on GitHub. Audit every line, security scans, and maintain total data privacy with air-gapped readiness.
Enough Depth When You Need It
Line-level review, real MR conversations, and durable team learnings—without the usual tool bloat.

No setup required — start reviewing code in minutes

Works with your favorite platform
GitHub
GitHub
GitLab
GitLab
Bitbucket
Bitbucket
Gitea
Gitea
Azure DevOps
Azure DevOps

See What LiveReview Delivers

Real benefits that engineering teams experience every day

Business Impact

50 benefits total

Page 1 of 10 • Showing 5 of 50 benefits
Auto-cycling

Why Engineering Teams Love LiveReview

Accelerate Delivery Cycles

Reduce PR review time from hours to minutes, enabling your team to ship features faster and with greater confidence

Save Senior Engineering Time

Liberate senior developers from routine reviews, allowing them to focus on mentorship and high-impact architectural work

Drive Quality Excellence

Build a culture of quality with metrics that highlight improvements in code standards, reduced defects, and development efficiency

Used by engineers at

fourkites.com
antino.com
repcard.com
astronauts.id
zapak.com
legionelladossier.com
secuvy.ai
spicemoney.com
reliancegroupindia.com
apexti.com
unboundxinc.com
360ithub.com
utkallabs.com
betatestsolutions.com
mayson.dev
nexuscoreerp.com
indiasatcom.ltd
raksasapartners.com

Powerful Features for Modern Engineering Teams

Everything you need to transform your code review process

Track Engineering Excellence

Quantify your team's improvement with comprehensive metrics. Track review times, code quality trends, and team velocity to demonstrate engineering value to stakeholders.

Fine-Tuned LiveReview AI Model

Live Review comes with its own fine-tuned AI model ready to use from day one. If you prefer to use your own provider — Gemini, OpenAI, AWS Bedrock, a self-hosted Ollama model, or any other LLM — you can bring your own key (BYOK) and plug it in.

Use Any git Provider: Github, GitLab, Bitbucket, Gitea, Azure DevOps

Works effortlessly with GitHub, GitLab, Bitbucket, Gitea, Azure DevOps. Connect your repositories in minutes and start receiving AI-powered code reviews across all your projects.

GitHub
GitHub
GitLab
GitLab
Bitbucket
Bitbucket
Gitea
Gitea
Azure DevOps
Azure DevOps

View All AI Reviews in One Place

Manage all your code reviews from a single, intuitive interface. Track review status, prioritize PRs, and monitor team activity with real-time updates.

Look Under the Hood with Detailed Progress Tracking

Monitor review progress in real-time. Track which files have been reviewed, identify bottlenecks, and ensure nothing falls through the cracks.

Customize Review Prompts to Fit Your Team

Custom Prompts apply org-wide, to every repo in your organization, so keep them to standards that are genuinely universal. For anything specific to one repo, use Repository Rules instead — most teams should start there.

Discuss with AI in MR and See it Learn Everyday

Build an institutional knowledge base from code reviews. Capture best practices, common issues, and team learnings to continuously improve code quality.

Sharp AI-Generated Pull Request Summaries

Get detailed, actionable summaries of every pull request. Understand changes at a glance with AI-generated insights that highlight key modifications, potential issues, and improvement suggestions.

Ask AI for Clarification or Debate Code Changes

Ask questions and get instant clarifications about code changes. The AI reviewer understands context and provides helpful explanations to speed up the review process.

Scheduled Reviews: A Safety Net for the Code Nobody Reviewed

Not every change goes through a full review. A hotfix might land straight on the main branch, or a dependency bump might merge on its own. For a fast-moving startup team, that's often the right call, so Scheduled Reviews close the gap left behind.

  • Checks your default branch on its own schedule, even when nobody asked for a review
  • Turn it on per repository, one toggle
  • Pick how often it runs, in plain cron syntax, or leave it blank for once a day
  • Shows the last run and the next run, right in the schedule list
CLI Tools

Two CLI tools. One LiveReview backend.

Install git-lrc for commit-time reviews in any terminal. Use claude-lrc when you're building inside Claude Code. Both tools share the same AI review engine and monthly LOC quota.

Git commit hook

git-lrc

Hooks into git commit and runs a micro AI review before every diff lands. Skips are explicit and auditable in git history.

  • Git-native — works in any repo without a cloud platform connection
  • Skips tracked in git log — auditable, not silent
  • One-line install, 30k LOC free every month
Shell (macOS / Linux):
curl -fsSL https://hexmos.com/lrc-install.sh | bash
Explore git-lrc
Claude Code integration

claude-lrc

Review, vouch, and skip inside Claude Code — without leaving the chat surface where the code was generated.

  • Natural language or slash commands (/lrc:review)
  • Same LOC quota and review engine as git-lrc
  • Bundled with git-lrc — no separate install needed
Claude Code surface
review with lrc
/lrc:review
/lrc:skip
/lrc:vouch
Explore claude-lrc
EXTENSIONS • IDE Integration

Install LiveReview directly in your IDE

Get instant AI code reviews without leaving your editor. Available for VSCode, Cursor, and Antigravity.

Quick Installation Guide

LiveReview Enterprise

Custom deployments, SSO integration, dedicated AI keys, and priority SLA support for scaling engineering organizations.

Security & Ops

Self-hosted deployment (optional), support for multiple organizations, custom domain hosting, SSO & User Directory integration (SAML/OIDC), and full data privacy.

Flexible AI & Models

Connect to private cloud LLMs or opt for fully self-hosted AI models using Ollama or your private infrastructure to guarantee no code leaves your network.

Custom Integrations

Custom API access, bespoke workflow integrations, and engineering insights dashboards tailored to your development tooling and platform requirements.

Dedicated SLA Support

Prioritized support channel with dedicated service level agreements (SLAs), custom development, and professional onboarding services.

Self-Hosted Deployment

AI code reviews without the vendor cloud

  • No intermediary cloud — your code goes directly to the AI provider
  • Your own API keys, your own infrastructure, Docker-based
  • Typically 40–50% lower TCO vs cloud-only alternatives
Explore Self-Hosted

Tailored options for internal networks, custom compliance, and high-volume workloads.

Security

Built for security review

LiveReview documents the answers enterprise teams ask first: deployment model differences, code/data handling, AI safeguards, supply-chain visibility, and clear security response timelines.

  • Separate guidance for self-hosted/Ollama and cloud LLM deployments
  • Explicit data handling: what leaves your network, when it happens, and retention/deletion expectations
  • Prompt-injection and unsafe-output mitigations, automated scanners, SBOM visibility, and transparent GitHub source with responsive disclosure policy
LiveReview stands out from CodeRabbit in four key ways: pricing, usage, transparency, and team standardization.

Predictable Pricing
LiveReview starts free with 30k LOC per month. Paid usage then scales through fixed monthly bands: 100k LOC for $32, 200k for $64, 400k for $128, 800k for $256, 1.6M for $512, and 3.2M for $1024. Paid plans keep users unlimited, so the bill tracks reviewed workload instead of headcount. CodeRabbit charges per seat, so cost rises as the team grows even when workload does not.

Usage Limits
LiveReview's main limit is monthly reviewed LOC. Within that envelope, teams can review across unlimited users and unlimited repositories. CodeRabbit applies hourly rate limits per developer per repository, which makes throughput harder to predict.

Transparency
LiveReview is source-available, meaning you can browse the entire codebase from GitHub, check the security scanning reports, and see exactly what is running under the hood. CodeRabbit does not offer anything like this.

Team Standardization
Regardless of what editor or operating system your team members use, LiveReview enforces code quality at the git level. Every line of code pushed to production goes through LiveReview's analysis, ensuring that code standards and quality are maintained across the entire organization - something none of the other code review tools currently provide.
Predictable Pricing
LiveReview starts free with 30k LOC per month. Paid plans then move through fixed monthly reviewed-LOC bands: 100k for $32, 200k for $64, 400k for $128, 800k for $256, 1.6M for $512, and 3.2M for $1024. Paid plans keep users unlimited, so cost stays tied to review workload. GitHub Copilot charges per user, so the bill rises with headcount rather than the amount of code reviewed.

Usage Limits
Copilot caps premium requests at 300 in the Pro plan, whereas LiveReview's main limit is monthly reviewed LOC and paid plans keep review capacity available across unlimited users and projects inside that envelope.

Team Standardization
Copilot is limited only to GitHub - if your team uses GitLab, Gitea or Bitbucket, you would need separate products. LiveReview works across GitHub, GitLab, Gitea, Bitbucket and Azure DevOps through unified Git-level integration with no additional setup.
LiveReview stands out from SonarQube in two key ways: transparency and setup.

Transparency
SonarQube's Community Edition is source-available but comes with limited features, while the Developer and Enterprise editions are closed. LiveReview's entire codebase is source-available - you can check out all the core functions directly from GitHub.

Setup
For teams using SonarQube server, setting up and maintaining the server can be a burden due to its resource intensity and dependency management overhead. With LiveReview, you can self-host on your own infrastructure with a single command in under 5 minutes.
Pricing & Usage
LiveReview starts free with 30k LOC per month. Premium starts at $32 for 100k LOC and scales through fixed monthly bands to 3.2M LOC while keeping users unlimited. That makes spend predictable and directly tied to reviewed code. Claude Code is token-metered, so a few complex reviews can create costs that are much harder to forecast.

Transparency & Privacy
LiveReview is source-available and can be self-hosted in enterprise plan, so you can inspect the code and keep your data within your own network. Claude Code is a closed product that sends your source code to Anthropic's cloud for processing.

Team Standardization
LiveReview enforces code quality at the git level, keeping standards consistent across GitHub, GitLab, Gitea, Bitbucket and Azure DevOps, regardless of which IDE your team uses. Claude Code is a CLI tool built for individual developers to tackle specific tasks, not for enforcing code standards across an entire organization.
Organization-wide Visibility
Code review analysis from in-editor tools is only visible to the individual using them. In a team where members use different IDEs, it becomes difficult to enforce common code quality standards across the organization.

Git-level Enforcement
Since LiveReview operates at the Git level, it works regardless of which IDE your team members use, allowing the entire team to follow common practices and maintain consistent code quality - reducing issues that make it to production.

Automated Prevention
Once LiveReview is set up on a team member's machine, it automatically triggers code analysis during commits, catching buggy or non-production-ready code before it gets pushed.
Most code review tools charge more as your team grows or as token consumption fluctuates. LiveReview makes the main limit explicit: monthly reviewed Lines of Code (LOC).

You can start free with 30k LOC per month. When you need more, the paid ladder is fixed and public: 100k LOC for $32, 200k for $64, 400k for $128, 800k for $256, 1.6M for $512, and 3.2M for $1024.

Paid plans keep users unlimited, so if your team grows but your review workload stays the same, your bill does not suddenly double. That makes LiveReview predictable, workload-anchored, and easier to budget than seat-based or opaque token-based alternatives.
No. You are only charged for the code that appears in the reviewed diff, not for the entire repository. A 1 million line project does not mean 1 million lines are billed. Only the code in the actual review diff counts.
Only the staged diff is analyzed. No full repository context is uploaded, and diffs are not stored after review.
git lrc hooks disable # disable for current repo
git lrc hooks enable # re-enable later
git lrc review --commit HEAD # review the last commit
git lrc review --commit HEAD~3..HEAD # review a range

Tools like SonarQube are primarily static analyzers and linters. They check code against predefined rules and usually run in the IDE or CI pipeline. Many enterprises use them to enforce quality and security standards across large codebases.

git-lrc focuses on a different layer: Git itself. Instead of analyzing the whole codebase through rule catalogs, git-lrc reviews the actual diffs at commit time. The goal is to help developers understand what changed, catch issues earlier, and attach review signals directly to the commit.

Another key difference is that git-lrc treats review as repository state. The review outcome (reviewed, skipped, vouched) becomes part of the git log, so review decisions are versioned alongside the code.

The main idea is to bring verification directly into Git, so review happens earlier and becomes part of the repository's engineering history rather than something external in CI or dashboards.

If you're interested in the broader idea behind this:

They explain the thinking behind making review a Git-native artifact rather than something that lives only in CI or dashboards.

When you run a review, LiveReview only sends the diff to the AI model — nothing else. We do not store your code, and we never train any AI models on your code.

On the security side, we regularly run scans on our own codebase to catch vulnerabilities before they become a problem. This includes Gitleaks, OSV Scanner, Govulncheck, and Semgrep, all running through GitHub Actions. A Bill of Materials (BOM) is also generated and published with every release so you can see exactly what is inside.

LiveReview is fully transparent — the entire source code is available for you to browse on GitHub. You can review the full security details in the security documentation.
We regularly run security scans on our codebase to catch vulnerabilities early. This includes Gitleaks, OSV Scanner, Govulncheck, and Semgrep. You can check the full scan history and logs directly from our GitHub Actions page.
Self-Hosted Mode
In self-hosted mode, your team runs the entire application stack and database, and your infrastructure team controls all data storage, backups, retention, and network access.

Cloud/Provider Integrated
In cloud/provider-integrated mode, LiveReview sends data to configured external provider endpoints for AI inference and Git provider operations.

Check out more information in our deployment models documentation.
Local Ollama Model
With a local Ollama model, all inference traffic stays within your own infrastructure — nothing is sent externally.

Cloud LLM
With a cloud LLM like OpenAI, Anthropic, or AWS Bedrock, the review payload is sent to that provider's API endpoint.

The choice of model is explicitly configured by the operator, ensuring complete visibility and no surprises.
LiveReview has robust guardrails to prevent this. Before sending any data to the AI model, it runs prompt injection detection, neutralizes instruction override phrases (like "ignore previous instructions"), strips hidden characters, and replaces known control tokens. These checks run automatically on every review request.

Detailed information is available in our AI risks and mitigations documentation.
AI suggestions are strictly advisory and require human review before any action is taken. Teams can additionally enforce branch protection, CI checks, and mandatory reviewer approvals before merging.

LiveReview also sanitizes model output before returning it, redacting sensitive patterns and handling unsafe links or HTML in the response. You can verify this in our guardrail verification documentation.
Yes. An SBOM is automatically generated on every release using Syft and published to the GitHub release assets. You can review it at the latest release page.
LiveReview is not SOC 2 Type II certified at this time. However, the full security documentation, scan history, SBOM, and source code are publicly available for review, giving enterprise buyers direct visibility into the security posture of the product.
Yes. You can connect your Gitea repositories in minutes and start receiving code reviews across all your projects right away.
Yes. LiveReview provides a VSCode extension. If you are using Cursor, Antigravity, or any other VSCode-based editor, you can install the LiveReview extension from OpenVSX. Find out more here.
Yes. When you try to commit through VSCode's built-in Git UI, the commit will initially fail — this is expected. git-lrc does not allow a commit to go through until the review is either completed or intentionally skipped.

To get it working, stage your files and either run git lrc review manually in the terminal, or click the eye icon in VSCode's Git tab. Once done, you can either commit directly from the LiveReview UI, or fix the flagged issues, stage the files again, run the review once more, and then commit through VSCode's Git UI as usual.
Yes, you can mention the Livereview bot on your GitHub, GitLab, Bitbucket, Gitea, and Azure DevOps PR requests; it will automatically review all the changes and provide feedback. You can also ask further questions or debate with the AI.
LiveReview
LiveReview is the complete platform — it includes the dashboard, organization-level code review tracking, PR integration across GitHub, GitLab, Bitbucket, Gitea, and Azure DevOps, and the full suite of features for managing code quality across your entire team.

git-lrc
git-lrc is a lightweight git subcommand (git lrc review) that brings LiveReview's AI analysis directly into your local git workflow. It runs on your uncommitted code before you push, so you catch issues at the earliest possible point. It installs with a single command and requires no Git provider connection to get started. Learn more about git-lrc here.

In short, git-lrc is the fastest way to get started with LiveReview and is focused on the individual developer's local workflow, while LiveReview as a platform is built for the entire organization — tracking reviews, enforcing standards, and giving managers visibility across all projects and teams.
Yes. The LiveReview dashboard gives you a full view of all triggered code reviews across multiple projects — whether they came from GitHub, GitLab, or were triggered locally through git-lrc. This brings team standardization across your entire organization, giving managers an organization-level view of code quality, while helping developers push better code to production consistently across all projects.
Yes. If your team or organization follows specific code review practices, you can add them as instructions directly from the LiveReview dashboard. LiveReview will then check and verify that those standards are met on every code review.
LOC stands for Lines of Code. In LiveReview pricing, it refers to the code shown in the reviewed diff, not the total size of your repository.
Premium starts at 100,000 LOC per month for $32. Higher paid bands are 200,000 LOC for $64, 400,000 LOC for $128, 800,000 LOC for $256, 1.6M LOC for $512, and 3.2M LOC for $1024. All paid bands keep users unlimited and refresh every month. If 100,000 LOC is not enough, you move to the next fixed workload band instead of buying more seats.
Yes. LiveReview is powered by large language models rather than a per-language static analyzer, so it isn't limited to a fixed list of languages. It works well with Python, Java, JavaScript/TypeScript, Go, C/C++, C#, Ruby, PHP, Rust, Kotlin, Swift, and most other mainstream languages and frameworks you'll find in a typical codebase. If your team's stack includes multiple languages in the same repository, LiveReview reviews them all in the same PR without extra configuration.
The enterprise plan is built for organizations that need more control, privacy, and flexibility. Here is what it includes:

Multiple Organization Support
Manage distinct engineering teams or entities under a single subscription.

SSO & Directory Sync
Connect your internal user directory through SAML or OIDC, so your team can log in without managing separate credentials.

Self-Hosted Deployment
Run LiveReview entirely within your own infrastructure, keeping all your code and review data inside your network.

Custom Domain
Host LiveReview on your own company-branded subdomain.

Full Data Privacy
Complete control over where your code and review data is stored and who can access it.
Yes. If your team runs a private self-hosted AI model and wants to use it instead of LiveReview's default models, you can opt for the enterprise plan. Our technical support team will help you set it up on your own infrastructure.
In self-hosted mode with Ollama, the model runs entirely on customer-controlled infrastructure. The operator is responsible for choosing and managing the model. For external providers, the integration is explicitly configured, so the model being used is always known to the operator.
Enterprise customers get a dedicated SLA with guaranteed response and turnaround times for critical issues, so your team is never left waiting when something urgent comes up.
The enterprise plan is a good fit for organizations that handle sensitive codebases, require SSO for compliance, want to self-host for data privacy, or need guaranteed support response times.

Loved by the community

22 developers are sharing git-lrc on LinkedIn. Swipe through what they had to say.

LiveReview Logo

Start Reviewing Smarter Today

Cloud-hosted, fully managed, zero setup

Start reviewing code in minutes!