Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

reminder-oc-cron-based基于 oc cron 的提醒

Agent Skill

reminder-oc-cron-based 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,482

周安装

63

GitHub Stars

公开资料未说明

下载量

519
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:reminder-oc-cron-based(基于 oc cron 的提醒)
来源仓库:https://github.com/anghu666/reminder-oc-cron-based
安装命令:
openclaw skills install reminder-oc-cron-based
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install reminder-oc-cron-based

简介

reminder-oc-cron-based 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词快速定位候选结果时使用。

  • 管理 OpenClaw 基于 cron 的聊天提醒,支持创建与查询。
  • 通过 clawhub 安装,命令为 openclaw skills install reminder-oc-cron-based。
  • 建议确认权限范围、维护状态及是否触发联网操作。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
reminder-oc-cron-based
description
Create, inspect, and cancel OpenClaw cron-based chat reminders. Use when the user asks for a reminder at a specific time or after a delay, wants to list pending reminders, review reminders due soon or overdue, or cancel an unexecuted reminder job. Prefer the native cron tool workflow for maximum compatibility; use the bundled helper script only as an optional convenience layer. Do not use for calendar management, third-party reminder services, or recurring habits unless the user explicitly wants a recurring cron reminder.

OpenClaw Reminder

Use OpenClaw's native cron tool as the primary way to create and manage chat reminders. The bundled scripts/reminder_cron.py helper is optional and should be treated as a convenience layer, not the core contract of the skill.

Use this skill for

  • creating a one-time reminder
  • listing pending reminder jobs
  • reviewing reminders due soon
  • checking overdue reminder jobs that still exist
  • canceling an unexecuted reminder

Do not use this skill for

  • calendar event management
  • third-party reminder services
  • recurring habits unless the user explicitly wants a recurring cron reminder

Core workflow

  1. For a new reminder, create a one-shot cron job with schedule.kind="at", payload.kind="systemEvent", and reminder text that will still make sense when it fires later.
  2. Name reminder jobs with a stable reminder: prefix so they can be found and managed later.
  3. Set deleteAfterRun=true for ordinary one-time reminders.
  4. When the reminder must return to the same chat, include explicit delivery routing only when the active channel requires it.
  5. To inspect reminders, list cron jobs and filter reminder jobs by name and schedule.
  6. To cancel a reminder that has not fired yet, identify the correct reminder job first, then remove only that job.

Native cron tool examples

Create a one-time reminder:

{
  "name": "reminder:doctor-appointment",
  "schedule": {
    "kind": "at",
    "at": "2026-04-26T14:00:00+08:00"
  },
  "payload": {
    "kind": "systemEvent",
    "text": "Reminder: leave now for your appointment."
  },
  "delivery": {
    "mode": "announce"
  },
  "deleteAfterRun": true
}

Inspect reminders:

  • list cron jobs and filter jobs whose names start with reminder:
  • for due-soon views, compare schedule times against the requested window
  • for overdue views, show reminder jobs whose scheduled time has already passed but still exist

Cancel a reminder:

  • find the intended reminder: job first
  • remove only the confirmed target job

Optional helper script

Use scripts/reminder_cron.py only when a local CLI helper is actually useful in the current environment. This helper is primarily suited to environments where the OpenClaw CLI is available and the active reminder route is backed by a supported chat channel plugin with explicit delivery fields. Treat it as an environment-dependent convenience layer, not as a guaranteed cross-channel or cross-version contract; in other environments, it may require adjustment or may not work directly.

python3 scripts/reminder_cron.py create --title "Doctor appointment" --at "2026-04-26 14:00" --tz UTC --channel <channel> --to <target> --account <account>
python3 scripts/reminder_cron.py pending
python3 scripts/reminder_cron.py upcoming --days 3
python3 scripts/reminder_cron.py overdue
python3 scripts/reminder_cron.py delete --id <job_id>

Delivery guidance

  • Include enough context in the reminder text so it still makes sense when it fires later.
  • If the user gave no timezone, use the user's configured timezone when available; otherwise prefer a neutral default such as UTC.
  • Use delivery.mode="announce" when the reminder should post back to chat.
  • If the channel requires explicit routing, include the live target fields such as delivery.channel, delivery.to, and delivery.accountId.
  • Prefer native tool workflows over shell CLI assumptions when both are available.
  • Use reminder-style text with payload.kind="systemEvent" when the reminder should wake the main session with reminder text instead of launching an unrelated isolated task.

Notes

  • This skill manages only reminder jobs, preferably those whose names start with reminder:.
  • For short-lived personal reminders, keep titles concise and messages explicit.
  • When a cancellation request is ambiguous, list candidate reminder jobs and confirm which one to remove before deleting anything.
  • Treat the helper script as optional packaging convenience; the portable contract of this skill is the native cron workflow.
  • The helper may rely on CLI availability, channel-specific delivery rules, and environment-specific routing behavior, so prefer the native workflow whenever portability matters.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.08%
按下载量换算400

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install reminder-oc-cron-based 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills