reminder-scheduler

统一提醒调度:单次提醒与周期提醒计划的创建、查询、取消和到期扫描。

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "reminder-scheduler" with this command: npx skills add cklxx/elephant.ai/cklxx-elephant-ai-reminder-scheduler

reminder-scheduler

一个 skill 同时覆盖两类能力:

  • 单次提醒:延迟触发(如 30 分钟后提醒)
  • 周期计划:维护长期提醒计划(如每周复盘)

调用

# 单次提醒:设置、查看、取消
python3 skills/reminder-scheduler/run.py set_once --delay 30m --task "喝水提醒"
python3 skills/reminder-scheduler/run.py list_once
python3 skills/reminder-scheduler/run.py cancel_once --id timer-12345

# 周期计划:创建/更新、查看、删除、到期扫描、执行后推进
python3 skills/reminder-scheduler/run.py upsert_plan --name weekly-retro --schedule "0 18 * * 5" --task "发送复盘提醒" --next-run-at 2026-03-06T10:00:00Z
python3 skills/reminder-scheduler/run.py list_plans
python3 skills/reminder-scheduler/run.py due_plans --now 2026-03-06T10:00:00Z
python3 skills/reminder-scheduler/run.py delete_plan --name weekly-retro
python3 skills/reminder-scheduler/run.py touch_plan --name weekly-retro --next-run-at 2026-03-13T10:00:00Z

参数

set_once

参数类型必填说明
delaystring延迟时间(30s / 5m / 2h
taskstring提醒内容

cancel_once

参数类型必填说明
idstring单次提醒 ID

upsert_plan

参数类型必填说明
namestring计划名(唯一键)
schedulestring周期表达式(cron 字符串)
taskstring提醒内容
next_run_atstring下一次执行时间(ISO8601)
channelstring渠道,默认 lark
enabledbool是否启用,默认 true
metadataobject扩展元数据

list_plans

无参数,返回当前所有周期计划。

delete_plan

参数类型必填说明
namestring计划名;与 id 至少提供一个
idstring计划 ID;与 name 至少提供一个

当同时提供 nameid 时,必须命中同一条记录才会删除。

due_plans

参数类型必填说明
nowstring当前时间(ISO8601);未提供时取系统 UTC 时间

touch_plan

参数类型必填说明
namestring计划名;与 id 至少提供一个
idstring计划 ID;与 name 至少提供一个
next_run_atstring更新下一次执行时间(ISO8601)

当同时提供 nameid 时,必须命中同一条记录才会更新。

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

desktop-automation

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

autonomous-scheduler

No summary provided by upstream source.

Repository SourceNeeds Review
General

soul-self-evolution

No summary provided by upstream source.

Repository SourceNeeds Review
General

social-trends

No summary provided by upstream source.

Repository SourceNeeds Review