OSS Tanbou

OSS catalog

CRM

View on GitHub

Comp AI CRM โ€” an agentic-first CRM where AI researches, records, and schedules its own follow-ups

Stars
0

Overview

Comp AI CRM is an open-source CRM designed around the agent rather than adding AI beside a conventional CRM. The agent runs as its own deployment with a durable work queue, keeps researching after the browser closes, chooses what to inspect next, schedules future checks, and writes findings back to CRM records. Its distinctive safety model avoids using the model's own confidence as proof: tools report observable evidence such as an email signature or GitHub account identity, strong evidence can update a record, and weaker evidence remains a suggestion for a human to settle.

Features and best fit

Based on official documentation; not hands-on tested ยท Content checked:

Treat the CRM as the agent's working record, not merely a database the agent can call

The research agent is deployed separately on eve and uses durable sessions, tools, skills, and schedules to continue CRM work over time. Tasks live in a Postgres-backed queue, with leases and FOR UPDATE SKIP LOCKED allowing multiple dispatchers to claim disjoint work safely. When an account or contact should be revisited, the agent schedules a new dueAt with a reason instead of relying on a blanket cron rule, so follow-up cadence belongs to each unit of work.

Sources: [1][2]

Write customer facts from observable evidence instead of model confidence

For identity and enrichment work, tools do not accept confidence scores; they report what was actually observed, such as a CRM signature block or a GitHub account identity. The evidence layer decides whether a fact is strong enough to write, while weaker or conflicting findings become suggestions for a representative. The research sandbox also uses deny-all network egress and is never given DATABASE_URL, reducing the paths through which mailbox or CRM content could leave via arbitrary shell commands while still letting the agent use local text-processing tools.

Sources: [1][2]

For sales and RevOps teams that want research and CRM maintenance to run continuously

Comp AI CRM fits teams that want to start with information they already own โ€” mail, meetings, threads, and signature blocks โ€” and use optional external research only when useful. It is particularly relevant when autonomous enrichment is desirable but guessed customer facts are not: the Agent tab exposes the work being done and the system keeps provenance and unresolved suggestions visible. Google or Microsoft identity and mailbox integrations make it a practical comparison point for teams trying to move from a CRM that humans constantly maintain toward one where agents perform much of the research and upkeep.

Sources: [1][2]

It is intentionally single-tenant and operationally more involved than a conventional CRUD CRM

The codebase deliberately has no organization model and is designed as a single-tenant CRM. Running it involves an agent deployment, Next.js frontend, NestJS API, Postgres, authentication, and โ€” in the documented production stack โ€” services such as Vercel Sandbox, AI Gateway, and Blob. That architecture offers durable autonomous work, but it also requires more deployment and operational understanding than a simple CRM application. Optional research providers also bring their own pricing and data-handling terms.

The repository's default release branch is the last tagged release intended for running the product, while main receives unreleased work. Deployments should therefore evaluate the release branch rather than assuming main is the stable target. The code is MIT-licensed, but the terms of Google, Microsoft, Vercel, model providers, and other connected services are separate from the repository license.

Sources: [1][3]

Official sources

  1. [1]trycompai/crm โ€” README(2026-09-14)
  2. [2]Comp AI CRM โ€” Agent architecture(2026-09-14)
  3. [3]trycompai/crm โ€” LICENSE(2026-09-14)

Growth

Growth trends ยท Last 30 days

0 Stars

Trend data is still being collected.

GitHub data

GitHub dataView detailed GitHub data
Stars
0
Forks
0
Watchers
0
Open issues
0
Report incorrect information

Tell us if any listing information is incorrect or outdated.

CRM โ€” OSS Tanbou discovery notes | OSS Tanbou