Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

temp-notification-reader临时通知阅读器

Agent Skill

temp-notification-reader 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,966

周安装

120

GitHub Stars

公开资料未说明

下载量

931
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:temp-notification-reader(临时通知阅读器)
来源仓库:https://github.com/gift-is-coding/temp-notification-reader
安装命令:
openclaw skills install temp-notification-reader
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install temp-notification-reader

简介

读取 macOS 通知中心,导出到 memory/computer_io/notification/ 目录。让 OpenClaw 了解你的工作动态。

SKILL.md

name
macos-notification-reader
description
读取 macOS 通知中心,导出到 memory/computer_io/notification/ 目录。让 OpenClaw 了解你的工作动态。

macOS Notification Reader

让 OpenClaw 读取你的 macOS 通知,自动生成每日工作摘要
Read your macOS notifications and generate daily work summaries for OpenClaw

这是一个为 OpenClaw 打造的技能(Skill),可以读取 macOS 通知中心的内容,帮助 AI 助手更好地了解你的工作动态。


🎯 这是什么? / What is this?

这个工具会把你的 macOS 通知导出到 OpenClaw 的 memory 目录,让 OpenClaw 能够:

  • 📬 知道谁在找你(Teams、Outlook、WeChat...)
  • 📅 了解你的日程提醒
  • ✅ 提取待办事项(会议、审批、deadline...)
  • 🧠 记住你最近在忙什么

📁 输出文件结构 / Output File Structure

memory/YYYY-MM-DD/
└── computer_io/
    └── notification/
        ├── YYYYMMDD-HHMMSS.md          # 原始通知导出
        └── work-summary-YYYYMMDD-HHMMSS.md  # 工作摘要(推荐)

🚀 安装 / Installation

前置要求

  • macOS 系统
  • Python 3.8+ (python3 --version 检查)
  • OpenClaw 已安装并运行

步骤 1:放入 OpenClaw Skills 目录

# 克隆项目
git clone https://github.com/gift-is-coding/macos-notification-reader.git

# 复制到 OpenClaw skills 目录
cp -r macos-notification-reader ~/.openclaw/workspace/skills/

# 给脚本执行权限
chmod +x ~/.openclaw/workspace/skills/macos-notification-reader/scripts/*.sh

步骤 2:首次运行授权

~/.openclaw/workspace/skills/macos-notification-reader/scripts/export-notification.sh

首次运行时,macOS 会弹窗请求「通知访问权限」,点击允许


⚙️ 配置定时任务 / Configure Cron Job

方法一:通过 OpenClaw 配置(推荐)

编辑 ~/.openclaw/cron/jobs.json,添加:

{
  "name": "Notification Reader",
  "schedule": "*/30 * * * *",
  "command": "~/.openclaw/workspace/skills/macos-notification-reader/scripts/export-notification.sh",
  "timezone": "Asia/Shanghai"
}

这会让 OpenClaw 每 30 分钟自动抓取一次通知。

方法二:手动添加 crontab

crontab -e

添加:

*/30 * * * * ~/.openclaw/workspace/skills/macos-notification-reader/scripts/export-notification.sh >> ~/.openclaw/logs/notification.log 2>&1

💼 使用方式 / Usage

导出所有通知

~/.openclaw/workspace/skills/macos-notification-reader/scripts/export-notification.sh

工作摘要模式(推荐)

只提取工作相关通知(Teams/Outlook/WeChat):

~/.openclaw/workspace/skills/macos-notification-reader/scripts/work-summary.sh

自定义时间范围

# 只看过去 1 小时的通知
NOTIF_LOOKBACK_MINUTES=60 ~/.openclaw/workspace/skills/macos-notification-reader/scripts/export-notification.sh

# 工作摘要只看过去 2 小时
WORK_LOOKBACK_MINUTES=120 ~/.openclaw/workspace/skills/macos-notification-reader/scripts/work-summary.sh

🔐 隐私 / Privacy

  • ✅ 数据保存在本地(OpenClaw memory 目录),不上传任何服务器
  • ✅ 只读取通知标题和内容,不读取附件
  • ✅ 支持一键清理:rm -rf ~/.openclaw/workspace/memory/*/computer_io/notification/

🛠️ 故障排查 / Troubleshooting

显示 0 条通知?

  1. 检查权限是否授权:
   # 打开系统设置 / System Settings
   open "x-apple.systempreferences:com.apple.preference.security?Privacy_Notifications"
  1. 快速调试:
   python3 ~/.openclaw/workspace/skills/macos-notification-reader/scripts/read_notifications.py --minutes 5 --output /tmp/debug.txt
   cat /tmp/debug.txt

权限被拒绝?

chmod +x ~/.openclaw/workspace/skills/macos-notification-reader/scripts/*.sh

📞 支持 / Support

  • 问题反馈:https://github.com/gift-is-coding/macos-notification-reader/issues
  • 了解更多 OpenClaw:https://docs.openclaw.ai

Made with ❤️ for OpenClaw

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.96%
按下载量换算735

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills