# Send Calendar Reminder 日历提醒 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "calendar-reminder",
    "name": "Calendar Reminder 日历提醒",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/ilove323/calendar-reminder",
    "canonicalUrl": "https://clawhub.ai/ilove323/calendar-reminder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/calendar-reminder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=calendar-reminder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "calendar_reminder.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "calendar-reminder",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T07:43:42.835Z",
      "expiresAt": "2026-05-06T07:43:42.835Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=calendar-reminder",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=calendar-reminder",
        "contentDisposition": "attachment; filename=\"calendar-reminder-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "calendar-reminder"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/calendar-reminder"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/calendar-reminder",
    "downloadUrl": "https://openagent3.xyz/downloads/calendar-reminder",
    "agentUrl": "https://openagent3.xyz/skills/calendar-reminder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/calendar-reminder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/calendar-reminder/agent.md"
  }
}
```
## Documentation

### 功能

每晚 22:00 自动扫描明天的 Outlook 日历，按时间段设置提醒：

上午日程（< 12:00）→ 提前 2 小时飞书提醒
下午日程（>= 12:00）→ 当天 12:00 统一飞书提醒
扫描完成后立即发送汇报消息

### 依赖

owa-outlook skill（提供 owa_calendar.py）
openclaw CLI
Python 3.9+（需要 zoneinfo 模块）

### 1. 注册每晚扫描 cron

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扫描明天日历并设置提醒"

### 2. 修改脚本中的飞书 open_id

编辑 calendar_reminder.py，将 send_feishu 函数中的 target 改为你自己的飞书 open_id：

"--target", "user:ou_xxxxxxxxxxxxxxxx",

### 手动运行

python3 ~/.openclaw/workspace/skills/calendar-reminder/calendar_reminder.py
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ilove323
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T07:43:42.835Z
- Expires at: 2026-05-06T07:43:42.835Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/calendar-reminder)
- [Send to Agent page](https://openagent3.xyz/skills/calendar-reminder/agent)
- [JSON manifest](https://openagent3.xyz/skills/calendar-reminder/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/calendar-reminder/agent.md)
- [Download page](https://openagent3.xyz/downloads/calendar-reminder)