用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HybridAIOne/hybridclaw --skill discord命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | discord |
| description | Read, send, react to, edit, pin, and thread Discord messages with HybridClaw's `message` tool. |
| user-invocable | true |
| metadata | {"hybridclaw":{"category":"communication","short_description":"Discord message actions.","tags":["discord","messaging","coworkers"],"related_skills":["channel-catchup"]}} |
Use HybridClaw's message tool for Discord work. This skill is for actions, not long-form catchups.
guildId, channelId, messageId, and userId values.guildId so the tool can resolve it safely.content and carry their payload in embeds. read returns an embeds array per message (title, description, url, timestamp, author.name, footer.text, and fields[].name/fields[].value) — check it before concluding a message is empty. It is capped at 5 embeds per message and 10 fields per embed.Read recent messages:
{"action":"read","channelId":"1234567890","guildId":"9876543210","limit":20}
Send a message:
{"action":"send","channelId":"1234567890","guildId":"9876543210","content":"Status update: the migration finished cleanly."}
React to a message:
{"action":"react","channelId":"1234567890","guildId":"9876543210","messageId":"112233445566","emoji":"white_check_mark"}
Pin a message:
{"action":"pin","channelId":"1234567890","guildId":"9876543210","messageId":"112233445566"}
Create a thread from a message:
{"action":"thread-create","channelId":"1234567890","guildId":"9876543210","messageId":"112233445566","name":"Release follow-up"}
Reply in a thread:
{"action":"thread-reply","channelId":"1234567890","guildId":"9876543210","messageId":"998877665544","content":"I checked the logs and the alert is resolved."}
channel-catchup.