TopRank Skills

Home / Claw Skills / 搜索 / Openclaw Crm
Official OpenClaw rules 36%

Openclaw Crm

openclaw crm

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
frank-bot07/openclaw-crm
Author
frank-bot07
Source Repo
openclaw/skills
Version
-
Source Path
skills/frank-bot07/openclaw-crm
Latest Commit SHA
ebe6ddbe132ebb4d2b1af7819aed55c8ec165b51

Extracted Content

SKILL.md excerpt

# openclaw-crm

Local-first CRM for tracking leads, deals, follow-ups, and pipeline. Uses SQLite with WAL mode, CLI via Commander.

## Quick Start
- `cd skills/crm && npm install`
- Run `node src/cli.js lead add "John Doe" --email john@example.com`
- Generate interchange: `node src/cli.js refresh`

## Integration
Use `exec` tool: `crm lead list`, `crm deal add "New Deal" --contact abc123 --value 10000`

Interchange files in workspace/interchange/crm/ for cross-agent sharing.

README excerpt

# openclaw-crm

[![Tests](https://img.shields.io/badge/tests-10%20passing-brightgreen)]() [![Node](https://img.shields.io/badge/node-%3E%3D18-blue)]() [![License: MIT](https://img.shields.io/badge/license-MIT-yellow)]()

> Local-first CRM for tracking leads, deals, and follow-ups.

A lightweight, SQLite-powered CRM built for agents and humans alike. Manage contacts, track deals through pipeline stages, log activities, schedule follow-ups, tag everything, and generate pipeline reports — all from the command line.

## Features

- **Contact management** — add, edit, list, and search contacts with company/email/phone
- **Deal pipeline** — track deals through customizable stages with values
- **Activities & notes** — log calls, emails, meetings, and notes against deals
- **Follow-ups** — schedule and track due follow-ups with overdue detection
- **Tagging** — tag deals for flexible categorization and filtering
- **Full-text search** — search across contacts and deals
- **Pipeline reports** — summary of deals by stage with total values
- **Interchange output** — publish CRM state as `.md` files
- **Backup & restore** — full database backup and recovery

## Quick Start

```bash
cd skills/crm
npm install

# Add a contact and create a deal
node src/cli.js lead add "Jane Smith" -c "Acme Corp" -e jane@acme.com
node src/cli.js deal add "Acme Enterprise License" -c <contact-id> -v 50000 --stage proposal

# Schedule a follow-up
node src/cli.js followup add <deal-id> -d 2026-03-01 -n "Send revised proposal"

# Check what's due
node src/cli.js followup due --days 7

# Pipeline overview
node src/cli.js report pipeline
```

## CLI Reference

### Contacts

```bash
crm lead add <name> [-c company] [-e email] [-p phone] [-n notes]
crm lead list [-s search-query]
crm lead edit <id> [-c company] [-e email] [-p phone] [-n notes]
```

### Deals

```bash
crm deal add <title> [-c contact-id] [-v value] [-s source] [--stage stage]
crm deal list [--stage stage] [--tag tag]
crm deal stage <id> <...

Related Claw Skills