返回顶部
🇺🇸 English
🇨🇳 简体中文
🇨🇳 繁體中文
🇺🇸 English
🇯🇵 日本語
🇰🇷 한국어
🇫🇷 Français
🇩🇪 Deutsch
🇪🇸 Español
🇷🇺 Русский
c

crm-in-a-box

Bootstrap and manage an open, file-based CRM using the CRM-in-a-Box protocol (contacts, pipeline, interactions as NDJSON). Use when setting up a new CRM for a company, logging contacts/leads, updating deal stages, or recording interactions — all without any SaaS dependency.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.0
安全检测
已通过
832
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

crm-in-a-box

# CRM-in-a-Box Skill An open, agent-native CRM protocol. One directory = one CRM. No vendor lock-in. ## Files - `contacts.ndjson` — one JSON object per line, each a contact/company record - `pipeline.ndjson` — deal/opportunity tracking with stages - `interactions.ndjson` — append-only log of emails, calls, notes, meetings - `config.yaml` — pipeline stages and labels ## Bootstrap a New CRM Copy the baseline files into a company directory: ```bash mkdir -p ./mycompany/crm cp /path/to/crm-in-a-box/{config.yaml,contacts.ndjson,pipeline.ndjson,interactions.ndjson} ./mycompany/crm/ ``` Or start fresh with empty NDJSON files and the default config. ## Contact Schema ```json { "id": "c001", "name": "Jane Smith", "email": "jane@example.com", "company": "Acme Corp", "phone": "+1-555-0100", "stage": "new", "labels": ["hot-lead"], "notes": "Referred by John.", "created_at": "2026-01-01T00:00:00Z" } ``` ## Pipeline Schema ```json { "id": "p001", "contact_id": "c001", "stage": "proposal_sent", "deal": "Enterprise License", "value": 12000, "updated_at": "2026-01-15T00:00:00Z" } ``` ## Interaction Schema ```json { "id": "i001", "contact_id": "c001", "type": "email", "summary": "Sent intro email about Denver market sale.", "at": "2026-01-15T10:00:00Z" } ``` ## Pipeline Stages (default) `new` → `contacted` → `meeting_scheduled` → `proposal_sent` → `negotiating` → `won` / `lost` ## Default Labels `hot-lead`, `warm-lead`, `cold-lead`, `referral`, `conference`, `inbound`, `outbound` ## Agent Instructions - **Log a contact:** append a JSON line to `contacts.ndjson` - **Update a stage:** append an updated entry to `pipeline.ndjson` (keep old entries — append-only) - **Log an interaction:** append to `interactions.ndjson` - **Search contacts:** `grep -i "name" contacts.ndjson | python3 -m json.tool` - **List pipeline:** `cat pipeline.ndjson | python3 -c "import sys,json; [print(json.dumps(json.loads(l), indent=2)) for l in sys.stdin]"` ## Forks / Verticals Fork `config.yaml` to customize stages and labels for your vertical: - `pm-crm` — Property management (tenants, owners, vendors) - `saas-crm` — SaaS sales - `realestate-crm` — Buyers, sellers, listings - `recruiting-crm` — Candidates, jobs, placements --- *Part of the [biz-in-a-box](https://biz-in-a-box.org) family of open protocols.*

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 crm-in-a-box-1776297427 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 crm-in-a-box-1776297427 技能

通过命令行安装

skillhub install crm-in-a-box-1776297427

下载

⬇ 下载 crm-in-a-box v0.1.0(免费)

文件大小: 4.73 KB | 发布时间: 2026-4-16 15:29

v0.1.0 最新 2026-4-16 15:29
Initial release — open file-based CRM protocol with contacts, pipeline, and interactions

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部