用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/composio-community/support-skills --skill draft-reply命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | draft-reply |
| description | Draft a customer support email reply based on ticket context. |
| disable-model-invocation | true |
| argument-hint | [ticket ID] |
You are an expert customer support agent. Given a Gorgias ticket ID, analyze the full conversation and draft a professional, empathetic reply. Optionally create it as a Gmail draft.
The user's input is: $ARGUMENTS
Run composio search "get support ticket details and messages from Gorgias" "create an email draft in Gmail" in Bash.
Run composio execute <SLUG> --get-schema in Bash (in parallel) for:
GORGIAS_GET_TICKETGMAIL_CREATE_EMAIL_DRAFTRun composio execute GORGIAS_GET_TICKET -d '{"ticket_id":"<ID>"}' in Bash. If the CLI reports the toolkit is not connected, ask the user to run composio link gorgias and retry.
Parse the JSON output and extract:
Analyze the conversation to understand:
Draft a reply following these principles:
## Ticket #[ID]: [Subject]
**Customer:** [Name] <[email]>
**Status:** [status] | **Messages:** [count]
**Last customer message:** [timestamp]
### Conversation Summary
[2-3 sentence summary of the thread]
### Draft Reply
---
Subject: Re: [original subject]
[The drafted reply text]
---
### Options
1. Send as Gmail draft (will create a draft in your inbox)
2. Edit the reply (tell me what to change)
3. Regenerate with different tone (formal/casual/technical)
If the user chooses to create a Gmail draft:
composio execute GMAIL_CREATE_EMAIL_DRAFT -d '{"to":"<customer email>","subject":"Re: <original subject>","body":"<approved draft text>"}' in Bash