# Send Clawcrm to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawcrm",
    "name": "Clawcrm",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/giorgallidis/clawcrm",
    "canonicalUrl": "https://clawhub.ai/giorgallidis/clawcrm",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawcrm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawcrm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawcrm",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T12:20:15.230Z",
      "expiresAt": "2026-05-07T12:20:15.230Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawcrm",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawcrm",
        "contentDisposition": "attachment; filename=\"clawcrm-1.0.8.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawcrm"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawcrm"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawcrm",
    "downloadUrl": "https://openagent3.xyz/downloads/clawcrm",
    "agentUrl": "https://openagent3.xyz/skills/clawcrm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawcrm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawcrm/agent.md"
  }
}
```
## Documentation

### ClawCRM Skill

Agent-native CRM built for AI agents to manage sales pipelines autonomously.

### What This Skill Does

ClawCRM lets you:

Create and manage leads programmatically
Auto-enrich leads with professional data (Apollo.io + Google Deep Search)
Generate personalized proposal pages
Track engagement (views, video plays, CTA clicks)
Send email sequences with proper delays
Analyze pipeline health and conversion metrics

Zero human clicks required. You handle the entire sales workflow.

### 1. Sign Up Your Human

curl -X POST https://readycrm.netlify.app/api/openclaw/signup \\
  -H "Content-Type: application/json" \\
  -d '{
    "email": "human@company.com",
    "firstName": "Jane",
    "lastName": "Smith",
    "organizationName": "Acme Corp"
  }'

Response:

{
  "success": true,
  "orgId": "org_abc123",
  "apiKey": "rcm_live_xyz789",
  "dashboardUrl": "https://readycrm.netlify.app/dashboard"
}

Save the API key - you'll need it for all subsequent calls.

### 2. Bootstrap Workspace (One-Shot Setup)

curl -X POST https://readycrm.netlify.app/api/openclaw/setup \\
  -H "Content-Type: application/json" \\
  -H "x-admin-token: rcm_live_xyz789" \\
  -d '{
    "projectSlug": "acme-corp",
    "org": {
      "name": "Acme Corp",
      "website": "https://acme.com",
      "industry": "SaaS",
      "bookingLink": "https://calendly.com/acme/demo",
      "primaryColor": "#3B82F6"
    },
    "stages": [
      { "name": "New Lead", "order": 0, "color": "#6B7280", "isDefault": true },
      { "name": "Contacted", "order": 1, "color": "#3B82F6" },
      { "name": "Demo Booked", "order": 2, "color": "#8B5CF6" },
      { "name": "Won", "order": 3, "color": "#10B981" }
    ]
  }'

Done! Your human's CRM is fully configured. They never touched the dashboard.

### Create a Lead (Auto-Enrichment Enabled)

curl -X POST https://readycrm.netlify.app/api/openclaw/leads \\
  -H "Content-Type: application/json" \\
  -H "x-admin-token: YOUR_TOKEN" \\
  -d '{
    "email": "founder@startup.com",
    "firstName": "John",
    "lastName": "Doe",
    "organizationName": "Cool Startup Inc",
    "businessType": "SaaS"
  }'

Response:

{
  "success": true,
  "lead": {
    "id": "rp_abc123",
    "email": "founder@startup.com",
    "firstName": "John",
    "proposalId": "cool-startup-inc-abc123",
    "proposalUrl": "https://readycrm.netlify.app/proposal/cool-startup-inc-abc123"
  }
}

Auto-enrichment happens in background (30-60 seconds):

Apollo.io → professional email, phone, LinkedIn, company data
Google Deep Search → website research, tech stack, discussion points
Spider Web → connections to other leads in your CRM

### Check Enrichment Status

curl "https://readycrm.netlify.app/api/openclaw/enrich?leadId=rp_abc123" \\
  -H "x-admin-token: YOUR_TOKEN"

Response:

{
  "leadId": "rp_abc123",
  "status": "complete",
  "enrichment": {
    "tier": 1,
    "sources": ["apollo", "google_deep"],
    "discussionPoints": [
      {
        "topic": "Current Tech Stack",
        "detail": "Using Stripe, Intercom, Google Analytics",
        "source": "website"
      }
    ],
    "practiceModel": "subscription",
    "techStack": ["Stripe", "Intercom", "Google Analytics"],
    "confidence": { "overall": "high" }
  }
}

### Send Email Sequence

curl -X POST https://readycrm.netlify.app/api/openclaw/email/send-sequence \\
  -H "Content-Type: application/json" \\
  -H "x-admin-token: YOUR_TOKEN" \\
  -d '{
    "leadId": "rp_abc123",
    "sequence": [
      {
        "delayMinutes": 0,
        "subject": "Your Custom Demo - {{organizationName}}",
        "body": "Hi {{firstName}},\\n\\nI put together a custom demo for {{organizationName}}:\\n{{proposalUrl}}\\n\\nBest,\\nTeam"
      },
      {
        "delayMinutes": 5760,
        "subject": "Following up",
        "body": "Hi {{firstName}},\\n\\nDid you get a chance to check out the demo?\\n\\nBest,\\nTeam"
      }
    ]
  }'

Template Variables:

{{firstName}}, {{lastName}}
{{organizationName}}, {{businessType}}
{{proposalUrl}} - auto-generated proposal page
{{email}}, {{phone}}

Delays:

0 = immediate
1440 = 1 day (24 hours)
5760 = 4 days
10080 = 1 week

### Track Proposal Engagement

curl "https://readycrm.netlify.app/api/tracking/proposal?leadId=rp_abc123" \\
  -H "x-admin-token: YOUR_TOKEN"

Response:

{
  "totalViews": 3,
  "timeOnPage": 420,
  "sectionsViewed": ["hero", "features", "pricing"],
  "videoCompletion": 75,
  "ctaClicks": 2
}

### List Leads (Filter & Sort)

curl "https://readycrm.netlify.app/api/openclaw/leads?status=new&tier=high&limit=50" \\
  -H "x-admin-token: YOUR_TOKEN"

### Update Lead Status

curl -X PATCH https://readycrm.netlify.app/api/openclaw/leads \\
  -H "Content-Type: application/json" \\
  -H "x-admin-token: YOUR_TOKEN" \\
  -d '{
    "id": "rp_abc123",
    "status": "qualified"
  }'

### Bulk Enrichment

curl -X POST https://readycrm.netlify.app/api/openclaw/enrich/bulk \\
  -H "Content-Type: application/json" \\
  -H "x-admin-token: YOUR_TOKEN" \\
  -d '{
    "leadIds": ["rp_123", "rp_456", "rp_789"]
  }'

### Spider Web Analysis (Find Connections)

curl -X POST https://readycrm.netlify.app/api/openclaw/enrich/spider-web \\
  -H "Content-Type: application/json" \\
  -H "x-admin-token: YOUR_TOKEN" \\
  -d '{
    "leadId": "rp_abc123"
  }'

Returns:

{
  "connections": [
    {
      "leadId": "rp_456",
      "name": "Jane Smith",
      "connectionType": "same_university",
      "detail": "Both attended Stanford",
      "strength": "high"
    }
  ],
  "totalConnections": 5
}

### Pipeline Analytics

curl "https://readycrm.netlify.app/api/openclaw/analytics?days=30" \\
  -H "x-admin-token: YOUR_TOKEN"

Response:

{
  "totalLeads": 156,
  "leadsInPeriod": 42,
  "quizCompletions": 38,
  "proposalsViewed": 28,
  "conversionRate": 26.9,
  "leadsWon": 12,
  "pipeline": {
    "new": 20,
    "contacted": 15,
    "qualified": 10,
    "won": 2
  }
}

### Pricing

Bring Your Own Accounts (BYOA):

$9/month per workspace
Bring your own: Apollo.io API key, Gmail account, Calendly link
Unlimited leads, unlimited enrichment

Managed (Coming Soon):

$999 one-time setup
We provide: Apollo.io credits, meeting transcription (Recall.ai), priority support
$99/month after setup

### Full API Reference

See OPENCLAW_API.md for complete endpoint documentation.

### Support

Agent Feedback: POST /api/openclaw/feedback
Discord: OpenClaw Community
GitHub Issues: Protosome-Inc/ReadyCRM

### Why ClawCRM for OpenClaw Agents?

Traditional CRMs are built for humans clicking buttons. ClawCRM is built for AI agents calling APIs.

Key Differences:

✅ Agent-first design - Every feature accessible via API
✅ Zero manual work - Auto-enrichment, template interpolation, proper email delays
✅ Built-in intelligence - Apollo.io + Google Deep Search + connection analysis
✅ Self-documenting - GET endpoints explain schemas
✅ One-shot onboarding - POST /api/openclaw/setup configures entire workspace

Not for you if:

❌ You want a human-facing UI with lots of buttons
❌ You need enterprise SSO / complex org hierarchies
❌ You want a kitchen-sink CRM with 1000 features

Perfect for you if:

✅ You're an AI agent managing sales for your human
✅ You want autonomous pipeline management
✅ You need programmatic access to everything
✅ You value simplicity and speed over enterprise complexity

Built by the ClawCRM EIR | Powered by OpenClaw
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: giorgallidis
- Version: 1.0.7
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T12:20:15.230Z
- Expires at: 2026-05-07T12:20:15.230Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawcrm)
- [Send to Agent page](https://openagent3.xyz/skills/clawcrm/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawcrm/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawcrm/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawcrm)