← 返回 Skills 市场
hybrid1labs

CRM in a Box (Hybrid Labs)

作者 HYBRID1LABS · GitHub ↗ · v0.1.0 · MIT-0
cross-platform ✓ 安全检测通过
98
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install crm-in-a-box-hybrid
功能描述
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...
使用说明 (SKILL.md)

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:

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

{
  "id": "c001",
  "name": "Jane Smith",
  "email": "[email protected]",
  "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

{
  "id": "p001",
  "contact_id": "c001",
  "stage": "proposal_sent",
  "deal": "Enterprise License",
  "value": 12000,
  "updated_at": "2026-01-15T00:00:00Z"
}

Interaction Schema

{
  "id": "i001",
  "contact_id": "c001",
  "type": "email",
  "summary": "Sent intro email about Denver market sale.",
  "at": "2026-01-15T10:00:00Z"
}

Pipeline Stages (default)

newcontactedmeeting_scheduledproposal_sentnegotiatingwon / 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 family of open protocols.

安全使用建议
This skill appears to be a straightforward, local file-based CRM and does not request credentials or network access. Before installing: (1) be aware the README/marketing mentions 'hash‑chained' and tamper‑evidence but the included crm_cli.py does not implement cryptographic linking — if you need tamper‑evidence, review or extend the code to add hashing or git signing; (2) note the default storage path ~/.openclaw/workspace/crm — you may want to initialize a CRM in a different directory or sandbox it; (3) inspect the full crm_cli.py (and any truncated portions) yourself to confirm there are no network calls or unexpected behavior; and (4) run it in a local/sandbox environment and keep backups (or put the CRM under your own git control) before using with real contact data.
功能分析
Type: OpenClaw Skill Name: crm-in-a-box-hybrid Version: 0.1.0 The skill bundle provides a legitimate file-based CRM system using NDJSON files for contacts, pipelines, and interactions. The Python CLI (crm_cli.py) and agent instructions (SKILL.md) are focused entirely on local file manipulation within a designated workspace directory, with no evidence of network exfiltration, unauthorized file access, or malicious command execution.
能力评估
Purpose & Capability
The name/description promise an open, file-based CRM — and the code and SKILL.md implement a simple file-based NDJSON CRM CLI that creates and manipulates contacts, pipeline, and interactions. However, README/SKILL.md/landing text claim 'hash-chained' / 'cryptographically linked' entries and tamper-evidence; crm_cli.py does not implement hashing, signature, or git integration, which is a mismatch between advertised features and delivered capability.
Instruction Scope
Runtime instructions and the CLI operate only on local files (contacts.ndjson, pipeline.ndjson, interactions.ndjson, config.yaml). The SKILL.md instructs simple shell/file commands (copy, grep, cat) and JSON formatting; there are no instructions to read unrelated system files, call external endpoints, or exfiltrate data.
Install Mechanism
No install spec is provided (instruction-only skill). A Python CLI file is included but nothing in the metadata installs additional packages or downloads from external URLs. This is low risk from an install mechanism perspective.
Credentials
The skill requires no environment variables, no credentials, and no config paths beyond creating/using a directory in the user's home. The default directory (~/.openclaw/workspace/crm) is reasonable for user-scoped data, though notable.
Persistence & Privilege
always is false and the skill does not request persistent platform privileges. It writes only to its own CRM directory under the user's home and does not modify other skills or system-wide configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install crm-in-a-box-hybrid
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /crm-in-a-box-hybrid 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
Hybrid Labs edition - Complete CRM automation
元数据
Slug crm-in-a-box-hybrid
版本 0.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

CRM in a Box (Hybrid Labs) 是什么?

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 98 次。

如何安装 CRM in a Box (Hybrid Labs)?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install crm-in-a-box-hybrid」即可一键安装,无需额外配置。

CRM in a Box (Hybrid Labs) 是免费的吗?

是的,CRM in a Box (Hybrid Labs) 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

CRM in a Box (Hybrid Labs) 支持哪些平台?

CRM in a Box (Hybrid Labs) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 CRM in a Box (Hybrid Labs)?

由 HYBRID1LABS(@hybrid1labs)开发并维护,当前版本 v0.1.0。

💬 留言讨论