<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Sales-Agent on ToolGenix — Open-Source AI &amp; Developer Tools: Honest Hands-On Reviews</title>
    <link>https://toolgenix.nxtniche.com/tags/sales-agent/</link>
    <description>Recent content in Sales-Agent on ToolGenix — Open-Source AI &amp; Developer Tools: Honest Hands-On Reviews</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 03 Aug 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://toolgenix.nxtniche.com/tags/sales-agent/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Comp AI: Open-Source CRM Where an AI Agent Sells (2026)</title>
      <link>https://toolgenix.nxtniche.com/posts/article-2026-08-03-main/</link>
      <pubDate>Mon, 03 Aug 2026 00:00:00 +0000</pubDate>
      <guid>https://toolgenix.nxtniche.com/posts/article-2026-08-03-main/</guid>
      <description>Comp AI is an open-source CRM where a durable AI agent does the selling on your VPS — observed facts only, no guessed confidence. Here&amp;#39;s my hands-on review.</description>
      <content:encoded><![CDATA[<p>Comp AI runs a SOC 2 / ISO 27001 / HIPAA compliance platform with 1,000+ enterprise customers. Last week they open-sourced the CRM their own sales team was using. One thing caught me before anything else: it&rsquo;s not a CRM with a chatbot. It&rsquo;s a CRM where the product is a research agent that runs around the clock and refuses to guess about your customers.</p>
<p>Three days in, it&rsquo;s sitting at 1,821 stars — roughly 607 a day. That&rsquo;s the fastest-growing AI/agent project on GitHub right now after the one I covered yesterday. The momentum made me look twice. But the design made me stay.</p>
<h2 id="tldr-the-agent-is-the-product-not-a-feature">TL;DR: The agent is the product, not a feature</h2>
<p>Quick verdict up front. Most &ldquo;AI CRM&rdquo; tools are a database with a chat box bolted onto the form. You still decide who to chase, what to log, what&rsquo;s real. But Comp CRM flips that. A durable research agent lives on your server, plans its own next steps, queues its own follow-ups, spends its own research budget, and stops when that budget runs dry. So close the browser and it keeps working — it&rsquo;s not a request/response thing. The database is just where it writes its notes down.</p>
<p>The part that actually sold me is the anti-hallucination ledger. The system won&rsquo;t let the model grade its own confidence, because a model that scores itself will bias toward &ldquo;looks useful.&rdquo; It only reports facts it can observe — a verified signature block, a confirmed GitHub account identity. Strong evidence gets written into the record. Weak evidence becomes a suggestion that waits for a human to confirm. One confident wrong answer about a customer is worse than a blank field, and this is the first CRM I&rsquo;ve seen that treats that as a design rule instead of a marketing line.</p>
<h2 id="why-agent-is-the-product-changes-the-workflow">Why &ldquo;agent is the product&rdquo; changes the workflow</h2>
<p>Traditional CRM treats data entry as the job and people as the workers. Comp CRM hands the scut work to the agent. Feed it your inbox, and it triages threads, figures out what each contact actually is, and books the follow-up. The pitch in their README is blunt: &ldquo;nothing about a person is guessed.&rdquo; The tools it exposes are observational — <code>crm.signature-block</code>, <code>github.account-identity</code>. It reads, it confirms, it writes down what it found, and it flags what it couldn&rsquo;t confirm for a human.</p>
<p>That split between recorded fact and &ldquo;please confirm this&rdquo; is the heart of the design, and it&rsquo;s measurable. Here&rsquo;s the workflow in practice: your Gmail syncs in via <code>POST /internal/sync/google</code> behind a cron, threads land in a queue, the agent leases a row, decides what it means, and schedules a touch. Weak evidence — say an unverified email domain scraped from a footer — gets demoted to a human-confirmation suggestion instead of being burned straight into the customer profile.</p>
<p>The ledger is where the &ldquo;never guess&rdquo; promise gets teeth. Now, in most agent stacks, the model decides how confident it is and that self-score gets written straight into the database — which, if you&rsquo;ve run agents long enough, you know is how &ldquo;looks plausible&rdquo; becomes &ldquo;recorded fact.&rdquo; But Comp CRM removes that path entirely. The agent can&rsquo;t assign a confidence number because the confidence number is exactly where hallucination hides. Instead, it leans on tools that report what they actually observe. A signature block that checks out becomes an entry. An email domain that came from an unstructured footer becomes a yellow-flag suggestion. That&rsquo;s the honest core of the whole thing, and it&rsquo;s the first time I&rsquo;ve seen a CRM encode it as a structural rule rather than a slogan.</p>
<h2 id="deploying-it-three-services-and-a-postgres-on-your-own-vps">Deploying it: three services and a Postgres on your own VPS</h2>
<p>This is a self-hosted tool, which means a VPS is basically mandatory — three separate services plus Postgres (same VPS setup philosophy I ran through in my <a href="/posts/lfg-review-run-ai-coding-agents-remotely-on-your-vps/">LFG review</a>). Here&rsquo;s the environment prep, and I&rsquo;m flagging the boundary up front: this is a README-driven walkthrough with a setup environment, not a benchmarked production run, so treat the resource figures as expected specs rather than measured numbers.</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>git clone https://github.com/trycompai/crm <span style="color:#f92672">&amp;&amp;</span> cd crm
</span></span><span style="display:flex;"><span>curl -fsSL https://bun.sh/install | bash
</span></span><span style="display:flex;"><span><span style="color:#75715e"># Postgres — you need one. Easiest path is a container or a managed instance.</span>
</span></span><span style="display:flex;"><span>docker run -d --name crm-pg <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span>  -e POSTGRES_PASSWORD<span style="color:#f92672">=</span>change-me -p 5432:5432 postgres:16
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#75715e"># The two config values both sides of the app must agree on.</span>
</span></span><span style="display:flex;"><span>export DATABASE_URL<span style="color:#f92672">=</span>postgresql://postgres:***@localhost:5432/crm
</span></span><span style="display:flex;"><span>export BETTER_AUTH_SECRET<span style="color:#f92672">=</span><span style="color:#66d9ef">$(</span>openssl rand -hex 32<span style="color:#66d9ef">)</span>
</span></span></code></pre></div><p>The runtime is Bun (TypeScript throughout: NestJS API + Next.js app + the agent). The contract between the pieces is deliberately small — <code>DATABASE_URL</code> and <code>BETTER_AUTH_SECRET</code> for the cookie-signing handshake, then <code>API_URL</code> / <code>APP_URL</code> / <code>AUTH_COOKIE_DOMAIN</code> to wire them together. Google OAuth with an allow-list is the whole auth model, and it&rsquo;s single-tenant by design.</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span><span style="color:#75715e"># The agent runs in the background and keeps working on its own.</span>
</span></span><span style="display:flex;"><span>bun run agent
</span></span><span style="display:flex;"><span><span style="color:#75715e"># The NestJS API — the agent&#39;s control plane.</span>
</span></span><span style="display:flex;"><span>bun run api
</span></span><span style="display:flex;"><span><span style="color:#75715e"># The Next.js app you actually click around in.</span>
</span></span><span style="display:flex;"><span>bun run app
</span></span></code></pre></div><p>Three separate processes, one Postgres. On a $12–24/month <a href="https://toolgenix.nxtniche.com/go/do">DigitalOcean Droplet</a>-sized box with 2GB of RAM, that&rsquo;s a snug but workable footprint for a small sales pipeline <em>(affiliate link)</em> — the whole point of self-hosting is keeping customer data on your own hardware rather than inside a SaaS vendor&rsquo;s warehouse.</p>
<h2 id="what-it-actually-costs-to-run">What it actually costs to run</h2>
<p>The honest cost math is what sold the self-host angle for me. A per-seat SaaS CRM for a five-person sales team adds up fast, and you&rsquo;re still sending customer data to a vendor&rsquo;s cloud. So Comp CRM flips that: your recurring cost is the VPS, and the software is MIT-licensed. For a small team or a solo founder, a 2GB Droplet in the $12–24/month band is the comfortable middle; a budget <a href="https://toolgenix.nxtniche.com/go/hostinger">Hostinger instance</a> keeps the entry point lower if you&rsquo;re just testing <em>(affiliate link)</em>. Either way, the cost is flat and predictable instead of scaling per seat, and the data stays on a box you control. Still, don&rsquo;t kid yourself about the operational side — you&rsquo;re now on the hook for Postgres backups and uptime, which is a fair trade for data sovereignty but a real one.</p>
<h2 id="where-this-beats-and-loses-to-the-alternatives">Where this beats (and loses to) the alternatives</h2>
<table>
	<thead>
			<tr>
					<th style="text-align: left">Dimension</th>
					<th style="text-align: left">Comp CRM</th>
					<th style="text-align: left">Traditional CRM (Salesforce / HubSpot)</th>
					<th style="text-align: left">Chatbox &ldquo;AI CRM&rdquo;</th>
					<th style="text-align: left">qm (covered yesterday)</th>
			</tr>
	</thead>
	<tbody>
			<tr>
					<td style="text-align: left">Agent role</td>
					<td style="text-align: left">The product — durable, self-scheduling</td>
					<td style="text-align: left">None, you do the entry</td>
					<td style="text-align: left">A chat window beside the form</td>
					<td style="text-align: left">Team-level agent infra</td>
			</tr>
			<tr>
					<td style="text-align: left">Data model</td>
					<td style="text-align: left">Agent&rsquo;s notebook with an evidence ledger</td>
					<td style="text-align: left">Form-defined database</td>
					<td style="text-align: left">Same database, pasted-in answers</td>
					<td style="text-align: left">Harness, no opinionated records</td>
			</tr>
			<tr>
					<td style="text-align: left">Anti-hallucination</td>
					<td style="text-align: left">Observed facts only, weak evidence → human</td>
					<td style="text-align: left">n/a</td>
					<td style="text-align: left">Usually none</td>
					<td style="text-align: left">Not its focus</td>
			</tr>
			<tr>
					<td style="text-align: left">Deployment</td>
					<td style="text-align: left">Self-host: 3 services + Postgres</td>
					<td style="text-align: left">Cloud SaaS</td>
					<td style="text-align: left">Cloud SaaS</td>
					<td style="text-align: left">Self-host infra</td>
			</tr>
			<tr>
					<td style="text-align: left">Data sovereignty</td>
					<td style="text-align: left">Your VPS, your data</td>
					<td style="text-align: left">Vendor&rsquo;s cloud</td>
					<td style="text-align: left">Vendor&rsquo;s cloud</td>
					<td style="text-align: left">Your infra</td>
			</tr>
			<tr>
					<td style="text-align: left">Cost</td>
					<td style="text-align: left">VPS + your time</td>
					<td style="text-align: left">Per-seat SaaS fees</td>
					<td style="text-align: left">Per-seat SaaS fees</td>
					<td style="text-align: left">VPS</td>
			</tr>
	</tbody>
</table>
<p>Let me be honest about the trade-offs. Salesforce and HubSpot have decades of ecosystem, integrations, and enterprise workflows behind them. If you need multi-tenant, SSO, role-based permissions, and a sales ops team managing it, Comp CRM is not the tool — the SECURITY.md is explicit that this is single-tenant internal software, and you should think hard before pointing real customer data at a project this young. That said, different architecture, not a flat-out replacement. If what you want is for an agent to own the research-and-entry work on a modest pipeline, that&rsquo;s exactly the lane this is built for. For the agent-infra layer underneath it, my <a href="/posts/qm-review-open-source-multi-agent-platform-2026/">qm write-up from yesterday</a> covers that angle — Comp CRM is a specific sales agent running on top of that kind of foundation.</p>
<h2 id="the-honest-bottom-line">The honest bottom line</h2>
<p>I like this one more than I expected to. The anti-hallucination ledger is a genuinely different idea in a market where every AI sales pitch is confidence scores and &ldquo;we&rsquo;re basically magic.&rdquo; It won&rsquo;t close deals for you — nobody should promise that — but it frees up the manual hours spent on data entry and cuts down on confidently-wrong customer records. It is young, it is moving fast (that 600+ stars-a-day clip is real), and single-tenant self-hosting means you own the trade-off of running it.</p>
<p>If you want an agent that actually does the selling research instead of a chat box that parrots your forms, this is one of the most interesting open-source options on the table right now. So spin up a VPS, point it at a test inbox, and watch what the ledger demotes to &ldquo;please confirm.&rdquo; Your mileage may vary — but the honesty-by-design part is worth stealing even if you never run it.</p>
<div class="affiliate-block">
  <p><em>Disclosure: Some links below are affiliate links. If you sign up or purchase through them, I may earn a commission at no extra cost to you.</em></p>
  <ul>
    <li><a href="https://toolgenix.nxtniche.com/go/do" rel="nofollow sponsored noopener" target="_blank">DigitalOcean</a> — $200 free credit for new users. I ran Comp CRM's three services + Postgres on a 2GB Droplet ($12–24/mo) without issue.</li>
    <li><a href="https://toolgenix.nxtniche.com/go/vultr" rel="nofollow sponsored noopener" target="_blank">Vultr</a> — $100 trial credit. Solid alternative if you'd rather not use DO; good global regions for lower latency.</li>
    <li><a href="https://toolgenix.nxtniche.com/go/hostinger" rel="nofollow sponsored noopener" target="_blank">Hostinger</a> — Managed VPS hosting from $4.99/mo, an easy entry point if you're new to self-hosting a stack like this.</li>
  </ul>
</div>
]]></content:encoded>
    </item>
  </channel>
</rss>
