Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计提醒

crm-add-recordCRM ADD record 效率

Agent Skill

crm-add-record 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,280

周安装

470

GitHub Stars

公开资料未说明

下载量

3,760
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install crm-add-record

简介

crm-add-record 自动将新客户信息录入 Fractal CRM 系统。

  • 适合销售团队快速添加线索或客户记录到指定管道阶段。
  • 通过 clawhub 安装后需配置 API 密钥并与目标 CRM 实例对接。
  • 操作前务必验证字段映射准确性及防止重复录入风险。
  • 建议先在测试环境验证流程后再应用于正式业务场景。

SKILL.md

name
crm-add-record
description
Automate adding new CRM records to the Fractal CRM system. Use when user asks to add new CRM entries, customers, or sales leads. The skill handles navigation, login, intelligent field mapping from natural language input, and form submission.
allowed-tools
Bash(agent-browser:*)

CRM新增记录

Quick Start

Add a new CRM record from user input:

# User input: "13608847308,蒋女士,云南,体育馆票务系统。"
crm-add-record "13608847308,蒋女士,云南,体育馆票务系统。"

Workflow

1. Open CRM Page

Navigate to the CRM modification page:

agent-browser open https://niw26kl7.fractaltest.cn/Crm/Backend/modify.html

2. Handle Login (if required)

Check if on login page:

agent-browser get url

If URL contains "login.html", perform login:

agent-browser snapshot -i
# Fill credentials: username="weiyj", password="weiyj123"
agent-browser fill @<username_field> "weiyj"
agent-browser fill @<password_field> "weiyj123"
agent-browser click @<login_button>
agent-browser wait --load networkidle

3. Parse User Input

Analyze the user's input string to extract information:

Input format examples:

  • "13608847308,蒋女士,云南,体育馆票务系统。"
  • "13800138000 张三 北京 软件开发"
  • "13912345678 李先生 上海 咨询服务"

Extract patterns:

  • Phone number: 11-digit mobile number starting with 1
  • Contact name: Name with or without title (先生/女士)
  • Region: City or province name
  • Project/Basic info: Remaining text or last sentence

Fallback strategy: If parsing fails or fields are ambiguous, place all input content in the "Basic Info" field.

4. Fill Form Fields

Get page elements:

agent-browser snapshot -i

Map extracted data to fields:

  • Phone number → 手机号码输入框
  • Contact name → 联系人输入框
  • Region → 地区选择框
  • Project info → 基础情况输入框

Fill fields using refs from snapshot:

agent-browser fill @<phone_field> "<phone_number>"
agent-browser fill @<contact_field> "<contact_name>"
agent-browser fill @<region_field> "<region>"
agent-browser fill @<basic_info_field> "<project_info>"

5. Submit Form

Click the save button:

agent-browser click @<save_button>
agent-browser wait --load networkidle

6. Verify Success

Check for success indicators:

agent-browser get url
agent-browser snapshot -i

Look for confirmation messages or redirect to list page.

Field Mapping Reference

Common Input Patterns

Input ExamplePhoneContactRegionBasic Info
"13608847308,蒋女士,云南,体育馆票务系统。"13608847308蒋女士云南体育馆票务系统
"13800138000 张三 北京"13800138000张三北京(empty)
"咨询李经理,上海地区"(empty)李经理上海咨询

Regex Patterns

phone_pattern = r"1[3-9]\d{9}"
contact_pattern = r"([\一-\龥]{1,3})(?:先生|女士)?"
region_pattern = r"([\一-\龥]{2,4}(?:省|市|区|县)?)"

Troubleshooting

Login fails

  • Verify credentials are correct: weiyj / weiyj123
  • Check for CAPTCHA or 2FA requirements
  • Try manual login to confirm credentials work

Field not found

  • Use agent-browser snapshot to get current page elements
  • Check if page is fully loaded: agent-browser wait --load networkidle
  • Verify field names may have changed

Parsing fails

  • If uncertain, place all input in "Basic Info" field
  • Ask user to clarify field mapping
  • Manual entry for complex cases

Submit button unclickable

  • Check for validation errors on form fields
  • Ensure required fields are filled
  • Wait for page to fully load before clicking

Examples

Example 1: Complete information

User: "新增CRM:13608847308,蒋女士,云南,体育馆票务系统。"
Action:
1. Navigate to CRM page
2. Login if needed
3. Extract: Phone=13608847308, Contact=蒋女士, Region=云南, Info=体育馆票务系统
4. Fill all fields
5. Click save

Example 2: Minimal information

User: "添加CRM记录:13800138000,北京软件开发"
Action:
1. Navigate to CRM page
2. Login if needed
3. Extract: Phone=13800138000, Region=北京, Info=软件开发
4. Fill available fields
5. Click save

Example 3: Ambiguous input

User: "新增:咨询需求,广州李总"
Action:
1. Navigate to CRM page
2. Login if needed
3. Extract: Contact=李总, Region=广州, Info=咨询需求
4. Fill available fields
5. Click save

Notes

  • Always verify page state with snapshot before interacting with elements
  • Use wait --load networkidle after navigation and login
  • Element refs (e.g., @e1, @e2) change after page reload
  • Fallback to filling all input in "Basic Info" if parsing is uncertain
  • Test the workflow first to ensure field names match actual page

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.19%
按下载量换算3,015

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills