helpdesk-automation
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
What this skill does
# 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 | Task | Tool Slug | Key Params | |------|-----------|------------| | List tickets | HELPDESK_LIST_TICKETS | silo, sortBy, order, pageSize | | List views | HELPDESK_LIST_VIEWS | (none) | | List canned responses | HELPDESK_LIST_CANNED_RESPONSES | (none) | | List custom fields | HELPDESK_LIST_CUSTOM_FIELDS | (none) | ## When to Use This skill is applicable to execute the workflow or actions described in the overview. ## Limitations - Use this skill only when the task clearly matches the scope described above. - Do not treat the output as a substitute for environment-specific validation, testing, or expert review. - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.