重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
close-automation by composiohq/awesome-claude-skills
npx skills add https://github.com/composiohq/awesome-claude-skills --skill close-automation通过 Composio 的 Close 工具包和 Rube MCP 自动化 Close CRM 操作。
工具包文档 : composio.dev/toolkits/close
RUBE_MANAGE_CONNECTIONS 使用工具包 close 建立活跃的 Close 连接RUBE_SEARCH_TOOLS 以获取当前工具模式获取 Rube MCP : 在您的客户端配置中将 https://rube.app/mcp 添加为 MCP 服务器。无需 API 密钥——只需添加端点即可使用。
RUBE_SEARCH_TOOLS 有响应来验证 Rube MCP 是否可用close 调用 广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
RUBE_MANAGE_CONNECTIONS使用场景 : 用户想要创建新的潜在客户或管理现有的潜在客户记录
工具序列 :
CLOSE_CREATE_LEAD - 在 Close 中创建新的潜在客户 [必需]关键参数 :
name: 潜在客户/公司名称contacts: 与潜在客户关联的联系人对象数组custom: 作为键值对的自定义字段值status_id: 潜在客户状态 ID注意事项 :
使用场景 : 用户想要记录针对潜在客户的电话活动
工具序列 :
CLOSE_CREATE_CALL - 记录通话活动 [必需]关键参数 :
lead_id: 关联潜在客户的 IDcontact_id: 被呼叫联系人的 IDdirection: 'outbound' 或 'inbound'status: 通话状态('completed'、'no-answer'、'busy' 等)duration: 通话时长(秒)note: 通话备注注意事项 :
使用场景 : 用户想要通过 Close 发送或记录短信
工具序列 :
CLOSE_CREATE_SMS - 发送或记录短信 [必需]关键参数 :
lead_id: 关联潜在客户的 IDcontact_id: 联系人的 IDdirection: 'outbound' 或 'inbound'text: 短信内容status: 消息状态注意事项 :
使用场景 : 用户想要创建或管理跟进任务
工具序列 :
CLOSE_CREATE_TASK - 创建新任务 [必需]关键参数 :
lead_id: 关联潜在客户 IDtext: 任务描述date: 任务截止日期assigned_to: 分配对象的用户 IDis_complete: 任务是否已完成注意事项 :
使用场景 : 用户想要添加或检索潜在客户的备注
工具序列 :
CLOSE_GET_NOTE - 检索特定备注 [必需]关键参数 :
note_id: 要检索的备注 ID注意事项 :
使用场景 : 用户想要删除通话记录或其他活动
工具序列 :
CLOSE_DELETE_CALL - 删除通话活动 [必需]关键参数 :
call_id: 要删除的通话 ID注意事项 :
Close 数据模型:
- 潜在客户 = 公司/组织
- 联系人 = 个人(嵌套在潜在客户内)
- 活动 = 通话、短信、电子邮件、备注(链接到潜在客户)
- 任务 = 跟进项(链接到潜在客户)
- 商机 = 交易(链接到潜在客户)
潜在客户 ID :
1. 使用 Close 搜索 API 搜索潜在客户
2. 从结果中提取 lead_id(格式:'lead_XXXXXXXXXXXXX')
3. 在所有活动创建调用中使用 lead_id
联系人 ID :
1. 检索潜在客户详细信息以获取嵌套的联系人
2. 提取 contact_id(格式:'cont_XXXXXXXXXXXXX')
3. 在通话/短信活动中使用以进行准确跟踪
1. 识别 lead_id 和可选的 contact_id
2. 使用 lead_id 创建活动(通话、短信、备注)
3. 包含相关元数据(时长、方向、状态)
4. 如果需要,创建跟进任务
ID 格式 :
速率限制 :
自定义字段 :
数据完整性 :
| 任务 | 工具标识 | 关键参数 |
|---|---|---|
| 创建潜在客户 | CLOSE_CREATE_LEAD | name, contacts, custom |
| 记录通话 | CLOSE_CREATE_CALL | lead_id, direction, status, duration |
| 发送短信 | CLOSE_CREATE_SMS | lead_id, text, direction |
| 创建任务 | CLOSE_CREATE_TASK | lead_id, text, date, assigned_to |
| 获取备注 | CLOSE_GET_NOTE | note_id |
| 删除通话 | CLOSE_DELETE_CALL | call_id |
由 Composio 提供支持
每周安装次数
66
代码仓库
GitHub 星标数
42.7K
首次出现
Feb 6, 2026
安全审计
安装于
claude-code50
opencode50
gemini-cli44
replit42
codex40
cursor38
Automate Close CRM operations through Composio's Close toolkit via Rube MCP.
Toolkit docs : composio.dev/toolkits/close
RUBE_MANAGE_CONNECTIONS with toolkit closeRUBE_SEARCH_TOOLS first to get current tool schemasGet Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
RUBE_SEARCH_TOOLS respondsRUBE_MANAGE_CONNECTIONS with toolkit closeWhen to use : User wants to create new leads or manage existing lead records
Tool sequence :
CLOSE_CREATE_LEAD - Create a new lead in Close [Required]Key parameters :
name: Lead/company namecontacts: Array of contact objects associated with the leadcustom: Custom field values as key-value pairsstatus_id: Lead status IDPitfalls :
When to use : User wants to log a phone call activity against a lead
Tool sequence :
CLOSE_CREATE_CALL - Log a call activity [Required]Key parameters :
lead_id: ID of the associated leadcontact_id: ID of the contact calleddirection: 'outbound' or 'inbound'status: Call status ('completed', 'no-answer', 'busy', etc.)duration: Call duration in secondsnote: Call notesPitfalls :
When to use : User wants to send or log SMS messages through Close
Tool sequence :
CLOSE_CREATE_SMS - Send or log an SMS message [Required]Key parameters :
lead_id: ID of the associated leadcontact_id: ID of the contactdirection: 'outbound' or 'inbound'text: SMS message contentstatus: Message statusPitfalls :
When to use : User wants to create or manage follow-up tasks
Tool sequence :
CLOSE_CREATE_TASK - Create a new task [Required]Key parameters :
lead_id: Associated lead IDtext: Task descriptiondate: Due date for the taskassigned_to: User ID of the assigneeis_complete: Whether the task is completedPitfalls :
When to use : User wants to add or retrieve notes on leads
Tool sequence :
CLOSE_GET_NOTE - Retrieve a specific note [Required]Key parameters :
note_id: ID of the note to retrievePitfalls :
When to use : User wants to remove call records or other activities
Tool sequence :
CLOSE_DELETE_CALL - Delete a call activity [Required]Key parameters :
call_id: ID of the call to deletePitfalls :
Close data model:
- Lead = Company/Organization
- Contact = Person (nested within Lead)
- Activity = Call, SMS, Email, Note (linked to Lead)
- Task = Follow-up item (linked to Lead)
- Opportunity = Deal (linked to Lead)
Lead ID :
1. Search for leads using the Close search API
2. Extract lead_id from results (format: 'lead_XXXXXXXXXXXXX')
3. Use lead_id in all activity creation calls
Contact ID :
1. Retrieve lead details to get nested contacts
2. Extract contact_id (format: 'cont_XXXXXXXXXXXXX')
3. Use in call/SMS activities for accurate tracking
1. Identify the lead_id and optionally contact_id
2. Create the activity (call, SMS, note) with lead_id
3. Include relevant metadata (duration, direction, status)
4. Create follow-up tasks if needed
ID Formats :
Rate Limits :
Custom Fields :
Data Integrity :
| Task | Tool Slug | Key Params |
|---|---|---|
| Create lead | CLOSE_CREATE_LEAD | name, contacts, custom |
| Log call | CLOSE_CREATE_CALL | lead_id, direction, status, duration |
| Send SMS | CLOSE_CREATE_SMS | lead_id, text, direction |
| Create task | CLOSE_CREATE_TASK | lead_id, text, date, assigned_to |
| Get note | CLOSE_GET_NOTE | note_id |
| Delete call | CLOSE_DELETE_CALL | call_id |
Powered byComposio
Weekly Installs
66
Repository
GitHub Stars
42.7K
First Seen
Feb 6, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
claude-code50
opencode50
gemini-cli44
replit42
codex40
cursor38
Skills CLI 使用指南:AI Agent 技能包管理器安装与管理教程
48,700 周安装