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

freshdesk-automationFreshdesk 自动化

Agent Skill

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

总安装

1,223

周安装

49

GitHub Stars

2,770

下载量

396
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/davepoon/buildwithclaude --skill freshdesk-automation

简介

freshdesk-automation 用于自动化 Freshdesk 客服工单管理,包括创建、回复和跟踪。

  • 适用于客户支持、问题处理和工单统计等场景。
  • 支持联系人管理、公司信息维护和备注添加。
  • 需先配置 Rube MCP 并连接 Freshdesk 账户,通过 npx 安装,注意客户服务响应时间要求。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Freshdesk Automation via Rube MCP

Automate Freshdesk customer support workflows including ticket management, contact and company operations, notes, replies, and ticket search through Composio's Freshdesk toolkit.

Toolkit docs: composio.dev/toolkits/freshdesk

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Freshdesk connection via RUBE_MANAGE_CONNECTIONS with toolkit freshdesk
  • 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 freshdesk
  3. If connection is not ACTIVE, follow the returned auth link to complete Freshdesk authentication
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Create and Manage Tickets

When to use: User wants to create a new support ticket, update an existing ticket, or view ticket details.

Tool sequence:

  1. FRESHDESK_SEARCH_CONTACTS - Find requester by email to get requester_id [Optional]
  2. FRESHDESK_LIST_TICKET_FIELDS - Check available custom fields and statuses [Optional]
  3. FRESHDESK_CREATE_TICKET - Create a new ticket with subject, description, requester info [Required]
  4. FRESHDESK_UPDATE_TICKET - Modify ticket status, priority, assignee, or other fields [Optional]
  5. FRESHDESK_VIEW_TICKET - Retrieve full ticket details by ID [Optional]

Key parameters for FRESHDESK_CREATE_TICKET:

  • subject: Ticket subject (required)
  • description: HTML content of the ticket (required)
  • email: Requester email (at least one requester identifier required)
  • requester_id: User ID of requester (alternative to email)
  • status: 2=Open, 3=Pending, 4=Resolved, 5=Closed (default 2)
  • priority: 1=Low, 2=Medium, 3=High, 4=Urgent (default 1)
  • source: 1=Email, 2=Portal, 3=Phone, 7=Chat (default 2)
  • responder_id: Agent ID to assign the ticket to
  • group_id: Group to assign the ticket to
  • tags: Array of tag strings
  • custom_fields: Object with cf_<field_name> keys

Pitfalls:

  • At least one requester identifier is required: requester_id, email, phone, facebook_id, twitter_id, or unique_external_id
  • If phone is provided without email, then name becomes mandatory
  • description supports HTML formatting
  • attachments field expects multipart/form-data format, not file paths or URLs
  • Custom field keys must be prefixed with cf_ (e.g., cf_reference_number)
  • Status and priority are integers, not strings

2. Search and Filter Tickets

When to use: User wants to find tickets by status, priority, date range, agent, or custom fields.

Tool sequence:

  1. FRESHDESK_GET_TICKETS - List tickets with simple filters (status, priority, agent) [Required]
  2. FRESHDESK_GET_SEARCH - Advanced ticket search with query syntax [Required]
  3. FRESHDESK_VIEW_TICKET - Get full details for specific tickets from results [Optional]
  4. FRESHDESK_LIST_TICKET_FIELDS - Check available fields for search queries [Optional]

Key parameters for FRESHDESK_GET_TICKETS:

  • status: Filter by status integer (2=Open, 3=Pending, 4=Resolved, 5=Closed)
  • priority: Filter by priority integer (1-4)
  • agent_id: Filter by assigned agent
  • requester_id: Filter by requester
  • email: Filter by requester email
  • created_since: ISO 8601 timestamp
  • page / per_page: Pagination (default 30 per page)
  • sort_by / sort_order: Sort field and direction

Key parameters for FRESHDESK_GET_SEARCH:

  • query: Query string like "status:2 AND priority:3" or "(created_at:>'2024-01-01' AND tag:'urgent')"
  • page: Page number (1-10, max 300 total results)

Pitfalls:

  • FRESHDESK_GET_SEARCH query must be enclosed in double quotes
  • Query string limited to 512 characters
  • Maximum 10 pages (300 results) from search endpoints
  • Date fields in queries use UTC format YYYY-MM-DD
  • Use null keyword to find tickets with empty fields (e.g., "agent_id:null")
  • FRESHDESK_LIST_ALL_TICKETS takes no parameters and returns all tickets (use GET_TICKETS for filtering)

3. Reply to and Add Notes on Tickets

When to use: User wants to send a reply to a customer, add internal notes, or view conversation history.

Tool sequence:

  1. FRESHDESK_VIEW_TICKET - Verify ticket exists and check current state [Prerequisite]
  2. FRESHDESK_REPLY_TO_TICKET - Send a public reply to the requester [Required]
  3. FRESHDESK_ADD_NOTE_TO_TICKET - Add a private or public note [Required]
  4. FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS - View all messages and notes on a ticket [Optional]
  5. FRESHDESK_UPDATE_CONVERSATIONS - Edit an existing note [Optional]

Key parameters for FRESHDESK_REPLY_TO_TICKET:

  • ticket_id: Ticket ID (integer, required)
  • body: Reply content, supports HTML (required)
  • cc_emails / bcc_emails: Additional recipients (max 50 total across to/cc/bcc)
  • from_email: Override sender email if multiple support emails configured
  • user_id: Agent ID to reply on behalf of

Key parameters for FRESHDESK_ADD_NOTE_TO_TICKET:

  • ticket_id: Ticket ID (integer, required)
  • body: Note content, supports HTML (required)
  • private: true for agent-only visibility, false for public (default true)
  • notify_emails: Only accepts agent email addresses, not external contacts

Pitfalls:

  • There are two reply tools: FRESHDESK_REPLY_TO_TICKET (more features) and FRESHDESK_REPLY_TICKET (simpler); both work
  • FRESHDESK_ADD_NOTE_TO_TICKET defaults to private (agent-only); set private: false for public notes
  • notify_emails in notes only accepts agent emails, not customer emails
  • Only notes can be edited via FRESHDESK_UPDATE_CONVERSATIONS; incoming replies cannot be edited

4. Manage Contacts and Companies

When to use: User wants to create, search, or manage customer contacts and company records.

Tool sequence:

  1. FRESHDESK_SEARCH_CONTACTS - Search contacts by email, phone, or company [Required]
  2. FRESHDESK_GET_CONTACTS - List contacts with filters [Optional]
  3. FRESHDESK_IMPORT_CONTACT - Bulk import contacts from CSV [Optional]
  4. FRESHDESK_SEARCH_COMPANIES - Search companies by custom fields [Required]
  5. FRESHDESK_GET_COMPANIES - List all companies [Optional]
  6. FRESHDESK_CREATE_COMPANIES - Create a new company [Optional]
  7. FRESHDESK_UPDATE_COMPANIES - Update company details [Optional]
  8. FRESHDESK_LIST_COMPANY_FIELDS - Check available company fields [Optional]

Key parameters for FRESHDESK_SEARCH_CONTACTS:

  • query: Search string like "email:'user@example.com'" (required)
  • page: Pagination (1-10, max 30 per page)

Key parameters for FRESHDESK_CREATE_COMPANIES:

  • name: Company name (required)
  • domains: Array of domain strings for auto-association with contacts
  • health_score: "Happy", "Doing okay", or "At risk"
  • account_tier: "Basic", "Premium", or "Enterprise"
  • industry: Standard industry classification

Pitfalls:

  • FRESHDESK_SEARCH_CONTACTS requires exact matches; partial/regex searches are not supported
  • FRESHDESK_SEARCH_COMPANIES cannot search by standard name field; use custom fields or created_at
  • Company custom fields do NOT use the cf_ prefix (unlike ticket custom fields)
  • domains on companies enables automatic contact-to-company association by email domain
  • Contact search queries require string values in single quotes inside double-quoted query

Common Patterns

ID Resolution

Always resolve display values to IDs before operations:

  • Requester email -> requester_id: FRESHDESK_SEARCH_CONTACTS with "email:'user@example.com'"
  • Company name -> company_id: FRESHDESK_GET_COMPANIES and match by name (search by name not supported)
  • Agent name -> agent_id: Not directly available; use agent_id from ticket responses or admin configuration

Pagination

Freshdesk uses page-based pagination:

  • FRESHDESK_GET_TICKETS: page (starting at 1) and per_page (max 100)
  • FRESHDESK_GET_SEARCH: page (1-10, 30 results per page, max 300 total)
  • FRESHDESK_SEARCH_CONTACTS: page (1-10, 30 per page)
  • FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS: page and per_page (max 100)

Known Pitfalls

ID Formats

  • Ticket IDs, contact IDs, company IDs, agent IDs, and group IDs are all integers
  • There are no string-based IDs in Freshdesk

Rate Limits

  • Freshdesk enforces per-account API rate limits based on plan tier
  • Bulk operations should be paced to avoid 429 responses
  • Search endpoints are limited to 300 total results (10 pages of 30)

Parameter Quirks

  • Status values: 2=Open, 3=Pending, 4=Resolved, 5=Closed (integers, not strings)
  • Priority values: 1=Low, 2=Medium, 3=High, 4=Urgent (integers, not strings)
  • Source values: 1=Email, 2=Portal, 3=Phone, 7=Chat, 9=Feedback Widget, 10=Outbound Email
  • Ticket custom fields use cf_ prefix; company custom fields do NOT
  • description in tickets supports HTML formatting
  • Search query strings must be in double quotes with string values in single quotes
  • FRESHDESK_LIST_ALL_TICKETS returns all tickets with no filter parameters

Response Structure

  • Ticket details include nested objects for requester, assignee, and conversation data
  • Search results are paginated with a maximum of 300 results across 10 pages
  • Conversation lists include both replies and notes in chronological order

Quick Reference

TaskTool SlugKey Params
Create ticketFRESHDESK_CREATE_TICKETsubject, description, email, priority
Update ticketFRESHDESK_UPDATE_TICKETticket_id, status, priority
View ticketFRESHDESK_VIEW_TICKETticket_id
List ticketsFRESHDESK_GET_TICKETSstatus, priority, page, per_page
List all ticketsFRESHDESK_LIST_ALL_TICKETS(none)
Search ticketsFRESHDESK_GET_SEARCHquery, page
Reply to ticketFRESHDESK_REPLY_TO_TICKETticket_id, body, cc_emails
Reply (simple)FRESHDESK_REPLY_TICKETticket_id, body
Add noteFRESHDESK_ADD_NOTE_TO_TICKETticket_id, body, private
List conversationsFRESHDESK_LIST_ALL_TICKET_CONVERSATIONSticket_id, page
Update noteFRESHDESK_UPDATE_CONVERSATIONSconversation_id, body
Search contactsFRESHDESK_SEARCH_CONTACTSquery, page
List contactsFRESHDESK_GET_CONTACTSemail, company_id, page
Import contactsFRESHDESK_IMPORT_CONTACTfile, name_column_index, email_column_index
Create companyFRESHDESK_CREATE_COMPANIESname, domains, industry
Update companyFRESHDESK_UPDATE_COMPANIEScompany_id, name, domains
Search companiesFRESHDESK_SEARCH_COMPANIESquery, page
List companiesFRESHDESK_GET_COMPANIESpage
List ticket fieldsFRESHDESK_LIST_TICKET_FIELDS(none)
List company fieldsFRESHDESK_LIST_COMPANY_FIELDS(none)

*Powered by Composio*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.77%
按下载量换算142

Claude

31.64%
按下载量换算125

Cursor

19.21%
按下载量换算76

Gemini CLI

9.11%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills