用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill cma-email命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | CMA-email |
| description | Sends an email via Gmail when a message starts with "cma" or "cmap". |
| metadata | {"clawdbot":{"emoji":"📧","requires":{"skills":"[Truncated]"}}} |
SYSTEM INSTRUCTION: If the user's message starts with "cma" or "cmap" (case-insensitive), you MUST use this skill. Do not reply with text conversation. Execute the email command immediately.
cma [subject] | [body] -> Sends to CMA recipient. Subject: "TODO: [subject]", Body: "[body]"cma [message] -> Sends to CMA recipient. Subject: "TODO: [first 20 chars]...", Body: "[message]"cmap [subject] | [body] -> Sends to CMAP recipient. Subject: "TODO: [subject]", Body: "[body]"cmap [message] -> Sends to CMAP recipient. Subject: "TODO: [first 20 chars]...", Body: "[message]"When the user's message starts with "cma" or "cmap" (case-insensitive):
Identify Prefix and Recipient:
duarte.caldas.oliveira@gmail.comduarte.oliveira@devoteam.comParse the Content:
|.Determine Subject and Body:
| is present:
|.| trimmed).| trimmed).| is NOT present:
Send Email:
gog skill to send the email.gog gmail send --to "[Recipient]" --subject "[Subject]" --body "[Body]"Feedback: