| name | clawcrm |
| description | Manage leads, outreach campaigns, analytics, and email follow-ups using ClawCRM — the AI-native CRM. Use when the agent needs to: manage a sales pipeline (create/read/update leads), run outreach campaigns and email sequences, check pipeline analytics and conversion metrics, send or draft personalized emails to leads, handle email replies and follow-ups, configure quiz funnels or proposal pages, or any CRM/sales operations. Requires a ClawCRM deployment URL and admin token. |
ClawCRM — AI-Native CRM Skill
ClawCRM is a CRM built for AI agents to operate autonomously. It manages leads, campaigns, outreach, analytics, quizzes, and proposals via a REST API.
Setup
The agent needs two things configured in TOOLS.md:
### ClawCRM
- Base URL: https://<deployment>.netlify.app (or self-hosted URL)
- Auth Header: x-admin-token: <token>
- Token file: secrets/clawcrm-token.txt
All API calls use:
curl -s "$BASE_URL/api/openclaw/<endpoint>" -H "x-admin-token: $(cat secrets/clawcrm-token.txt)"
Core Operations
Leads
GET /api/openclaw/leads?limit=100&offset=0
POST /api/openclaw/leads
{"email":"...", "firstName":"...", "lastName":"...", "clinicName":"...", "practiceType":"...", "customFields":{"annual_revenue":"500k","referral_source":"linkedin"}}
PUT /api/openclaw/leads
{"id":"...", "status":"qualified", "customFields":{"insurance_type":"commercial"}}
Pipeline Stages
GET /api/openclaw/stages
POST /api/openclaw/stages
{"name":"Discovery", "order":1, "color":"#3B82F6", "isDefault":false}
PUT /api/openclaw/stages
{"id":"...", "name":"Qualified Lead", "order":2}
DELETE /api/openclaw/stages?id=<stage_id>
Custom Fields
GET /api/openclaw/fields
POST /api/openclaw/fields
{"fieldName":"annual_revenue","fieldLabel":"Annual Revenue","fieldType":"text","order":1,"isRequired":false}
PUT /api/openclaw/fields
{"id":"...", "fieldLabel":"Annual Revenue (USD)", "isRequired":true}
DELETE /api/openclaw/fields?id=<field_id>
Org Settings
GET /api/openclaw/org
PUT /api/openclaw/org
{"branding":{"brandName":"Acme Corp","primaryColor":"#FF6B35"},"contact":{"replyToEmail":"hello@acme.com"}}
PATCH /api/openclaw/org
{"branding":{"logoUrl":"https://example.com/logo.png"}}
Campaign Templates
GET /api/openclaw/templates?category=<category>&include_public=true
POST /api/openclaw/templates
{"name":"Welcome Sequence","category":"onboarding","trigger":"quiz_completed","steps":[{"channel":"email","delay":0,"subject":"...","body":"..."}]}
PATCH /api/openclaw/templates
{"templateId":"...", "name":"Q1 Welcome Campaign"}
Analytics
GET /api/openclaw/analytics
Campaigns & Sequences
GET /api/openclaw/campaigns
POST /api/openclaw/campaigns
{"name":"...", "trigger":"quiz_completed|high_score_lead|manual|...", "steps":[...]}
Follow-ups
GET /api/openclaw/followups
POST /api/openclaw/followups
{"leadId":"...", "channel":"email", "subject":"...", "body":"..."}
Touchpoints
GET /api/openclaw/touchpoints?leadId=<id>
POST /api/openclaw/touchpoints
{"leadId":"...", "type":"email|call|meeting|note", "content":"..."}
Other Endpoints
GET /api/openclaw/health
GET /api/openclaw/quiz
GET /api/openclaw/playbooks
GET /api/config/proposal
Email Integration
For sending outreach emails, ClawCRM works with external email providers:
- MailerSend — API-based transactional email (configure API key + verified domain)
- Himalaya/IMAP — Read replies, search threads, manage inbox
- Gmail/Outlook OAuth — Zero-setup for end users (connect via OAuth, send from their real email)
See references/email-integration.md for setup patterns.
Outreach Workflow
- Pull leads:
GET /api/openclaw/leads → filter by tier/status
- Draft personalized emails using lead data (quiz answers, practice type, pain points)
- Save drafts for human review before sending
- Send via MailerSend or follow-up endpoint
- Log touchpoints:
POST /api/openclaw/touchpoints
- Monitor replies via IMAP and update lead status
- Check analytics:
GET /api/openclaw/analytics
See references/outreach-playbook.md for creative outreach strategies.
Key Principles
- Outcomes over output — 100 leads in a spreadsheet is worthless if nobody's been contacted. Measure by replies, meetings booked, deals closed.
- Always personalize — Use quiz answers, practice type, location, and pain points. Never send generic templates.
- Human-in-the-loop for sends — Draft emails and save to a file for review. Only send after approval unless explicitly told to auto-send.
- Log everything — Every email sent, reply received, meeting booked → log as touchpoint.