Ellipsis Review (2026)
Y Combinator-backed AI code review bot that automatically reviews every commit, fixes bugs, enforces style guides, and generates code. Reduces time-to-merge by 13%.
Rating
Starting Price
$20/user/month
Free Plan
Yes
Languages
20
Integrations
2
Best For
Teams wanting fast, high-signal AI code reviews with built-in code generation and bug-fixing capabilities that go beyond just flagging issues
Last Updated:
Pros & Cons
Pros
- ✓ High signal-to-noise ratio with multi-stage filtering pipeline
- ✓ Fast review turnaround (2-5 minutes per commit)
- ✓ Free for public GitHub repos and approved open-source projects
- ✓ Can generate working code and fix bugs, not just review
- ✓ SOC 2 Type 1 compliant with zero source code retention
- ✓ Y Combinator backed (W24) with $2M+ seed funding
Cons
- ✕ No self-hosted or on-premise deployment option
- ✕ Struggles with work-in-progress or incomplete code, leading to false positives
- ✕ No Bitbucket or Azure DevOps integration
- ✕ Limited IDE integration compared to competitors like Sourcery
- ✕ Enterprise tier details not publicly documented
Features
Ellipsis Overview
Ellipsis is a Y Combinator-backed (W24 batch) AI code review tool that positions itself not just as an automated reviewer but as a full AI teammate. Built by a team with deep machine learning expertise and backed by $2 million in seed funding, Ellipsis goes beyond the typical “flag issues and leave comments” approach of most AI code review tools. It reviews every commit on every pull request, catches logical bugs and security vulnerabilities, enforces your team’s style guide in natural language, and can actually generate working, tested code to fix the issues it finds. This last capability, the ability to not just identify problems but implement solutions, is what distinguishes Ellipsis from most competitors in the AI code review space.
The tool processes nearly 4,000 commits daily across its user base and has been measured to reduce average time-to-merge by 13%, with some nimble teams reporting up to 50% reductions. Ellipsis installs as a GitHub or GitLab app and begins reviewing automatically, no CI/CD configuration or Docker setup required. For open-source projects and public GitHub repositories, Ellipsis is completely free, which has helped it build a loyal following in the developer community.
Ellipsis sits in a competitive market alongside tools like CodeRabbit, Sourcery, and PR-Agent, but its combination of code generation capabilities, a disciplined approach to reducing false positives, and a straightforward $20/user/month pricing model (with no complex credit systems) makes it a compelling option for teams that want actionable AI assistance without the noise that plagues many alternatives.
Feature Deep Dive
AI Code Review on Every Commit. Unlike tools that only review the final PR diff, Ellipsis reviews every commit on every pull request. This means it catches issues as they are introduced, not just at the end of a development cycle. Each review generates inline comments on specific code lines plus a high-level PR summary that gives human reviewers immediate context about the scope, risk, and intent of a change. Reviews typically complete in two to five minutes, fast enough to be available before the developer context-switches to another task.
Multi-Stage False Positive Filtering Pipeline. False positives are the number one complaint developers have about AI code review tools, and Ellipsis takes this problem seriously. Every AI-generated comment passes through a multi-stage filtering pipeline that includes deduplication (avoiding repeated comments on similar patterns), a confidence filter (each comment receives a confidence score, and you can adjust the threshold), a logical correctness and hallucination filter, and comment editing for clarity. The result is a noticeably higher signal-to-noise ratio compared to noisier alternatives like CodeRabbit.
One-Click Bug Fixes. When Ellipsis identifies an obvious bug during review, it does not just flag the issue. It generates a concrete code fix and presents it as a suggestion that can be committed directly from the PR interface with a single click. This eliminates the back-and-forth cycle of “reviewer flags issue, developer acknowledges, developer writes fix, reviewer re-reviews” and can save significant time on straightforward fixes.
AI-Powered Code Generation. Developers can assign tasks to Ellipsis directly via GitHub comments, and the tool will generate working, tested code in response. The generated code can span multiple files and hundreds of lines, and it is delivered as a commit or pull request. This capability makes Ellipsis useful beyond just code review; it can handle small feature implementations, refactoring tasks, and bug fixes that would otherwise require a developer’s direct attention.
Natural Language Style Guide Enforcement. Instead of requiring teams to write complex linter rules or regular expressions, Ellipsis lets you define your coding standards in plain English. For example, you can write a rule like “all new code should include unit tests” or “never use var in TypeScript, always use const or let.” Rules can be added manually through the UI, inferred from your team’s historical PR comments, or extracted from style guide files already in your repository. Ellipsis then automatically flags violations during every review.
Changelog and Release Notes Generation. Ellipsis can generate weekly summaries of codebase changes, providing a clear overview of what changed and why. This is useful for engineering managers who need visibility into team output, product managers who want to understand technical progress, and teams that maintain public-facing changelogs.
Codebase Q&A. By tagging Ellipsis in a GitHub comment, developers can ask questions about the codebase and receive AI-generated answers. This is particularly useful for onboarding new team members or understanding unfamiliar parts of a large codebase without having to track down the original author.
Adjustable Confidence Thresholds. Every comment Ellipsis generates includes an internal confidence score. Teams can raise or lower the threshold to control the volume and precision of AI feedback. A higher threshold means fewer but more confident comments; a lower threshold casts a wider net. This lets each team find their own preferred balance between thoroughness and noise.
Pricing and Plans
Ellipsis keeps its pricing model refreshingly simple compared to competitors that use complex credit systems or per-commit pricing:
Free for Public Repositories. Ellipsis is completely free for public GitHub repositories with no usage limits. Simply install the app and it starts reviewing. This also extends to approved open-source projects, regardless of whether the repository is public. This makes Ellipsis one of the most generous free tiers in the AI code review space.
7-Day Free Trial for Private Repositories. Teams can try Ellipsis on private repositories for seven days with no credit card required. This gives you enough time to evaluate review quality on your actual codebase before committing.
Pro Plan ($20/user/month). The paid plan is a flat $20 per developer per month, which includes unlimited AI code reviews on every commit, PR summaries, unlimited code generation, Q&A functionality, custom style guide enforcement, and team analytics. Pricing is per-seat; you purchase a fixed number of seats that can be assigned to developers, and each developer gets unlimited access across all repositories.
For context, here is how Ellipsis compares on price: CodeRabbit Pro starts at $19/user/month, Sourcery Team costs $29/developer/month, and Qodo Merge Teams runs $30/user/month. Ellipsis falls at the lower end of the spectrum while including code generation capabilities that most competitors charge extra for or do not offer at all.
Enterprise. Ellipsis offers SOC 2 Type 1 compliance and zero source code retention (code only exists in a private AWS VPC during processing). For enterprise-specific needs like dedicated support or custom integrations, the team encourages direct contact. Enterprise pricing is not publicly listed.
How Ellipsis Works
GitHub App Installation. Ellipsis integrates as a native GitHub app. You install it from the GitHub Marketplace, authorize it on your selected repositories, and it immediately begins reviewing every new commit on every pull request. There is no CI/CD pipeline to configure, no Docker containers to manage, and no API keys to provision. GitLab integration is also available.
Automatic Review on Every Commit. Once installed, Ellipsis monitors every PR for new commits. When a commit is pushed, Ellipsis analyzes the diff, runs it through its review pipeline and filtering stages, and posts inline comments and a PR summary within two to five minutes. The review covers logical bugs, anti-patterns, security vulnerabilities, and style guide violations.
Comment-Based Task Assignment. To assign code generation or bug-fixing tasks, developers simply comment on an issue or PR and tag Ellipsis with instructions like “Ellipsis, fix this bug” or “Ellipsis, add unit tests for this function.” The AI generates working code, runs tests, and delivers the result as a commit or new PR. This makes Ellipsis usable as a lightweight AI coding agent, not just a reviewer.
Configuration via UI and Repository Files. Style guide rules can be managed through the Ellipsis web UI or defined in configuration files committed to the repository. Rules defined at the repo level ensure that every team member and every branch inherits the same standards. Historical PR comments can also be analyzed to infer unwritten team conventions.
Analytics Dashboard. The Pro plan includes a team analytics dashboard that tracks review metrics, time-to-merge trends, common issue categories, and individual developer statistics. This gives engineering managers data-driven visibility into how the AI reviewer is impacting their team’s workflow.
Who Should Use Ellipsis
Teams tired of noisy AI reviews. If you have tried CodeRabbit or similar tools and found the volume of comments overwhelming, Ellipsis’s multi-stage filtering pipeline and adjustable confidence thresholds are specifically designed to solve this problem. The tool prioritizes precision over recall, meaning it would rather miss a marginal issue than waste your time with a false positive.
Open-source maintainers. Free unlimited usage on public repositories and approved open-source projects makes Ellipsis an obvious choice for maintainers who want AI assistance reviewing community contributions without any cost.
Small to mid-size teams (5-50 developers). The $20/user/month pricing is competitive, and the seat-based model with unlimited reviews means costs are predictable. Teams in this range get the most value because Ellipsis acts as an always-available reviewer that catches the issues human reviewers miss due to time pressure.
Teams that want AI to write code, not just review it. If you are looking for a tool that can handle small bug fixes, write unit tests, and implement minor features in addition to reviewing code, Ellipsis’s code generation capability is a genuine differentiator. Most competitors stop at leaving comments.
Startups moving fast with small review teams. When you only have two or three developers reviewing each other’s code, having an AI reviewer that catches the easy stuff before human review begins means your limited review time is spent on architecture and design decisions rather than catching typos and style violations.
Ellipsis vs Alternatives
Ellipsis vs CodeRabbit. CodeRabbit is the most well-known AI code review tool, and it provides the most comprehensive out-of-the-box reviews with detailed walkthrough summaries and 40+ integrated code analyzers. However, CodeRabbit is frequently criticized for being noisy, leaving a high volume of comments per PR that can overwhelm developers and clutter the GitHub timeline. Ellipsis takes the opposite approach, prioritizing precision with its multi-stage filtering pipeline. Ellipsis also offers code generation and bug-fixing capabilities that CodeRabbit lacks. On platform support, CodeRabbit has the edge with Bitbucket support, while Ellipsis is limited to GitHub and GitLab. Pricing is nearly identical: CodeRabbit Pro at $19/user/month versus Ellipsis Pro at $20/user/month.
Ellipsis vs PR-Agent (Qodo Merge). PR-Agent is the open-source alternative that offers self-hosted deployment and support for GitHub, GitLab, Bitbucket, and Azure DevOps. If you need to keep code on your own infrastructure, PR-Agent is the clear winner since Ellipsis has no self-hosted option. However, PR-Agent’s hosted tier (Qodo Teams) costs $30/user/month, making it 50% more expensive than Ellipsis, and it requires managing LLM credits rather than offering unlimited usage. Ellipsis’s code generation and one-click bug fix features give it an advantage for teams that want the AI to do more than just comment. PR-Agent’s command-based interface (using /review, /improve, etc.) gives more granular control, while Ellipsis takes a more automated “just works” approach.
Ellipsis vs Sourcery. Sourcery focuses on clean code principles and offers IDE integration (VS Code, PyCharm) that Ellipsis lacks. Sourcery also supports 30+ languages and provides instant in-editor feedback. However, Sourcery only scans one file at a time and lacks cross-file dependency analysis, which limits its ability to catch issues that span multiple files. Sourcery’s Team plan at $29/developer/month is significantly more expensive than Ellipsis Pro. For teams that primarily want PR-level review (not IDE-level), Ellipsis offers better value and more features.
Ellipsis vs GitHub Copilot Code Review. GitHub’s native Copilot code review is the most convenient option for teams already using GitHub Copilot, as it is built directly into the platform. However, it is limited to GitHub only, offers less configurability than Ellipsis, and does not provide code generation or bug-fixing capabilities. Ellipsis also supports GitLab and provides richer style guide enforcement.
Pros and Cons Deep Dive
What users love. Ellipsis has earned a 4.5/5 user rating on review platforms, with users consistently praising three things: the high signal-to-noise ratio (developers say the comments are “thoughtful” and “worth reading,” unlike many AI reviewers), the speed of reviews (two to five minutes means feedback arrives before you context-switch), and the code generation capability (users describe it as “an AI teammate that actually does work, not just points at problems”). The free public repository tier also earns goodwill from the open-source community.
Where it needs improvement. The most common criticism is that Ellipsis struggles with work-in-progress code. If you push incomplete code to a PR for early feedback, Ellipsis may flag issues that you already intend to fix, creating noise. The lack of Bitbucket and Azure DevOps support is a dealbreaker for some organizations, and the absence of a self-hosted option means regulated industries (healthcare, finance, government) may not be able to use it at all. Some users also report that while the AI suggestions are generally accurate, they occasionally need human review and will not catch every edge case, particularly in domain-specific or unconventional codebases.
Security posture. Ellipsis is SOC 2 Type 1 compliant and does not persist source code anywhere. Code only exists on their servers in a private AWS VPC while a job is being processed, and it is deleted immediately afterward. They do not use customer code for model training. This is a strong security posture for a SaaS tool, though it still may not satisfy organizations that require all data to remain on-premises.
Pricing Plans
Free (Public Repos)
Free
- Unlimited reviews on public GitHub repos
- AI code review on every commit
- PR summaries
- 7-day free trial for private repos
Pro
$20/user/month
- Unlimited reviews on all repositories
- Custom style guide enforcement
- AI code generation and bug fixes
- Q&A and changelog generation
- Team analytics dashboard
- SOC 2 Type 1 compliant
Supported Languages
Integrations
Our Verdict
Ellipsis stands out as an AI teammate that does not just review code but actively fixes bugs and generates working implementations. Its high signal-to-noise ratio and free public repo support make it an excellent choice for teams tired of noisy AI reviewers, though the lack of self-hosting limits its appeal for regulated industries.
Frequently Asked Questions
Is Ellipsis free?
Yes, Ellipsis offers a free plan. Paid plans start at $20/user/month.
What languages does Ellipsis support?
Ellipsis supports JavaScript, TypeScript, Python, Go, Java, Ruby, PHP, C#, Rust, Kotlin, Swift, Dart, Scala, C++, Lua, Elixir, Haskell, R, Shell, SQL.
Does Ellipsis integrate with GitHub?
Ellipsis does not currently integrate with GitHub. It supports github, gitlab.