# Ellipsis (software)

> Source: https://aiwiki.ai/wiki/ellipsis_dev
> Updated: 2026-06-04
> Categories: AI Code Generation, AI Companies, Developer Tools
> From AI Wiki (https://aiwiki.ai), a free encyclopedia of artificial intelligence. Quote with attribution.

**Ellipsis** (stylized in lowercase as ellipsis, at ellipsis.dev) is an AI-powered code-review tool that automatically reviews GitHub pull requests and can make code changes in response to comments. The product installs as a GitHub app: when a pull request is opened, Ellipsis uses [large language model](/wiki/large_language_model) agents to flag logical bugs, anti-patterns, security issues, and style-guide violations, and developers can tag the bot (`@ellipsis-dev`) in a comment to have it write a fix, answer a question about the codebase, or generate new code. Ellipsis was founded in 2023 by Hunter Brooks and Nick Bradford and took part in [Y Combinator](/wiki/y_combinator)'s Winter 2024 (W24) batch. The company raised a $2 million seed round in April 2024 and positions itself in the crowded market for AI code review alongside tools such as [CodeRabbit](/wiki/coderabbit), [Greptile](/wiki/greptile), and Graphite Reviewer.

## History

### Founding

Ellipsis was founded in 2023 by Hunter Brooks (co-founder and chief executive) and Nick Bradford (co-founder). On Crunchbase the company is recorded under the legal/former name BitBuilder. The two founders met through backgrounds in machine learning and software engineering. According to the company's Y Combinator launch profile, Brooks had previously worked as a machine-learning engineer at Amazon Web Services and Amazon Ads, with earlier roles at the fintech firms Brigit and Capital One, and had published astrophysics research before moving into programming. Bradford had been a founding engineer at Grit (an AI codebase-migration startup), had done [LLM](/wiki/llm) interpretability research at Redwood Research, had managed a team at Hyperscience, and had built trading algorithms at Bridgewater Associates. The startup is based in New York City.

Ellipsis was accepted into Y Combinator's Winter 2024 batch. It made a public Show HN launch on Hacker News on February 28, 2024, under the title "Show HN: Ellipsis, Automatic pull request reviews," describing a tool that reviews a pull request automatically whenever one is opened, framed as a step toward an "AI software engineer." A second Show HN, "Ellipsis, Automated PR reviews and bug fixes," followed in May 2024.

In 2025, Nick Bradford's public profiles indicated that he had moved on to work at the AI coding company [Cursor](/wiki/cursor) on cloud agents; the Y Combinator company page continued to list both Brooks and Bradford as co-founders, with Brooks as the active CEO.

### Funding

Public records on Crunchbase show two early financing events, followed by the announced seed round.

| Round | Date | Amount | Notes |
| --- | --- | --- | --- |
| Pre-seed | February 27, 2024 | Undisclosed | Recorded on Crunchbase (under the BitBuilder entity) |
| Seed | April 11, 2024 | $2 million | Announced publicly by the company |

The company announced the $2 million seed round on its blog. Named participants included the venture firms Twenty Two Ventures, Four Cities Capital, Garage Capital, Amino Capital, Transpose Platform Management, and Pioneer Fund, along with a group of Y Combinator partners and angels including Dalton Caldwell, David Lieb, Garry Tan, Brad Flora, and Gustaf Alstromer. Ellipsis was later included in Business Insider's October 2024 roundup of AI coding startups that had raised the most venture funding.

## How it works

Ellipsis is a cloud-based GitHub application rather than a local tool or IDE plugin. Its workflow is built around the pull request:

- **Automated review.** When a pull request is opened or updated, Ellipsis reviews the diff on every commit, flagging logical mistakes, anti-patterns, security vulnerabilities, and violations of the team's style guide. The company emphasizes keeping the false-positive rate low so reviews stay useful.
- **Code changes from comments.** A developer can reply to a review comment or open a thread tagging `@ellipsis-dev` (for example, "fix this") and Ellipsis will generate a patch. The company says it returns "working, tested code," and changes are proposed as separate pull requests that a human must approve before merging.
- **Style guide as code.** Teams write their coding standards in natural language (for example, "ensure new API endpoints have corresponding documentation") and Ellipsis flags violations against those rules. The company says the system learns over time which kinds of comments a team values and tunes its reviews accordingly.
- **Codebase question answering.** Developers can tag the bot to ask context-aware questions about the codebase or a specific pull request, which the company positions as useful for onboarding.
- **Summaries and reports.** Ellipsis auto-generates pull request descriptions and can produce release notes and changelogs summarizing recent changes.
- **Workflows.** The product supports conditional automations ("if X happens, Ellipsis should do Y") and scheduled jobs.

The company reports integrations with GitHub (required), [Slack](/wiki/slack), and [Linear](/wiki/linear). As of 2026 its documentation and third-party reviews describe the product as GitHub-only, with no support for GitLab, Bitbucket, or Azure DevOps, and no self-hosted option.

### Technology

Co-founder Nick Bradford has described Ellipsis's architecture in technical write-ups. Rather than a single large agent driven by one big prompt, Ellipsis is built from many smaller [LLM agents](/wiki/ai_agents) that can be independently benchmarked and optimized, an approach the company calls decomposition. This lets the system mix different underlying models for different tasks; Bradford has cited using both OpenAI's [GPT-4o](/wiki/gpt_4o) and Anthropic's [Claude](/wiki/claude) (Sonnet 3.5), and has noted experimenting with OpenAI's o1 for harder problems.

The review pipeline runs multiple "comment generators" in parallel, each looking for a different class of issue (such as custom-rule violations or code duplication). Their output passes through filtering stages that deduplicate overlapping comments, check for hallucinations using attached evidence links, apply a confidence threshold that customers can configure, and incorporate user feedback through an embedding search over previously rated comments. A separate code-search subagent uses multi-step [retrieval-augmented generation](/wiki/retrieval_augmented_generation) combining keyword and vector search, with tree-sitter abstract-syntax-tree parsing to chunk code at the function and class level and LLM-generated file summaries for higher-level queries. Instead of relying on a simple similarity cutoff, an LLM-based classifier selects which code is relevant given the agent's current context.

Operationally, GitHub webhook events are routed (via Hookdeck) to a FastAPI web application and then onto a Hatchet workflow queue, an asynchronous design that the company says prioritizes accuracy over latency. For evaluation, the team builds small benchmark sets, uses LLM-as-judge grading (made more reliable for code search by requiring verifiable evidence), and runs an "agent trajectory auditor" that diagnoses where an agent failed. Bradford has said the team favors prompt iteration, few-shot examples, and composability over [fine-tuning](/wiki/fine_tuning).

## Security

Ellipsis states that it does not persist customer source code: code exists only in memory on its servers, inside a private AWS virtual private cloud, while a job is being processed, and is not stored afterward. The company says it holds a SOC 2 Type I certification.

## Pricing

Ellipsis publishes a simple pricing model. Public GitHub repositories are reviewed for free with no feature limits, which the company markets to open-source projects. For private repositories, Ellipsis charges a flat per-developer fee for unlimited use, reported at $20 per developer per month (some third-party comparisons cite $19), with a 7-day free trial.

## Reception and adoption

Ellipsis received early attention within the Y Combinator and startup founder community for the quality of its reviews. The company's headline claim is that teams using Ellipsis merge pull requests about 13% faster on average than teams without AI code review. To measure work, Ellipsis says it uses a "Units of Work" metric based on change complexity rather than raw lines of code.

The company's self-reported adoption has grown over time. At its February 2024 launch it cited a small number of early customers; by the time of the seed announcement it reported over 90 companies using the product, and by 2026 its marketing cited figures in the range of hundreds of companies and tens of thousands of GitHub repositories, with named customers including the terminal company Warp and the LLMOps startup PromptLayer. These usage figures are company-stated and have not been independently audited.

In independent comparisons of AI code-review tools published in 2025 and 2026, reviewers generally placed Ellipsis among the credible options while noting trade-offs. Coverage praised its low-noise reviews and its ability to apply fixes on command, and in at least one hands-on test a reviewer reported that Ellipsis caught a React state-management bug that other tools and human reviewers had missed. Common criticisms were that it supports only GitHub, that it is weaker on less common languages such as Go and Rust, and that it is less suited to deep architectural analysis.

## Positioning and competitors

Ellipsis competes in a fast-growing category of AI code-review and pull-request automation products. Its closest comparisons in independent reviews are:

| Tool | Notable contrast with Ellipsis |
| --- | --- |
| [CodeRabbit](/wiki/coderabbit) | Supports more platforms (GitHub, GitLab, Bitbucket, Azure DevOps) and tends to generate more comments; widely treated as the mature default. |
| [Greptile](/wiki/greptile) | Builds a retrieval index over the whole codebase for cross-file, context-aware reviews; typically priced higher. |
| Graphite Reviewer | Part of Graphite's stacked-pull-request workflow and code-review platform. |
| Qodo (formerly Codium) | Another AI review and test-generation tool frequently benchmarked alongside Ellipsis. |

Ellipsis differentiates itself less on breadth of platform support and more on combining review with action: it not only comments on a pull request but can also write the fix, answer questions, and generate code from a comment, reflecting the founders' stated long-term goal of an autonomous AI software engineer. The broader space is also influenced by general-purpose AI coding tools such as [Cursor](/wiki/cursor) and [GitHub Copilot](/wiki/github_copilot), the latter of which has added its own pull-request review feature.

## Related

[CodeRabbit](/wiki/coderabbit) - [Greptile](/wiki/greptile) - [Cursor](/wiki/cursor) - [GitHub Copilot](/wiki/github_copilot) - [AI code generation](/wiki/ai_code_generation) - [AI agents](/wiki/ai_agents) - [Large language model](/wiki/large_language_model) - [Retrieval-augmented generation](/wiki/retrieval_augmented_generation) - [Y Combinator](/wiki/y_combinator)

## References

1. "Ellipsis: AI code reviews & bug fixes." Y Combinator, accessed 2026-06-04. https://www.ycombinator.com/companies/ellipsis
2. "Launch YC: Ellipsis, Automated code reviews & bug fixes." Y Combinator, 2024. https://www.ycombinator.com/launches/KW7-ellipsis-automated-code-reviews-bug-fixes
3. "Ellipsis.dev | Automated code reviews." Ellipsis, accessed 2026-06-04. https://www.ellipsis.dev/
4. "Ellipsis raises a $2M Seed Round." Ellipsis, 2024. https://www.ellipsis.dev/blog/ellipsis-raises-a-2m-seed-round
5. "How we built Ellipsis." Nick Bradford / Ellipsis, 2024. https://www.nsbradford.com/blog/how-we-built-ellipsis
6. "Show HN: Ellipsis, Automatic pull request reviews." Hacker News, 2024-02-28. https://news.ycombinator.com/item?id=39526616
7. "Show HN: Ellipsis, Automated PR reviews and bug fixes." Hacker News, 2024-05. https://news.ycombinator.com/item?id=40309719
8. "Introduction." Ellipsis Documentation, accessed 2026-06-04. https://docs.ellipsis.dev/introduction
9. "Seed Round, Ellipsis, 2024-04-11." Crunchbase, accessed 2026-06-04. https://www.crunchbase.com/funding_round/bitbuilder-91a2-seed--9dd8c96b
10. "Pre Seed Round, Ellipsis, 2024-02-27." Crunchbase, accessed 2026-06-04. https://www.crunchbase.com/funding_round/bitbuilder-91a2-pre-seed--581bb82b
11. "Ellipsis, Crunchbase Company Profile & Funding." Crunchbase, accessed 2026-06-04. https://www.crunchbase.com/organization/bitbuilder-91a2
12. "Hunter Brooks, Cofounder & CEO, ellipsis.dev (YC W24)." LinkedIn, accessed 2026-06-04. https://www.linkedin.com/in/seanhunterbrooks/
13. "Nick Bradford." LinkedIn / nsbradford.com, accessed 2026-06-04. https://www.nsbradford.com/
14. "Ellipsis Review 2026: AI Code Review Tool for $20/mo." WeavAI Blog, 2026-05-01. https://weavai.app/blog/en/2026/05/01/ellipsis-review-2026-ai-code-review-tool-for-20-mo/
15. "AI Code Review Tools Compared: CodeRabbit vs Copilot vs Sourcery vs Ellipsis." DeployHQ, accessed 2026-06-04. https://www.deployhq.com/blog/ai-code-review-tools-compared-coderabbit-copilot-sourcery-ellipsis
16. "Building and Deploying Production LLM Code Review Agents: Architecture and Best Practices." ZenML LLMOps Database, accessed 2026-06-04. https://www.zenml.io/llmops-database/building-and-deploying-production-llm-code-review-agents-architecture-and-best-practices
17. "Ellipsis (YC W24): AI code reviews & bug fixes." Product Hunt, accessed 2026-06-04. https://www.producthunt.com/products/ellipsis-2
18. "Ellipsis, GitHub organization." GitHub, accessed 2026-06-04. https://github.com/ellipsis-dev

