TopRank Skills

Home / Claw Skills / Others / Workcrm
Official OpenClaw rules 15%

Workcrm

WorkCRM OpenClaw Skill

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
extraterrest/workcrm
Author
extraterrest
Source Repo
openclaw/skills
Version
-
Source Path
skills/extraterrest/workcrm
Latest Commit SHA
fec863c70efdca795a45030a28d1a08842ccd686

Extracted Content

SKILL.md excerpt

# WorkCRM (OpenClaw Skill)

A lightweight, local-first CRM with an explicit confirmation gate.

Product constraints (locked):
- Writes happen only after explicit confirmation: reply `记` to confirm, `不记` to reject.
- Drafts are retained for auditability.

## Chat usage (recommended)

Use any of these to reliably trigger CRM behavior:
- `crm: ...`
- `记一下:...`
- `先出草稿:...`

Flow:
1) You send a message.
2) WorkCRM replies with a draft.
3) You reply `记` or `不记`.

Note: this alpha skill provides the core engine + storage. Chat routing glue depends on your OpenClaw agent config.

## Local CLI (for verification/dev)

### Generate a draft

```bash
python -m workcrm draft "crm: talked to Alice, follow up next week"
```

This prints a JSON payload including a human message + pending draft id.

## Storage

- Default DB path: `~/.openclaw/workcrm/workcrm.sqlite3`
- Override with env var: `WORKCRM_DB_PATH=/path/to/workcrm.sqlite3`
- Or pass `--db /path/to/workcrm.sqlite3` to the CLI.

## Implementation notes

- Deterministic ordering is enforced for lists.
- Schema migrations are applied automatically on first use.

README excerpt

# workcrm

Local-first CRM skill for OpenClaw with an explicit confirmation gate.

- Draft first
- Write only after `记` / `不记`
- Drafts retained for audit

See `SKILL.md`.

Related Claw Skills