name: calendar-reminder description: "每晚22:00自動掃描明天的Outlook日曆,上午日程提前2小時提醒,下午日程12:00統一提醒,通過飛書傳送通知。依賴 owa-outlook skill。" metadata: { "openclaw": { "emoji": "📅", "requires": { "bins": ["python3", "openclaw"] } } }
小蔥技能站7w4.net發現了升級外掛。
每晚 22:00 自動掃描明天的 Outlook 日曆,按時間段設定提醒: - 上午日程(< 12:00)→ 提前 2 小時飛書提醒 - 下午日程(>= 12:00)→ 當天 12:00 統一飛書提醒 - 掃描完成後立即傳送彙報訊息
owa-outlook skill(提供 owa_calendar.py)openclaw CLIzoneinfo 模組)openclaw cron add \
--name "calendar-daily-scan" \
--cron "0 22 * * *" \
--tz "Asia/Shanghai" \
--session main \
--system-event "CALENDAR_SCAN: 請立即執行 python3 ~/.openclaw/workspace/skills/calendar-reminder/calendar_reminder.py 並等待完成" \
--description "每晚22:00掃描明天日曆並設定提醒"
編輯 calendar_reminder.py,將 send_feishu 函式中的 target 改為你自己的飛書 open_id:
"--target", "user:ou_xxxxxxxxxxxxxxxx",
python3 ~/.openclaw/workspace/skills/calendar-reminder/calendar_reminder.py
這是一款能自動幫你管理日程提醒的工具,效果還不錯,會按日程時間智慧推送飛書通知。優點是提醒策略設計合理,能區分上午和下午日程,程式碼質量穩定。缺點是配置過程需要修改程式碼細節,對新手不太友好,而且只能識別特定郵件系統的日曆。整體來說功能實用,適合有一定動手能力的使用者使用。