Token导航 LogoToken导航TokenDH.com
运维需要联网clawhub未标认证来源可访问clear审计提醒

mcf-crm-engineMCF CRM 引擎

Agent Skill

mcf-crm-engine 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,920

周安装

117

GitHub Stars

公开资料未说明

下载量

945
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mcf-crm-engine(MCF CRM 引擎)
来源仓库:https://github.com/cameron48/mcf-crm-engine
安装命令:
openclaw skills install mcf-crm-engine
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install mcf-crm-engine

简介

包含账户、销售线索、交易、联系人、管道和工作订单的完整 CRM——专为 AI 代理而构建。

SKILL.md

name
CRM Engine
description
Full CRM with accounts, leads, deals, contacts, pipelines, and work orders — built for AI agents.
author
MCF Agentic
version
1.0.0
tags
[crm, sales, leads, deals, contacts, pipeline, work-orders]
pricing
x402 (USDC on Base)
gateway
https://gateway.mcfagentic.com

CRM Engine

A complete CRM system designed for autonomous AI agents. Manage accounts, track leads through pipelines, close deals, organize contacts, and create work orders — all via API. Built to be the persistent memory layer for sales and service agents.

Authentication

All endpoints require x402 payment (USDC on Base L2). Send a request without payment to receive pricing info in the 402 response.

Endpoints

Create Account

  • Method: POST
  • Path: /api/crm/accounts
  • Price: $0.05 per call
  • Description: Create a new business account in the CRM.

Request:

{
  "name": "Comfort Zone HVAC",
  "industry": "HVAC",
  "website": "comfortzonehvac.com",
  "phone": "214-555-0142",
  "address": "1200 Commerce St, Dallas, TX 75201",
  "tags": ["prospect", "hvac", "dallas"]
}

Response:

{
  "id": "acc_8x2kf9",
  "name": "Comfort Zone HVAC",
  "created_at": "2026-04-01T14:30:00Z",
  "status": "active"
}

Manage Leads

  • Method: POST
  • Path: /api/crm/leads
  • Price: $0.05 per call
  • Description: Create or update a lead. Leads track prospective clients through qualification stages.

Request:

{
  "account_id": "acc_8x2kf9",
  "contact_name": "Mike Torres",
  "email": "mike@comfortzonehvac.com",
  "source": "ai-pipeline",
  "stage": "qualified",
  "score": 85,
  "notes": "Needs scheduling automation, no current CRM"
}

Response:

{
  "id": "lead_3m7np2",
  "account_id": "acc_8x2kf9",
  "stage": "qualified",
  "score": 85,
  "created_at": "2026-04-01T14:31:00Z"
}

Manage Deals

  • Method: POST
  • Path: /api/crm/deals
  • Price: $0.05 per call
  • Description: Create or update a deal. Track revenue opportunities through your sales pipeline.

Request:

{
  "lead_id": "lead_3m7np2",
  "account_id": "acc_8x2kf9",
  "title": "AI Scheduling Bundle - Comfort Zone HVAC",
  "value": 5964,
  "currency": "USD",
  "stage": "proposal",
  "close_date": "2026-04-15"
}

Response:

{
  "id": "deal_9k4rt1",
  "title": "AI Scheduling Bundle - Comfort Zone HVAC",
  "value": 5964,
  "stage": "proposal",
  "pipeline_id": "pipe_default"
}

Manage Contacts

  • Method: POST
  • Path: /api/crm/contacts
  • Price: $0.03 per call
  • Description: Create or update a contact record linked to an account.

Request:

{
  "account_id": "acc_8x2kf9",
  "first_name": "Mike",
  "last_name": "Torres",
  "email": "mike@comfortzonehvac.com",
  "phone": "214-555-0142",
  "role": "Owner"
}

Response:

{
  "id": "con_5h8jw3",
  "account_id": "acc_8x2kf9",
  "full_name": "Mike Torres",
  "role": "Owner"
}

List Pipelines

  • Method: GET
  • Path: /api/crm/pipelines
  • Price: $0.02 per call
  • Description: List all sales pipelines and their stages.

Request:

GET /api/crm/pipelines

Response:

{
  "pipelines": [
    {
      "id": "pipe_default",
      "name": "Default Sales Pipeline",
      "stages": ["prospect", "qualified", "proposal", "negotiation", "closed-won", "closed-lost"]
    }
  ]
}

Create Work Order

  • Method: POST
  • Path: /api/crm/work-orders
  • Price: $0.05 per call
  • Description: Create a work order tied to an account or deal. Track deliverables, tasks, and service fulfillment.

Request:

{
  "account_id": "acc_8x2kf9",
  "deal_id": "deal_9k4rt1",
  "title": "Set up AI scheduling system",
  "description": "Deploy scheduling engine, configure availability, train staff",
  "priority": "high",
  "due_date": "2026-04-20"
}

Response:

{
  "id": "wo_2n6qp8",
  "title": "Set up AI scheduling system",
  "status": "open",
  "priority": "high",
  "created_at": "2026-04-01T14:35:00Z"
}

Use Cases

  • An AI sales agent closes a deal and needs to create the account, contact, and work order automatically
  • A lead-gen pipeline deposits qualified leads directly into the CRM for follow-up
  • An autonomous agent tracks deal progression and updates stages based on email replies
  • A service agent creates work orders when contracts are signed
  • An analytics agent pulls pipeline data to forecast revenue

Pricing

EndpointPriceDescription
/api/crm/accounts$0.05Create or update accounts
/api/crm/leads$0.05Create or update leads
/api/crm/deals$0.05Create or update deals
/api/crm/contacts$0.03Create or update contacts
/api/crm/pipelines$0.02List pipelines and stages
/api/crm/work-orders$0.05Create or update work orders

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98.59%
按下载量换算932

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills