TopRank Skills

Home / Claw Skills / Git / GitHub / clawcrm
Official OpenClaw rules 36%

clawcrm

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

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 clawcrm 技能。 若已安装,则直接安装 clawcrm 技能。

Overview

Skill Key
giorgallidis/clawcrm
Author
giorgallidis
Source Repo
openclaw/skills
Version
-
Source Path
skills/giorgallidis/clawcrm
Latest Commit SHA
55ea035046ba10368d31efc8024f573f681bf090

Extracted Content

SKILL.md excerpt

# 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.

## Installation

### 1. Sign Up Your Human

```bash
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:
```json
{
  "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)

```bash
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.

## Usage Examples

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

```bash
curl -X POST https://readycrm.netlify.app/api/openclaw/leads \
  -H "Content-Typ...

Related Claw Skills