discord-report
通过 Discord Bot 将任务报告发送到 Discord 频道。当用户说"discord通知我"、"ds通知我"、"发discord"、"发ds"等关键词时触发此技能。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
通过 Discord Bot 将任务报告发送到 Discord 频道。当用户说"discord通知我"、"ds通知我"、"发discord"、"发ds"等关键词时触发此技能。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
This skill should be used when users need to install, configure, or troubleshoot DeepEP (DeepSeek Expert Parallelism) on NVIDIA GPU systems. It covers the complete installation workflow including CUDA, DOCA-OFED, NVSHMEM with IBGDA support, and DeepEP itself. The skill is particularly useful for B200/H100/A100 GPUs with RoCE/InfiniBand networking, and includes comprehensive debugging capabilities for common installation failures.
创建和管理 Agent Teams 并行任务团队。当用户说"建个团队"、"拉个队伍"、"并行跑"、"create team"、"spawn agents"、"组队"时触发。
查看 Agent Teams 状态。当用户说"teams"、"团队状态"、"看看团队"、"team status"时触发。
Generate videos using Google Veo 3.1 on Vertex AI. Use when the user says "生成视频", "做个视频", "generate video", "帮我生成一段视频", "create a video", "视频生成", "text to video", "文生视频", or when you need to create video content.
Generate images using Google Imagen 4 on Vertex AI. Use when the user says "生成图片", "画一张", "generate image", "帮我画", "生成一张图", "create an image", "图片生成", or when you need to create visual content to explain concepts.
Deploy a Discord Bot that connects to Claude Code via persistent processes using Unix socketpair + stream-json (same mechanism as VSCode extension). Each user gets their own long-running Claude process with full interactive mode support (auto memory, CLAUDE.md, skills). Includes Whisper voice transcription, user whitelist, session history with dropdown switcher, and slash commands. Use when the user says "帮我建一个 Discord Bot", "setup discord bot", "搭建 Discord 机器人", "discord bot 设置", or "部署 discord bot".
| name | discord-report |
| description | 通过 Discord Bot 将任务报告发送到 Discord 频道。当用户说"discord通知我"、"ds通知我"、"发discord"、"发ds"等关键词时触发此技能。 |
| license | MIT |
当用户请求将报告发送到 Discord 时,使用此技能。通过已部署的 Discord Bot 将消息发送到指定频道。
当用户的请求中包含以下关键词时触发:
Discord Bot 必须已经部署并运行。检查方式:
ps aux | grep bot_simple | grep -v grep
如果 Bot 未运行,先使用 discord-bot-setup 技能部署 Bot。
根据当前会话中完成的任务,生成 Markdown 格式的报告。报告应包含:
## 任务摘要
[简要描述完成了什么任务]
## 完成的工作
- [工作项 1]
- [工作项 2]
- [工作项 3]
## 关键变更
[列出主要的代码/配置变更]
## 注意事项
[任何需要用户注意的问题或后续步骤]
使用 Bash 工具调用发送脚本:
~/.claude/scripts/send-to-discord.sh "报告内容" "标题"
或者通过 stdin 传递内容:
cat << 'EOF' | ~/.claude/scripts/send-to-discord.sh "" "标题"
## 任务摘要
完成了用户认证功能的开发...
## 完成的工作
- 添加了 login 接口
- 实现了 JWT 验证
EOF
支持发送网络图片或本地图片:
# 网络图片 URL
~/.claude/scripts/send-to-discord.sh "报告内容" "标题" "https://example.com/image.png"
# 本地图片文件
~/.claude/scripts/send-to-discord.sh "报告内容" "标题" "/path/to/screenshot.png"
脚本会返回:
✅ 报告已发送到 Discord - 成功❌ 发送失败: ... - 失败,显示错误信息发送的消息显示为 Embed 卡片格式:
Discord Embed 支持以下 Markdown:
**text***text*~~text~~行内代码[text](url)-,有序 1.)>##(仅一级效果好)不支持:表格(同飞书一样不支持表格渲染)
与飞书类似,Discord Embed 不支持表格语法。替代方案:
方案 1:使用列表格式(推荐)
**128 并发**
- Output: 1,159 tok/s
- TTFT: 1.73s
- P99 TTFT: 6.23s
方案 2:使用代码块(适合对齐数据)
```
并发 Output(tok/s) TTFT(s) TPOT(s)
64 593.7 1.20 0.105
128 1,159.0 1.73 0.106
```
用户:"帮我修复登录 bug,完成后用 discord 通知我"
执行:
send-to-discord.sh 发送用户:"跑个性能测试,结果截图用 ds 发给我"
执行:
send-to-discord.sh 带图片发送用户:"把今天的工作总结发到 ds"
执行:
Bot Token 和 Channel ID 已配置在脚本中:
~/.claude/scripts/send-to-discord.sh
当前配置:
🥶-claude-code (Vibe Coding 服务器)1471088850712531055如需修改目标频道,编辑脚本中的 CHANNEL_ID 变量。
ps aux | grep bot_simple | grep -v grepsetsid python3 ~/.claude/discord-bot/bot_simple.py < /dev/null >> ~/.claude/discord-bot/bot.log 2>&1 &
disown