Freshdesk Automation via Rube MCP
Overview
This public intake copy packages plugins/antigravity-awesome-skills/skills/freshdesk-automation from https://github.com/sickn33/antigravity-awesome-skills into the native Omni Skills editorial shape without hiding its origin.
Use it when the operator needs the upstream workflow, support files, and repository context to stay intact while the public validator and private enhancer continue their normal downstream flow.
This intake keeps the copied upstream files intact and uses the external_source block in metadata.json plus ORIGIN.md as the provenance anchor for review.
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.
Imported source sections that did not map cleanly to the public headings are still preserved below or in the support files. Notable imported sections: Prerequisites, Common Patterns, Known Pitfalls, Limitations.
When to Use This Skill
Use this section as the trigger filter. It should make the activation boundary explicit before the operator loads files, runs commands, or opens a pull request.
- This skill is applicable to execute the workflow or actions described in the overview.
- Use when the request clearly matches the imported source intent: Automate Freshdesk helpdesk operations including tickets, contacts, companies, notes, and replies via Rube MCP (Composio). Always search tools first for current schemas.
- Use when the operator should preserve upstream workflow detail instead of rewriting the process from scratch.
- Use when provenance needs to stay visible in the answer, PR, or review packet.
- Use when copied upstream references, examples, or scripts materially improve the answer.
- Use when the workflow should remain reviewable in the public intake repo before the private enhancer takes over.
Operating Table
| Situation |
Start here |
Why it matters |
| First-time use |
metadata.json |
Confirms repository, branch, commit, and imported path through the external_source block before touching the copied workflow |
| Provenance review |
ORIGIN.md |
Gives reviewers a plain-language audit trail for the imported source |
| Workflow execution |
SKILL.md |
Starts with the smallest copied file that materially changes execution |
| Supporting context |
SKILL.md |
Adds the next most relevant copied source file without loading the entire package |
| Handoff decision |
## Related Skills |
Helps the operator switch to a stronger native skill when the task drifts |
Workflow
This workflow is intentionally editorial and operational at the same time. It keeps the imported source useful to the operator while still satisfying the public intake standards that feed the downstream enhancer flow.
- Verify Rube MCP is available by confirming RUBESEARCHTOOLS responds
- Call RUBEMANAGECONNECTIONS with toolkit freshdesk
- If connection is not ACTIVE, follow the returned auth link to complete Freshdesk authentication
- Confirm connection status shows ACTIVE before running any workflows
- FRESHDESKSEARCHCONTACTS - Find requester by email to get requester_id [Optional]
- FRESHDESKLISTTICKET_FIELDS - Check available custom fields and statuses [Optional]
- FRESHDESKCREATETICKET - Create a new ticket with subject, description, requester info [Required]
Imported Workflow Notes
Imported: 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.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLS responds
- Call
RUBE_MANAGE_CONNECTIONS with toolkit freshdesk
- If connection is not ACTIVE, follow the returned auth link to complete Freshdesk authentication
- Confirm connection status shows ACTIVE before running any workflows
Imported: 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:
FRESHDESK_SEARCH_CONTACTS - Find requester by email to get requester_id [Optional]
FRESHDESK_LIST_TICKET_FIELDS - Check available custom fields and statuses [Optional]
FRESHDESK_CREATE_TICKET - Create a new ticket with subject, description, requester info [Required]
FRESHDESK_UPDATE_TICKET - Modify ticket status, priority, assignee, or other fields [Optional]
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:
FRESHDESK_GET_TICKETS - List tickets with simple filters (status, priority, agent) [Required]
FRESHDESK_GET_SEARCH - Advanced ticket search with query syntax [Required]
FRESHDESK_VIEW_TICKET - Get full details for specific tickets from results [Optional]
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:
FRESHDESK_VIEW_TICKET - Verify ticket exists and check current state [Prerequisite]
FRESHDESK_REPLY_TO_TICKET - Send a public reply to the requester [Required]
FRESHDESK_ADD_NOTE_TO_TICKET - Add a private or public note [Required]
FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS - View all messages and notes on a ticket [Optional]
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:
FRESHDESK_SEARCH_CONTACTS - Search contacts by email, phone, or company [Required]
FRESHDESK_GET_CONTACTS - List contacts with filters [Optional]
FRESHDESK_IMPORT_CONTACT - Bulk import contacts from CSV [Optional]
FRESHDESK_SEARCH_COMPANIES - Search companies by custom fields [Required]
FRESHDESK_GET_COMPANIES - List all companies [Optional]
FRESHDESK_CREATE_COMPANIES - Create a new company [Optional]
FRESHDESK_UPDATE_COMPANIES - Update company details [Optional]
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
Imported: 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
Examples
Example 1: Ask for the upstream workflow directly
Use @freshdesk-automation-v2 to handle <task>. Start from the copied upstream workflow, load only the files that change the outcome, and keep provenance visible in the answer.
Explanation: This is the safest starting point when the operator needs the imported workflow, but not the entire repository.
Example 2: Ask for a provenance-grounded review
Review @freshdesk-automation-v2 against metadata.json and ORIGIN.md, then explain which copied upstream files you would load first and why.
Explanation: Use this before review or troubleshooting when you need a precise, auditable explanation of origin and file selection.
Example 3: Narrow the copied support files before execution
Use @freshdesk-automation-v2 for <task>. Load only the copied references, examples, or scripts that change the outcome, and name the files explicitly before proceeding.
Explanation: This keeps the skill aligned with progressive disclosure instead of loading the whole copied package by default.
Example 4: Build a reviewer packet
Review @freshdesk-automation-v2 using the copied upstream files plus provenance, then summarize any gaps before merge.
Explanation: This is useful when the PR is waiting for human review and you want a repeatable audit packet.
Best Practices
Treat the generated public skill as a reviewable packaging layer around the upstream repository. The goal is to keep provenance explicit and load only the copied source material that materially improves execution.
- Keep the imported skill grounded in the upstream repository; do not invent steps that the source material cannot support.
- Prefer the smallest useful set of support files so the workflow stays auditable and fast to review.
- Keep provenance, source commit, and imported file paths visible in notes and PR descriptions.
- Point directly at the copied upstream files that justify the workflow instead of relying on generic review boilerplate.
- Treat generated examples as scaffolding; adapt them to the concrete task before execution.
- Route to a stronger native skill when architecture, debugging, design, or security concerns become dominant.
Troubleshooting
Problem: The operator skipped the imported context and answered too generically
Symptoms: The result ignores the upstream workflow in plugins/antigravity-awesome-skills/skills/freshdesk-automation, fails to mention provenance, or does not use any copied source files at all.
Solution: Re-open metadata.json, ORIGIN.md, and the most relevant copied upstream files. Check the external_source block first, then restate the provenance before continuing.
Problem: The imported workflow feels incomplete during review
Symptoms: Reviewers can see the generated SKILL.md, but they cannot quickly tell which references, examples, or scripts matter for the current task.
Solution: Point at the exact copied references, examples, scripts, or assets that justify the path you took. If the gap is still real, record it in the PR instead of hiding it.
Problem: The task drifted into a different specialization
Symptoms: The imported skill starts in the right place, but the work turns into debugging, architecture, design, security, or release orchestration that a native skill handles better.
Solution: Use the related skills section to hand off deliberately. Keep the imported provenance visible so the next skill inherits the right context instead of starting blind.
Related Skills
@00-andruia-consultant - Use when the work is better handled by that native specialization after this imported skill establishes context.
@00-andruia-consultant-v2 - Use when the work is better handled by that native specialization after this imported skill establishes context.
@10-andruia-skill-smith - Use when the work is better handled by that native specialization after this imported skill establishes context.
@10-andruia-skill-smith-v2 - Use when the work is better handled by that native specialization after this imported skill establishes context.
Additional Resources
Use this support matrix and the linked files below as the operator packet for this imported skill. They should reflect real copied source material, not generic scaffolding.
| Resource family |
What it gives the reviewer |
Example path |
references |
copied reference notes, guides, or background material from upstream |
references/n/a |
examples |
worked examples or reusable prompts copied from upstream |
examples/n/a |
scripts |
upstream helper scripts that change execution or validation |
scripts/n/a |
agents |
routing or delegation notes that are genuinely part of the imported package |
agents/n/a |
assets |
supporting assets or schemas copied from the source package |
assets/n/a |
Imported Reference Notes
Imported: Quick Reference
| Task |
Tool Slug |
Key Params |
| Create ticket |
FRESHDESK_CREATE_TICKET |
subject, description, email, priority |
| Update ticket |
FRESHDESK_UPDATE_TICKET |
ticket_id, status, priority |
| View ticket |
FRESHDESK_VIEW_TICKET |
ticket_id |
| List tickets |
FRESHDESK_GET_TICKETS |
status, priority, page, per_page |
| List all tickets |
FRESHDESK_LIST_ALL_TICKETS |
(none) |
| Search tickets |
FRESHDESK_GET_SEARCH |
query, page |
| Reply to ticket |
FRESHDESK_REPLY_TO_TICKET |
ticket_id, body, cc_emails |
| Reply (simple) |
FRESHDESK_REPLY_TICKET |
ticket_id, body |
| Add note |
FRESHDESK_ADD_NOTE_TO_TICKET |
ticket_id, body, private |
| List conversations |
FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS |
ticket_id, page |
| Update note |
FRESHDESK_UPDATE_CONVERSATIONS |
conversation_id, body |
| Search contacts |
FRESHDESK_SEARCH_CONTACTS |
query, page |
| List contacts |
FRESHDESK_GET_CONTACTS |
email, company_id, page |
| Import contacts |
FRESHDESK_IMPORT_CONTACT |
file, name_column_index, email_column_index |
| Create company |
FRESHDESK_CREATE_COMPANIES |
name, domains, industry |
| Update company |
FRESHDESK_UPDATE_COMPANIES |
company_id, name, domains |
| Search companies |
FRESHDESK_SEARCH_COMPANIES |
query, page |
| List companies |
FRESHDESK_GET_COMPANIES |
page |
| List ticket fields |
FRESHDESK_LIST_TICKET_FIELDS |
(none) |
| List company fields |
FRESHDESK_LIST_COMPANY_FIELDS |
(none) |
Imported: 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)
Imported: 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
Imported: 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.
1---2name: freshdesk-automation-v23description: Freshdesk Automation via Rube MCP workflow skill. Use this skill when the user needs Automate Freshdesk helpdesk operations including tickets, contacts, companies, notes, and replies via Rube MCP (Composio). Always search tools first for current schemas and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.4---56# Freshdesk Automation via Rube MCP78## Overview910This public intake copy packages `plugins/antigravity-awesome-skills/skills/freshdesk-automation` from `https://github.com/sickn33/antigravity-awesome-skills` into the native Omni Skills editorial shape without hiding its origin.1112Use it when the operator needs the upstream workflow, support files, and repository context to stay intact while the public validator and private enhancer continue their normal downstream flow.1314This intake keeps the copied upstream files intact and uses the `external_source` block in `metadata.json` plus `ORIGIN.md` as the provenance anchor for review.1516# 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.1718Imported source sections that did not map cleanly to the public headings are still preserved below or in the support files. Notable imported sections: Prerequisites, Common Patterns, Known Pitfalls, Limitations.1920## When to Use This Skill2122Use this section as the trigger filter. It should make the activation boundary explicit before the operator loads files, runs commands, or opens a pull request.2324- This skill is applicable to execute the workflow or actions described in the overview.25- Use when the request clearly matches the imported source intent: Automate Freshdesk helpdesk operations including tickets, contacts, companies, notes, and replies via Rube MCP (Composio). Always search tools first for current schemas.26- Use when the operator should preserve upstream workflow detail instead of rewriting the process from scratch.27- Use when provenance needs to stay visible in the answer, PR, or review packet.28- Use when copied upstream references, examples, or scripts materially improve the answer.29- Use when the workflow should remain reviewable in the public intake repo before the private enhancer takes over.3031## Operating Table3233| Situation | Start here | Why it matters |34| --- | --- | --- |35| First-time use | `metadata.json` | Confirms repository, branch, commit, and imported path through the `external_source` block before touching the copied workflow |36| Provenance review | `ORIGIN.md` | Gives reviewers a plain-language audit trail for the imported source |37| Workflow execution | `SKILL.md` | Starts with the smallest copied file that materially changes execution |38| Supporting context | `SKILL.md` | Adds the next most relevant copied source file without loading the entire package |39| Handoff decision | `## Related Skills` | Helps the operator switch to a stronger native skill when the task drifts |4041## Workflow4243This workflow is intentionally editorial and operational at the same time. It keeps the imported source useful to the operator while still satisfying the public intake standards that feed the downstream enhancer flow.44451. Verify Rube MCP is available by confirming RUBESEARCHTOOLS responds462. Call RUBEMANAGECONNECTIONS with toolkit freshdesk473. If connection is not ACTIVE, follow the returned auth link to complete Freshdesk authentication484. Confirm connection status shows ACTIVE before running any workflows495. FRESHDESKSEARCHCONTACTS - Find requester by email to get requester_id [Optional]506. FRESHDESKLISTTICKET_FIELDS - Check available custom fields and statuses [Optional]517. FRESHDESKCREATETICKET - Create a new ticket with subject, description, requester info [Required]5253### Imported Workflow Notes5455#### Imported: Setup5657**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.58591. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds602. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `freshdesk`613. If connection is not ACTIVE, follow the returned auth link to complete Freshdesk authentication624. Confirm connection status shows ACTIVE before running any workflows6364#### Imported: Core Workflows6566### 1. Create and Manage Tickets6768**When to use**: User wants to create a new support ticket, update an existing ticket, or view ticket details.6970**Tool sequence**:711. `FRESHDESK_SEARCH_CONTACTS` - Find requester by email to get requester_id [Optional]722. `FRESHDESK_LIST_TICKET_FIELDS` - Check available custom fields and statuses [Optional]733. `FRESHDESK_CREATE_TICKET` - Create a new ticket with subject, description, requester info [Required]744. `FRESHDESK_UPDATE_TICKET` - Modify ticket status, priority, assignee, or other fields [Optional]755. `FRESHDESK_VIEW_TICKET` - Retrieve full ticket details by ID [Optional]7677**Key parameters for FRESHDESK_CREATE_TICKET**:78- `subject`: Ticket subject (required)79- `description`: HTML content of the ticket (required)80- `email`: Requester email (at least one requester identifier required)81- `requester_id`: User ID of requester (alternative to email)82- `status`: 2=Open, 3=Pending, 4=Resolved, 5=Closed (default 2)83- `priority`: 1=Low, 2=Medium, 3=High, 4=Urgent (default 1)84- `source`: 1=Email, 2=Portal, 3=Phone, 7=Chat (default 2)85- `responder_id`: Agent ID to assign the ticket to86- `group_id`: Group to assign the ticket to87- `tags`: Array of tag strings88- `custom_fields`: Object with `cf_<field_name>` keys8990**Pitfalls**:91- At least one requester identifier is required: `requester_id`, `email`, `phone`, `facebook_id`, `twitter_id`, or `unique_external_id`92- If `phone` is provided without `email`, then `name` becomes mandatory93- `description` supports HTML formatting94- `attachments` field expects multipart/form-data format, not file paths or URLs95- Custom field keys must be prefixed with `cf_` (e.g., `cf_reference_number`)96- Status and priority are integers, not strings9798### 2. Search and Filter Tickets99100**When to use**: User wants to find tickets by status, priority, date range, agent, or custom fields.101102**Tool sequence**:1031. `FRESHDESK_GET_TICKETS` - List tickets with simple filters (status, priority, agent) [Required]1042. `FRESHDESK_GET_SEARCH` - Advanced ticket search with query syntax [Required]1053. `FRESHDESK_VIEW_TICKET` - Get full details for specific tickets from results [Optional]1064. `FRESHDESK_LIST_TICKET_FIELDS` - Check available fields for search queries [Optional]107108**Key parameters for FRESHDESK_GET_TICKETS**:109- `status`: Filter by status integer (2=Open, 3=Pending, 4=Resolved, 5=Closed)110- `priority`: Filter by priority integer (1-4)111- `agent_id`: Filter by assigned agent112- `requester_id`: Filter by requester113- `email`: Filter by requester email114- `created_since`: ISO 8601 timestamp115- `page` / `per_page`: Pagination (default 30 per page)116- `sort_by` / `sort_order`: Sort field and direction117118**Key parameters for FRESHDESK_GET_SEARCH**:119- `query`: Query string like `"status:2 AND priority:3"` or `"(created_at:>'2024-01-01' AND tag:'urgent')"`120- `page`: Page number (1-10, max 300 total results)121122**Pitfalls**:123- `FRESHDESK_GET_SEARCH` query must be enclosed in double quotes124- Query string limited to 512 characters125- Maximum 10 pages (300 results) from search endpoints126- Date fields in queries use UTC format YYYY-MM-DD127- Use `null` keyword to find tickets with empty fields (e.g., `"agent_id:null"`)128- `FRESHDESK_LIST_ALL_TICKETS` takes no parameters and returns all tickets (use GET_TICKETS for filtering)129130### 3. Reply to and Add Notes on Tickets131132**When to use**: User wants to send a reply to a customer, add internal notes, or view conversation history.133134**Tool sequence**:1351. `FRESHDESK_VIEW_TICKET` - Verify ticket exists and check current state [Prerequisite]1362. `FRESHDESK_REPLY_TO_TICKET` - Send a public reply to the requester [Required]1373. `FRESHDESK_ADD_NOTE_TO_TICKET` - Add a private or public note [Required]1384. `FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS` - View all messages and notes on a ticket [Optional]1395. `FRESHDESK_UPDATE_CONVERSATIONS` - Edit an existing note [Optional]140141**Key parameters for FRESHDESK_REPLY_TO_TICKET**:142- `ticket_id`: Ticket ID (integer, required)143- `body`: Reply content, supports HTML (required)144- `cc_emails` / `bcc_emails`: Additional recipients (max 50 total across to/cc/bcc)145- `from_email`: Override sender email if multiple support emails configured146- `user_id`: Agent ID to reply on behalf of147148**Key parameters for FRESHDESK_ADD_NOTE_TO_TICKET**:149- `ticket_id`: Ticket ID (integer, required)150- `body`: Note content, supports HTML (required)151- `private`: true for agent-only visibility, false for public (default true)152- `notify_emails`: Only accepts agent email addresses, not external contacts153154**Pitfalls**:155- There are two reply tools: `FRESHDESK_REPLY_TO_TICKET` (more features) and `FRESHDESK_REPLY_TICKET` (simpler); both work156- `FRESHDESK_ADD_NOTE_TO_TICKET` defaults to private (agent-only); set `private: false` for public notes157- `notify_emails` in notes only accepts agent emails, not customer emails158- Only notes can be edited via `FRESHDESK_UPDATE_CONVERSATIONS`; incoming replies cannot be edited159160### 4. Manage Contacts and Companies161162**When to use**: User wants to create, search, or manage customer contacts and company records.163164**Tool sequence**:1651. `FRESHDESK_SEARCH_CONTACTS` - Search contacts by email, phone, or company [Required]1662. `FRESHDESK_GET_CONTACTS` - List contacts with filters [Optional]1673. `FRESHDESK_IMPORT_CONTACT` - Bulk import contacts from CSV [Optional]1684. `FRESHDESK_SEARCH_COMPANIES` - Search companies by custom fields [Required]1695. `FRESHDESK_GET_COMPANIES` - List all companies [Optional]1706. `FRESHDESK_CREATE_COMPANIES` - Create a new company [Optional]1717. `FRESHDESK_UPDATE_COMPANIES` - Update company details [Optional]1728. `FRESHDESK_LIST_COMPANY_FIELDS` - Check available company fields [Optional]173174**Key parameters for FRESHDESK_SEARCH_CONTACTS**:175- `query`: Search string like `"email:'user@example.com'"` (required)176- `page`: Pagination (1-10, max 30 per page)177178**Key parameters for FRESHDESK_CREATE_COMPANIES**:179- `name`: Company name (required)180- `domains`: Array of domain strings for auto-association with contacts181- `health_score`: "Happy", "Doing okay", or "At risk"182- `account_tier`: "Basic", "Premium", or "Enterprise"183- `industry`: Standard industry classification184185**Pitfalls**:186- `FRESHDESK_SEARCH_CONTACTS` requires exact matches; partial/regex searches are not supported187- `FRESHDESK_SEARCH_COMPANIES` cannot search by standard `name` field; use custom fields or `created_at`188- Company custom fields do NOT use the `cf_` prefix (unlike ticket custom fields)189- `domains` on companies enables automatic contact-to-company association by email domain190- Contact search queries require string values in single quotes inside double-quoted query191192#### Imported: Prerequisites193194- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)195- Active Freshdesk connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `freshdesk`196- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas197198## Examples199200### Example 1: Ask for the upstream workflow directly201202```text203Use @freshdesk-automation-v2 to handle <task>. Start from the copied upstream workflow, load only the files that change the outcome, and keep provenance visible in the answer.204```205206**Explanation:** This is the safest starting point when the operator needs the imported workflow, but not the entire repository.207208### Example 2: Ask for a provenance-grounded review209210```text211Review @freshdesk-automation-v2 against metadata.json and ORIGIN.md, then explain which copied upstream files you would load first and why.212```213214**Explanation:** Use this before review or troubleshooting when you need a precise, auditable explanation of origin and file selection.215216### Example 3: Narrow the copied support files before execution217218```text219Use @freshdesk-automation-v2 for <task>. Load only the copied references, examples, or scripts that change the outcome, and name the files explicitly before proceeding.220```221222**Explanation:** This keeps the skill aligned with progressive disclosure instead of loading the whole copied package by default.223224### Example 4: Build a reviewer packet225226```text227Review @freshdesk-automation-v2 using the copied upstream files plus provenance, then summarize any gaps before merge.228```229230**Explanation:** This is useful when the PR is waiting for human review and you want a repeatable audit packet.231232233234## Best Practices235236Treat the generated public skill as a reviewable packaging layer around the upstream repository. The goal is to keep provenance explicit and load only the copied source material that materially improves execution.237238- Keep the imported skill grounded in the upstream repository; do not invent steps that the source material cannot support.239- Prefer the smallest useful set of support files so the workflow stays auditable and fast to review.240- Keep provenance, source commit, and imported file paths visible in notes and PR descriptions.241- Point directly at the copied upstream files that justify the workflow instead of relying on generic review boilerplate.242- Treat generated examples as scaffolding; adapt them to the concrete task before execution.243- Route to a stronger native skill when architecture, debugging, design, or security concerns become dominant.244245246247## Troubleshooting248249### Problem: The operator skipped the imported context and answered too generically250251**Symptoms:** The result ignores the upstream workflow in `plugins/antigravity-awesome-skills/skills/freshdesk-automation`, fails to mention provenance, or does not use any copied source files at all.252**Solution:** Re-open `metadata.json`, `ORIGIN.md`, and the most relevant copied upstream files. Check the `external_source` block first, then restate the provenance before continuing.253254### Problem: The imported workflow feels incomplete during review255256**Symptoms:** Reviewers can see the generated `SKILL.md`, but they cannot quickly tell which references, examples, or scripts matter for the current task.257**Solution:** Point at the exact copied references, examples, scripts, or assets that justify the path you took. If the gap is still real, record it in the PR instead of hiding it.258259### Problem: The task drifted into a different specialization260261**Symptoms:** The imported skill starts in the right place, but the work turns into debugging, architecture, design, security, or release orchestration that a native skill handles better.262**Solution:** Use the related skills section to hand off deliberately. Keep the imported provenance visible so the next skill inherits the right context instead of starting blind.263264265266## Related Skills267268- `@00-andruia-consultant` - Use when the work is better handled by that native specialization after this imported skill establishes context.269- `@00-andruia-consultant-v2` - Use when the work is better handled by that native specialization after this imported skill establishes context.270- `@10-andruia-skill-smith` - Use when the work is better handled by that native specialization after this imported skill establishes context.271- `@10-andruia-skill-smith-v2` - Use when the work is better handled by that native specialization after this imported skill establishes context.272273## Additional Resources274275Use this support matrix and the linked files below as the operator packet for this imported skill. They should reflect real copied source material, not generic scaffolding.276277| Resource family | What it gives the reviewer | Example path |278| --- | --- | --- |279| `references` | copied reference notes, guides, or background material from upstream | `references/n/a` |280| `examples` | worked examples or reusable prompts copied from upstream | `examples/n/a` |281| `scripts` | upstream helper scripts that change execution or validation | `scripts/n/a` |282| `agents` | routing or delegation notes that are genuinely part of the imported package | `agents/n/a` |283| `assets` | supporting assets or schemas copied from the source package | `assets/n/a` |284285286287### Imported Reference Notes288289#### Imported: Quick Reference290291| Task | Tool Slug | Key Params |292|------|-----------|------------|293| Create ticket | `FRESHDESK_CREATE_TICKET` | `subject`, `description`, `email`, `priority` |294| Update ticket | `FRESHDESK_UPDATE_TICKET` | `ticket_id`, `status`, `priority` |295| View ticket | `FRESHDESK_VIEW_TICKET` | `ticket_id` |296| List tickets | `FRESHDESK_GET_TICKETS` | `status`, `priority`, `page`, `per_page` |297| List all tickets | `FRESHDESK_LIST_ALL_TICKETS` | (none) |298| Search tickets | `FRESHDESK_GET_SEARCH` | `query`, `page` |299| Reply to ticket | `FRESHDESK_REPLY_TO_TICKET` | `ticket_id`, `body`, `cc_emails` |300| Reply (simple) | `FRESHDESK_REPLY_TICKET` | `ticket_id`, `body` |301| Add note | `FRESHDESK_ADD_NOTE_TO_TICKET` | `ticket_id`, `body`, `private` |302| List conversations | `FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS` | `ticket_id`, `page` |303| Update note | `FRESHDESK_UPDATE_CONVERSATIONS` | `conversation_id`, `body` |304| Search contacts | `FRESHDESK_SEARCH_CONTACTS` | `query`, `page` |305| List contacts | `FRESHDESK_GET_CONTACTS` | `email`, `company_id`, `page` |306| Import contacts | `FRESHDESK_IMPORT_CONTACT` | `file`, `name_column_index`, `email_column_index` |307| Create company | `FRESHDESK_CREATE_COMPANIES` | `name`, `domains`, `industry` |308| Update company | `FRESHDESK_UPDATE_COMPANIES` | `company_id`, `name`, `domains` |309| Search companies | `FRESHDESK_SEARCH_COMPANIES` | `query`, `page` |310| List companies | `FRESHDESK_GET_COMPANIES` | `page` |311| List ticket fields | `FRESHDESK_LIST_TICKET_FIELDS` | (none) |312| List company fields | `FRESHDESK_LIST_COMPANY_FIELDS` | (none) |313314#### Imported: Common Patterns315316### ID Resolution317Always resolve display values to IDs before operations:318- **Requester email -> requester_id**: `FRESHDESK_SEARCH_CONTACTS` with `"email:'user@example.com'"`319- **Company name -> company_id**: `FRESHDESK_GET_COMPANIES` and match by name (search by name not supported)320- **Agent name -> agent_id**: Not directly available; use agent_id from ticket responses or admin configuration321322### Pagination323Freshdesk uses page-based pagination:324- `FRESHDESK_GET_TICKETS`: `page` (starting at 1) and `per_page` (max 100)325- `FRESHDESK_GET_SEARCH`: `page` (1-10, 30 results per page, max 300 total)326- `FRESHDESK_SEARCH_CONTACTS`: `page` (1-10, 30 per page)327- `FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS`: `page` and `per_page` (max 100)328329#### Imported: Known Pitfalls330331### ID Formats332- Ticket IDs, contact IDs, company IDs, agent IDs, and group IDs are all integers333- There are no string-based IDs in Freshdesk334335### Rate Limits336- Freshdesk enforces per-account API rate limits based on plan tier337- Bulk operations should be paced to avoid 429 responses338- Search endpoints are limited to 300 total results (10 pages of 30)339340### Parameter Quirks341- Status values: 2=Open, 3=Pending, 4=Resolved, 5=Closed (integers, not strings)342- Priority values: 1=Low, 2=Medium, 3=High, 4=Urgent (integers, not strings)343- Source values: 1=Email, 2=Portal, 3=Phone, 7=Chat, 9=Feedback Widget, 10=Outbound Email344- Ticket custom fields use `cf_` prefix; company custom fields do NOT345- `description` in tickets supports HTML formatting346- Search query strings must be in double quotes with string values in single quotes347- `FRESHDESK_LIST_ALL_TICKETS` returns all tickets with no filter parameters348349### Response Structure350- Ticket details include nested objects for requester, assignee, and conversation data351- Search results are paginated with a maximum of 300 results across 10 pages352- Conversation lists include both replies and notes in chronological order353354#### Imported: Limitations355356- Use this skill only when the task clearly matches the scope described above.357- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.358- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.