Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

zoho-crm-automationzoho CRM 自动化

Agent Skill

zoho-crm-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

563

周安装

23

GitHub Stars

52

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:zoho-crm-automation(zoho CRM 自动化)
来源仓库:https://github.com/aaaaqwq/claude-code-skills
仓库路径:skills/zoho-crm-automation
安装命令:
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill zoho-crm-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill zoho-crm-automation

简介

zoho-crm-automation 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Zoho CRM Automation via Rube MCP

Automate Zoho CRM operations through Composio's Zoho toolkit via Rube MCP.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Zoho CRM connection via RUBE_MANAGE_CONNECTIONS with toolkit zoho
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get 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.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit zoho
  3. If connection is not ACTIVE, follow the returned auth link to complete Zoho OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Search and Retrieve Records

When to use: User wants to find specific CRM records by criteria

Tool sequence:

  1. ZOHO_LIST_MODULES - List available CRM modules [Prerequisite]
  2. ZOHO_GET_MODULE_FIELDS - Get field definitions for a module [Optional]
  3. ZOHO_SEARCH_ZOHO_RECORDS - Search records by criteria [Required]
  4. ZOHO_GET_ZOHO_RECORDS - Get records from a module [Alternative]

Key parameters:

  • module: Module name (e.g., 'Leads', 'Contacts', 'Deals', 'Accounts')
  • criteria: Search criteria string (e.g., 'Email:equals:john@example.com')
  • fields: Comma-separated list of fields to return
  • per_page: Number of records per page
  • page: Page number for pagination

Pitfalls:

  • Module names are case-sensitive (e.g., 'Leads' not 'leads')
  • Search criteria uses specific syntax: 'Field:operator:value'
  • Supported operators: equals, starts_with, contains, not_equal, greater_than, less_than
  • Complex criteria use parentheses and AND/OR: '(Email:equals:john@example.com)AND(Last_Name:equals:Doe)'
  • GET_ZOHO_RECORDS returns all records with optional filtering; SEARCH is for targeted lookups

2. Create Records

When to use: User wants to add new leads, contacts, deals, or other CRM records

Tool sequence:

  1. ZOHO_GET_MODULE_FIELDS - Get required fields for the module [Prerequisite]
  2. ZOHO_CREATE_ZOHO_RECORD - Create a new record [Required]

Key parameters:

  • module: Target module name (e.g., 'Leads', 'Contacts')
  • data: Record data object with field-value pairs
  • Required fields vary by module (e.g., Last_Name for Contacts)

Pitfalls:

  • Each module has mandatory fields; use GET_MODULE_FIELDS to identify them
  • Field names use underscores (e.g., 'Last_Name', 'Email', 'Phone')
  • Lookup fields require the related record ID, not the name
  • Date fields must use 'yyyy-MM-dd' format
  • Creating duplicates is allowed unless duplicate check rules are configured

3. Update Records

When to use: User wants to modify existing CRM records

Tool sequence:

  1. ZOHO_SEARCH_ZOHO_RECORDS - Find the record to update [Prerequisite]
  2. ZOHO_UPDATE_ZOHO_RECORD - Update the record [Required]

Key parameters:

  • module: Module name
  • record_id: ID of the record to update
  • data: Object with fields to update (only changed fields needed)

Pitfalls:

  • record_id must be the Zoho record ID (numeric string)
  • Only provide fields that need to change; other fields are preserved
  • Read-only and system fields cannot be updated
  • Lookup field updates require the related record ID

4. Convert Leads

When to use: User wants to convert a lead into a contact, account, and/or deal

Tool sequence:

  1. ZOHO_SEARCH_ZOHO_RECORDS - Find the lead to convert [Prerequisite]
  2. ZOHO_CONVERT_ZOHO_LEAD - Convert the lead [Required]

Key parameters:

  • lead_id: ID of the lead to convert
  • deal: Deal details if creating a deal during conversion
  • account: Account details for the conversion
  • contact: Contact details for the conversion

Pitfalls:

  • Lead conversion is irreversible; the lead record is removed from the Leads module
  • Conversion can create up to three records: Contact, Account, and Deal
  • Existing account matching may occur based on company name
  • Custom field mappings between Lead and Contact/Account/Deal modules affect the outcome

5. Manage Tags and Related Records

When to use: User wants to tag records or manage relationships between records

Tool sequence:

  1. ZOHO_CREATE_ZOHO_TAG - Create a new tag [Optional]
  2. ZOHO_UPDATE_RELATED_RECORDS - Update related/linked records [Optional]

Key parameters:

  • module: Module for the tag
  • tag_name: Name of the tag
  • record_id: Parent record ID (for related records)
  • related_module: Module of the related record
  • data: Related record data to update

Pitfalls:

  • Tags are module-specific; a tag created for Leads is not available in Contacts
  • Related records require both the parent record ID and the related module
  • Tag names must be unique within a module
  • Bulk tag operations may hit rate limits

Common Patterns

Module and Field Discovery

1. Call ZOHO_LIST_MODULES to get all available modules
2. Call ZOHO_GET_MODULE_FIELDS with module name
3. Identify required fields, field types, and picklist values
4. Use field API names (not display labels) in data objects

Search Criteria Syntax

Simple search:

criteria: '(Email:equals:john@example.com)'

Combined criteria:

criteria: '((Last_Name:equals:Doe)AND(Email:contains:example.com))'

Supported operators:

  • equals, not_equal
  • starts_with, contains
  • greater_than, less_than, greater_equal, less_equal
  • between (for dates/numbers)

Pagination

  • Set per_page (max 200) and page starting at 1
  • Check response info.more_records flag
  • Increment page until more_records is false
  • Total count available in response info

Known Pitfalls

Field Names:

  • Use API names, not display labels (e.g., 'Last_Name' not 'Last Name')
  • Custom fields have API names like 'Custom_Field1' or user-defined names
  • Picklist values must match exactly (case-sensitive)

Rate Limits:

  • API call limits depend on your Zoho CRM plan
  • Free plan: 5000 API calls/day; Enterprise: 25000+/day
  • Implement delays between bulk operations
  • Monitor 429 responses and respect rate limit headers

Data Formats:

  • Dates: 'yyyy-MM-dd' format
  • DateTime: 'yyyy-MM-ddTHH:mm:ss+HH:mm' format
  • Currency: Numeric values without formatting
  • Phone: String values (no specific format enforced)

Module Access:

  • Access depends on user role and profile permissions
  • Some modules may be hidden or restricted in your CRM setup
  • Custom modules have custom API names

Quick Reference

TaskTool SlugKey Params
List modulesZOHO_LIST_MODULES(none)
Get module fieldsZOHO_GET_MODULE_FIELDSmodule
Search recordsZOHO_SEARCH_ZOHO_RECORDSmodule, criteria
Get recordsZOHO_GET_ZOHO_RECORDSmodule, fields, per_page, page
Create recordZOHO_CREATE_ZOHO_RECORDmodule, data
Update recordZOHO_UPDATE_ZOHO_RECORDmodule, record_id, data
Convert leadZOHO_CONVERT_ZOHO_LEADlead_id, deal, account, contact
Create tagZOHO_CREATE_ZOHO_TAGmodule, tag_name
Update related recordsZOHO_UPDATE_RELATED_RECORDSmodule, record_id, related_module, data

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.97%
按下载量换算59

Claude

32.58%
按下载量换算59

Cursor

16.51%
按下载量换算30

Gemini CLI

9.68%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills