Unified notification hub collecting all skill alerts and delivering by priority
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install mupeng-notification-hub或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install mupeng-notification-hub⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/mupeng-notification-hub/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: notification-hub description: Unified notification hub collecting all skill alerts and delivering by priority author: 무펭이 🐧 ---
Notification Integration — Collects all skill notifications centrally and delivers by priority to reduce notification fatigue.
Centrally manage diverse notifications from all skills and deliver at appropriate timing and channels based on importance.
Collect all event files from events/ directory:
events/
├── health-2026-02-14.json (health-monitor)
├── scrape-result-2026-02-14.json (data-scraper)
├── dm-check-2026-02-14.json (insta-post)
├── competitor-2026-02-14.json (competitor-watch)
└── workflow-2026-02-14.json (skill-composer)
urgent — Immediate Discord DMConditions:
Delivery:
TOOLS.md)Example:
🚨 Urgent: Browser disconnected
Port 18800 not responding. Auto-recovery attempted but failed.
Manual check needed: openclaw browser start
important — Include in next heartbeatConditions:
Delivery:
Example:
📢 3 Updates
📩 2 Instagram DMs (iam.dawn.kim, partner_xyz)
📈 Trend: "AI agent" surging (+150%)
🔄 Git: 12 commits waiting for push
info — Include in daily-report onlyConditions:
Delivery:
Example:
📊 Daily Report (2026-02-14)
✅ 3 workflows completed
📊 Tokens: 45,230 / 100,000 (45%)
📝 Memory: 3.2 GB
🔧 Health check: OK
Never send notification more than once for same event.
{
"event_id": "health-check-2026-02-14-07:00",
"fingerprint": "sha256(source + type + key_data)",
"notified_at": "2026-02-14T07:05:00+09:00"
}
memory/notifications/
├── sent-2026-02-14.json
├── sent-2026-02-13.json
└── ...
sent-YYYY-MM-DD.json structure:
{
"date": "2026-02-14",
"notifications": [
{
"id": "health-check-2026-02-14-07:00",
"priority": "info",
"sent_at": "2026-02-14T07:05:00+09:00",
"channel": "discord_dm",
"source": "health-monitor"
}
]
}
TOOLS.mdActivate skill with these keywords:
"Anything new?"
→ Immediately summarize important+ notifications
"Set Instagram DMs to immediate notification"
→ Promote dm-check events to urgent
"Show today's notification history"
→ Read memory/notifications/sent-2026-02-14.json
// Scan events/ directory
const events = fs.readdirSync('events/')
.filter(f => f.endsWith('.json'))
.map(f => JSON.parse(fs.readFileSync(`events/${f}`)));
const urgent = events.filter(e => e.priority === 'urgent');
const important = events.filter(e => e.priority === 'important');
const info = events.filter(e => e.priority === 'info');
const sent = loadSentHistory(today);
const newEvents = events.filter(e =>
!sent.notifications.some(n => n.id === e.id)
);
// urgent → Immediate Discord DM
if (urgent.length > 0) {
await sendDiscordDM(urgent);
}
// important → Add to heartbeat queue
if (important.length > 0) {
await addToHeartbeatQueue(important);
}
// info → Add to daily-report queue
if (info.length > 0) {
await addToDailyReportQueue(info);
}
saveSentHistory(today, newlySentNotifications);
Guide each skill to include priority field when creating events:
{
"timestamp": "2026-02-14T07:58:00+09:00",
"skill": "health-monitor",
"priority": "urgent", // urgent | important | info
"message": "Browser disconnected",
"data": { ... }
}
---
> 🐧 Built by 무펭이 — Mupengism ecosystem skill
安装 Notification Hub 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/mupeng-notification-hub/ 目录(个人级,所有项目可用),或 .claude/skills/mupeng-notification-hub/(项目级)。重启 AI 客户端后,用 /mupeng-notification-hub 主动调用,或让 AI 根据上下文自动发现并使用。
Notification Hub 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Notification Hub 可免费安装使用。请查阅仓库了解许可证信息。
Unified notification hub collecting all skill alerts and delivering by priority
Notification Hub 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。