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

helpdesk-automation帮助台自动化

Agent Skill

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

总安装

593

周安装

24

GitHub Stars

52

下载量

186
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

helpdesk-automation 用于查找、检索和筛选相关信息,适合在自动化支持场景中快速定位所需资料。

  • 适用于需要根据任务线索或关键词在 Codex、Claude 等宿主中获取信息的场景。
  • 可通过 npx skills add 命令安装,具体功能以原始 README 为准。
  • 使用前应确认维护状态及是否会触发联网、命令执行等操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

HelpDesk Automation via Rube MCP

Automate HelpDesk ticketing operations through Composio's HelpDesk toolkit via Rube MCP.

Prerequisites

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

Core Workflows

1. List and Browse Tickets

When to use: User wants to retrieve, browse, or paginate through support tickets

Tool sequence:

  1. HELPDESK_LIST_TICKETS - List tickets with sorting and pagination [Required]

Key parameters:

  • silo: Ticket folder - 'tickets', 'archive', 'trash', or 'spam' (default: 'tickets')
  • sortBy: Sort field - 'createdAt', 'updatedAt', or 'lastMessageAt' (default: 'createdAt')
  • order: Sort direction - 'asc' or 'desc' (default: 'desc')
  • pageSize: Results per page, 1-100 (default: 20)
  • next.value: Timestamp cursor for forward pagination
  • next.ID: ID cursor for forward pagination
  • prev.value: Timestamp cursor for backward pagination
  • prev.ID: ID cursor for backward pagination

Pitfalls:

  • Pagination uses cursor-based approach with timestamp + ID pairs
  • Forward pagination requires both next.value and next.ID from previous response
  • Backward pagination requires both prev.value and prev.ID
  • silo determines which folder to list from; default is active tickets
  • pageSize max is 100; default is 20
  • Archived and trashed tickets are in separate silos

2. Manage Ticket Views

When to use: User wants to see saved agent views for organizing tickets

Tool sequence:

  1. HELPDESK_LIST_VIEWS - List all agent views [Required]

Key parameters: (none required)

Pitfalls:

  • Views are predefined saved filters configured by agents in the HelpDesk UI
  • View definitions include filter criteria that can be used to understand ticket organization
  • Views cannot be created or modified via API; they are managed in the HelpDesk UI

3. Use Canned Responses

When to use: User wants to list available canned (template) responses for tickets

Tool sequence:

  1. HELPDESK_LIST_CANNED_RESPONSES - Retrieve all predefined reply templates [Required]

Key parameters: (none required)

Pitfalls:

  • Canned responses are predefined templates for common replies
  • They may include placeholder variables that need to be filled in
  • Canned responses are managed through the HelpDesk UI
  • Response content may include HTML formatting

4. Inspect Custom Fields

When to use: User wants to view custom field definitions for the account

Tool sequence:

  1. HELPDESK_LIST_CUSTOM_FIELDS - List all custom field definitions [Required]

Key parameters: (none required)

Pitfalls:

  • Custom fields extend the default ticket schema with organization-specific data
  • Field definitions include field type, name, and validation rules
  • Custom fields are configured in the HelpDesk admin panel
  • Field values appear on tickets when the field has been populated

Common Patterns

Ticket Browsing Pattern

1. Call HELPDESK_LIST_TICKETS with desired silo and sortBy
2. Process the returned page of tickets
3. Extract next.value and next.ID from the response
4. Call HELPDESK_LIST_TICKETS with those cursor values for next page
5. Continue until no more cursor values are returned

Ticket Folder Navigation

Active tickets:  silo='tickets'
Archived:        silo='archive'
Trashed:         silo='trash'
Spam:            silo='spam'

Cursor-Based Pagination

Forward pagination:
  - Use next.value (timestamp) and next.ID from response
  - Pass as next.value and next.ID parameters in next call

Backward pagination:
  - Use prev.value (timestamp) and prev.ID from response
  - Pass as prev.value and prev.ID parameters in next call

Known Pitfalls

Cursor Pagination:

  • Both timestamp and ID are required for cursor navigation
  • Cursor values are timestamps in ISO 8601 date-time format
  • Mixing forward and backward cursors in the same request is undefined behavior

Silo Filtering:

  • Tickets are physically separated into silos (folders)
  • Moving tickets between silos is done in the HelpDesk UI
  • Each silo query is independent; there is no cross-silo search

Read-Only Operations:

  • Current Composio toolkit provides list/read operations
  • Ticket creation, update, and reply operations may require additional tools
  • Check RUBE_SEARCH_TOOLS for any newly available tools

Rate Limits:

  • HelpDesk API has per-account rate limits
  • Implement backoff on 429 responses
  • Keep page sizes reasonable to avoid timeouts

Response Parsing:

  • Response data may be nested under data or data.data
  • Parse defensively with fallback patterns
  • Ticket IDs are strings

Quick Reference

TaskTool SlugKey Params
List ticketsHELPDESK_LIST_TICKETSsilo, sortBy, order, pageSize
List viewsHELPDESK_LIST_VIEWS(none)
List canned responsesHELPDESK_LIST_CANNED_RESPONSES(none)
List custom fieldsHELPDESK_LIST_CUSTOM_FIELDS(none)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.39%
按下载量换算68

Claude

29.66%
按下载量换算55

Cursor

19.14%
按下载量换算36

Gemini CLI

9.9%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills