mrkeyoor.com_
Sun 02 Aug 01:00 UTC
Self-Hostedevaluationupdated 01 Aug 2026

twenty

Twenty is an open-source, developer-focused Customer Relationship Management (CRM) platform. It provides the core building blocks of a CRM, but allows technical teams to define, extend, and manage it as code, just like any other software application. This solves the problem of rigid, off-the-shelf CRMs that can't adapt to complex or rapidly changing business requirements.

Verdict

Twenty is a brilliantly modern take on the CRM, but it's aimed squarely at a specific niche: companies that run on code. If you believe your business processes should be version-controlled, peer-reviewed, and deployed like software, Twenty is not just a good choice—it's the tool you've been waiting for. However, its ambiguous license is a serious red flag that prevents an unreserved recommendation for business-critical use until it's resolved.

Setup4/5Excellent options for developers (CLI, Docker), plus a cloud offering.
Docs4/5Comprehensive docs for both users and developers are linked prominently.
Community4/5Massive star count, active Discord, and a healthy number of open issues.
Maturity3/5Functionally solid, but the 'NOASSERTION' license is a major legal risk.

Who it’s for

  • Engineering-led companies that treat their business logic as a core, version-controlled asset.
  • Developers tasked with building a highly custom internal CRM who want a modern, extensible foundation instead of starting from scratch.
  • Technical teams frustrated with the limitations and "configuration-over-code" approach of platforms like Salesforce or HubSpot.
  • Organizations that need to self-host their CRM for data privacy, security, or compliance reasons.

Who it’s NOT for

  • Non-technical teams (e.g., sales, marketing) who need a CRM that works out of the box with no developer involvement.
  • Small businesses without access to TypeScript developers to set up and customize the system.
  • Anyone looking for a simple, no-code/low-code CRM with a massive marketplace of pre-built integrations.
  • Companies with strict legal or procurement processes, due to the project's ambiguous licensing.

Setup reality

For its target audience of developers, getting started with Twenty looks refreshingly straightforward. The README presents three clear paths: a managed cloud service for instant access, a self-hosting option via a standard Docker Compose file, and a CLI command (npx create-twenty-app) to scaffold a new project. The CLI and Docker options are familiar workflows for any modern developer and likely live up to the promise of a quick start. While self-hosting any application has potential pitfalls, the provided path seems as smooth as one could hope for.

For decades, the CRM has been the unchallenged domain of the sales team, a walled garden of point-and-click configurations, proprietary languages, and eye-watering licensing fees. Open-source alternatives often felt like pale imitations, chasing the feature set of giants like Salesforce without rethinking the fundamental approach. Twenty storms onto this scene not as another clone, but as a bold re-imagining of what a CRM can be when it's built by and for developers.

Its core proposition, emblazoned across its README, is to make your CRM something you "build, ship, and version like the rest of your stack." This isn't just marketing fluff; it's a foundational philosophy that permeates the entire project.

The CRM as Code

The most compelling feature of Twenty is its "CRM as Code" paradigm. Instead of navigating endless nested menus in a web UI to add a custom field, you define your data models in TypeScript. The README provides a perfect, concise example:

export default defineObject({
  nameSingular: 'deal',
  // ...
  fields: [
    { name: 'name', label: 'Name', type: FieldType.TEXT },
    { name: 'amount', label: 'Amount', type: FieldType.CURRENCY },
  ],
});

For a non-developer, this is intimidating. For an engineering team, it's a revelation. This simple code file can now be committed to Git, reviewed by a teammate in a pull request, and deployed through a CI/CD pipeline. Your business logic—what constitutes a "deal," a "contact," or a "company"—is no longer trapped in an opaque database schema managed by a GUI. It's transparent, versioned, and testable source code. This approach transforms the CRM from a static tool the business uses into a dynamic application the business builds.

Twenty provides the essential primitives to make this happen: objects (your data models), views (how data is displayed), agents (for automation and AI), and logic functions. The screenshots in the README showcase a clean, modern interface for presenting the data and layouts you define in code, suggesting a polished user experience on the front end.

Flexible Deployment and Onboarding

Twenty wisely avoids being dogmatic about deployment. It meets developers where they are by offering three distinct paths to get started. The managed cloud offering is the path of least resistance, letting you spin up a workspace in minutes to kick the tires. For those who need full control, the self-hosted Docker Compose setup is a well-understood industry standard.

But the npx create-twenty-app command is the real sweet spot for its target audience. It scaffolds a local development environment, letting you immediately start defining objects and building your custom CRM logic. Once ready, you can npx twenty app:publish to ship your changes. This workflow is instantly familiar to any modern web developer and dramatically lowers the barrier to creating and maintaining a bespoke CRM.

Rough Edges and a Glaring Weakness

No project is perfect, and Twenty has some significant caveats. The most critical is its license: NOASSERTION. This is a SPDX identifier meaning that the project has not provided a license. For a hobby project, this is an oversight. For a tool intended to be the central nervous system of a business, it's a deal-breaker. No corporate legal team will approve the use of mission-critical software with an undefined license. It's an astonishing omission for a project with over 50,000 stars and a commercial cloud offering. Until this is clarified with a standard open-source license like MIT or AGPL, using Twenty in a production business environment carries substantial legal risk.

Beyond that major issue, there are smaller oddities. The latest release date is listed as being in 2026, which is almost certainly a typo but suggests a minor lack of attention to detail in repository metadata. With 133 open issues, there are clearly known bugs and feature gaps, which is normal for any active project but worth noting.

Finally, the very strength of its code-first approach is also a weakness. This is not a tool for teams without dedicated developer resources. The power it offers comes at the cost of requiring specialized skills to wield it.

Community and The Big Picture

With over 54,000 GitHub stars, Twenty has clearly struck a nerve. This is a massive level of interest that points to a widespread desire for a more modern, developer-centric CRM. The project fosters an open community with a public roadmap, Discord server, and even Figma design files. This transparency is commendable and suggests a healthy, active project.

Ultimately, Twenty is best understood as a CRM framework. It gives you the well-designed foundation and the tools to build the exact CRM your business needs, without forcing you into the rigid structure of an off-the-shelf product. It's the answer for any company whose business processes are so unique that they're constantly fighting their tools. If your team lives in Git and thinks in pull requests, Twenty allows you to finally manage your customer data with the same rigor and flexibility you apply to your application code.

Alternatives

ProjectWhat it isPick it when
SuiteCRMA mature, feature-complete open-source CRM that is a fork of the legacy SugarCRM.You need a traditional, full-featured CRM out-of-the-box and prefer GUI-based configuration over a code-first approach.
ERPNextA full-fledged open-source ERP system that includes a powerful CRM module.Your needs go beyond CRM to include accounting, inventory, and HR, and you want them all in one integrated system.
OdooA suite of open-source business apps, including CRM, built on a modular framework.You want to start with a CRM but anticipate needing to add other business functions (like e-commerce or project management) from the same platform later.

What people are saying

  1. [hackernews] Twenty-five years ago it was cryptography, today it's model weights

Sources

  1. Repo
  2. Homepage