Remote OpenClaw Blog
Ironclaw: The AI CRM Built on OpenClaw That Replaces Your Sales Stack
5 min read ·
Most OpenClaw deployments are personal productivity tools — morning briefings, email drafts, reminders. Ironclaw takes the same foundation and turns it into something different: a full AI-powered CRM that runs locally on your Mac.
If you're a founder doing outbound, a sales operator managing a pipeline, or anyone who needs to track and enrich contacts without paying enterprise CRM prices, Ironclaw is worth understanding. For the full overview of OpenClaw and everything built on it, see our complete guide to OpenClaw.
What Is Ironclaw?
Ironclaw is open-source software built by Dench.com on top of the OpenClaw framework that installs with a single npm command and provides a local AI-powered CRM at localhost:3100 with DuckDB, kanban views, and natural language querying. You install it with a single npm command:
npm i -g ironclaw
It opens at localhost:3100 and gives you a local workspace that looks and feels like a proper CRM — tables, kanban pipeline views, analytics, cron jobs — except the "database" is a DuckDB file on your machine and the "analyst" is an AI agent you chat with in plain English.
The core idea: instead of clicking through a CRM interface to build reports or update records, you just ask. "Enrich all founders and show me a pipeline breakdown" becomes a multi-step agent workflow that queries LinkedIn, updates your records, and sends back structured results — all from one chat prompt.
What Does Ironclaw Do That Regular CRMs Don't?
It browses as you. Ironclaw uses your existing Chrome profile — your logged-in sessions, cookies, saved auth. When it goes to LinkedIn to enrich a contact, it's navigating as you, which means it can access things that require login without you setting up any special API credentials.
It talks to your database in plain English. The agent translates natural language into DuckDB SQL queries. "How many founders have we contacted from YC W26?" becomes a live SQL query against your workspace data with the answer returned in seconds.
It generates code and shows diffs. For automation scripts or config changes, Ironclaw shows you a rich diff view before applying anything — similar to what Cursor does for code, but for your whole agent system.
It has built-in cron. Scheduled workflows run without you. Weekly pipeline reports generated every Monday morning, lead enrichment sync every six hours, email follow-up checks every 30 minutes — all configured through the same chat interface.
A Real Example: YC Founder Outreach
Ironclaw's demo case enriched 200 YC Winter 2026 founders from a single chat prompt — scraping LinkedIn profiles, updating records, and returning a formatted pipeline breakdown of New (89), Contacted (67), Qualified (31), and Converted (13). One prompt — "enrich all founders and show me a pipeline breakdown" — and the agent:
- Queries the workspace database for all founders
- Scrapes LinkedIn profiles to fill in missing data
- Updates education and company fields across all 200 records
- Returns a formatted pipeline breakdown: New (89), Contacted (67), Qualified (31), Converted (13)
That workflow — from a cold list to an enriched, stage-tracked pipeline — would take hours manually. As a chat prompt, it runs in the background while you do something else.
Scout Persona
Scout is the best fit when the goal is lead research, outbound follow-up, CRM sync, and pipeline movement.
The Skills Store
Ironclaw connects to ClawHub (the OpenClaw skills marketplace) and a broader skills store. Some of the most-used skills for sales operators:
- crm-automation — lead scoring, pipeline management, deal tracking (18K installs)
- linkedin-outreach — automated prospecting and follow-up sequences (14.8K installs)
- lead-enrichment — fills in LinkedIn, email, company data (12.1K installs)
- email-sequences — multi-step cold email with personalization (9.7K installs)
These install with a single command: npx skills add [skill-name]. For more on the OpenClaw skills ecosystem and how to vet community skills safely, see our advanced techniques guide.
Who Is Ironclaw Built For?
Ironclaw is designed for founders doing their own outbound, sales-focused small teams avoiding enterprise CRM costs, and OpenClaw operators who want all their contact data stored locally in a DuckDB file they own. More specifically, it fits well for:
Founders doing their own outbound. If you're building a list of potential customers, enriching it, sequencing outreach, and tracking responses — Ironclaw replaces a spreadsheet + LinkedIn Sales Navigator + a CRM + an email tool with one local workspace.
Sales-focused small teams. The multi-agent support and shared workspace mean you can run the same setup across a few people without enterprise CRM costs.
Operators who want their data local. Everything is on your machine. No Salesforce, no HubSpot, no monthly SaaS fees for features you don't use. The database is a DuckDB file you own. Ironclaw is one of the most practical examples from our catalogue of 336 real OpenClaw use cases. For automated CRM workflows beyond what Ironclaw offers out of the box, see our guide to operator workflows.
The Caveats
Ironclaw is YC-backed (Winter 2026 batch) and actively developed, but it's early. The skills marketplace has the same vetting concerns as the broader OpenClaw ecosystem — before installing any skill, read what it does. Skills can browse the web, send messages, and execute code on your behalf.
The Chrome profile integration is powerful but means your browser sessions are accessible to the agent. For most personal use cases this is fine; for sensitive enterprise contexts, think through what access you're granting.
It's also a Mac-first tool right now. Linux and Windows support exists but macOS is clearly the primary target given the native Chrome integration.
Getting Started
npm i -g ironclaw
ironclaw onboard
ironclaw gateway start
# Opens at localhost:3100
From there, the setup wizard connects your AI provider (Claude or GPT-4), sets up your workspace, and walks you through importing your first contact list.
The GitHub repository is open source under MIT license, so you can inspect the codebase, fork it, and contribute. Architecture is documented for anyone who wants to understand what's running.
Links:
- Website: ironclaw.sh
- GitHub: github.com/denchhq/ironclaw
Deploying OpenClaw-based tools? The Security Hardening Guide and marketplace personas help you get a production-ready agent running without building from scratch.