with one click
notify
统一通知服务 - 支持 Mac 通知、Telegram、未来可扩展更多渠道
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
统一通知服务 - 支持 Mac 通知、Telegram、未来可扩展更多渠道
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
火山引擎语音识别 - 将音频/视频转文字,支持长音频分段识别。
Use when publishing an Obsidian plugin to the community plugin store, creating GitHub Releases for Obsidian plugins, or submitting PRs to obsidianmd/obsidian-releases
一键部署静态网站到 Vercel 和 Cloudflare Pages。支持 HTML/React/Vue 等任意静态项目。
将 Expo/React Native 项目通过 EAS Build 构建 iOS 包并提交到 TestFlight。支持从零配置 EAS、构建、提交全流程。
综合画图工具 - AI 生图 (Nanobanana/Gemini) + 图片后处理(拼接/抠图/圆形裁剪/合成)。支持中英文自然语言画图。
统一搜索与抓取能力层 - 整合所有外部信息获取接口(搜索、抓取、下载)
| name | notify |
| description | 统一通知服务 - 支持 Mac 通知、Telegram、未来可扩展更多渠道 |
| allowed-tools | Bash(python:*), Read, Write |
跨渠道发送通知,支持 Mac 桌面通知、Telegram 等多种方式。
from notify import send_notification
# 发送到所有渠道
send_notification("标题", "消息内容")
# 指定渠道
send_notification("标题", "消息内容", channels=["mac", "telegram"])
# 只发 Mac
send_notification("标题", "消息内容", channels=["mac"])
# 只发 Telegram
send_notification("标题", "消息内容", channels=["telegram"])
# 发送到所有渠道
python3 ~/.claude/skills/notify/scripts/notify.py --title "标题" --message "内容"
# 指定渠道
python3 ~/.claude/skills/notify/scripts/notify.py --title "标题" --message "内容" --channels mac telegram
| 渠道 | 说明 | 状态 |
|---|---|---|
mac | Mac 桌面通知 (terminal-notifier) | ✅ |
telegram | Telegram Saved Messages | ✅ |
slack | Slack Webhook | 🔜 |
discord | Discord Webhook | 🔜 |
email | 邮件通知 | 🔜 |
通知配置存储在 ~/.claude/skills/notify/config.json:
{
"default_channels": ["mac", "telegram"],
"telegram": {
"api_id": "xxx",
"api_hash": "xxx",
"session_path": "~/.claude/skills/KOL-info-collect/session/bobo"
},
"mac": {
"sound": "Glass"
}
}
无需额外配置,复用现有凭证。