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

openclaw-reminderOpenClaw reminder 文档

Agent Skill

openclaw-reminder 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

60,466

周安装

2,470

GitHub Stars

公开资料未说明

下载量

19,365
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-reminder

简介

OpenClaw reminder 使用 cron 创建一次性提醒任务。

  • 适合在 OpenClaw 中以自然语言指定时间和内容时启用。
  • 结果通过 Discord 返回,支持定时通知。
  • 通过 clawhub 安装,结合来源仓库和 README 可进一步了解具体用法。
  • 安装前需确认权限范围、维护状态,以及是否涉及联网、命令执行或文件读写。

SKILL.md

name
reminder
description
Create one-time reminder tasks using OpenClaw cron. User specifies reminder time and task content in natural language via Discord, and the task result will be sent back through Discord.
metadata

Reminder Skill

Create one-time reminder tasks using OpenClaw cron.

Usage

When user says "remind me to XXX in 30 seconds" or "remind me at 3pm", I create a cron job that executes the task and returns the result when the time comes.

Parameter Configuration

Fixed Parameters

  • --session main - Use main session to inherit Discord context
  • --system-event - System event payload for main session
  • --channel discord - Discord channel
  • --announce - Send result directly to Discord
  • --delete-after-run - Delete task after execution

Dynamic Parameters (from current session context)

Use session_status tool to get current session's deliveryContext:

  • --agent - Get from deliveryContext.accountId (e.g., machu)
  • --to - Get from deliveryContext.to (e.g., channel:1476104553148452958)

How to get:

# Get current session info
session_status
# Output contains deliveryContext:
# {
#   "channel": "discord",
#   "to": "channel:1476104553148452958",
#   "accountId": "machu"
# }

Time Parsing

Parse user input time, support:

  • Relative time: 30 seconds, 1 minute, 30 minutes, 2 hours, 1 day
  • Absolute time: 3pm, 9am today, 12pm tomorrow

Convert to ISO 8601 format for cron.

Usage Example

User says "remind me to check weather in 30 seconds":

# 1. Get current session's deliveryContext
session_status
# Assume output:
# {
#   "deliveryContext": {
#     "channel": "discord",
#     "to": "channel:1476104553148452958",
#     "accountId": "machu"
#   }
# }

# 2. Calculate time 30 seconds later
date -u -d "+30 seconds" +"%Y-%m-%dT%H:%M:%SZ"
# Result: 2026-02-26T13:30:00Z

# 3. Create cron job (using main session + system-event)
openclaw cron add \
  --name "reminder-weather" \
  --at "2026-02-26T13:30:00Z" \
  --session main \
  --system-event "Check Beijing weather" \
  --agent machu \
  --announce \
  --channel discord \
  --to "channel:1476104553148452958" \
  --delete-after-run

Task Content (SECURITY)

User-specified task content must be sanitized before passing to cron:

  1. Validation Method: REJECT dangerous patterns (not escape)

The script rejects any input containing: - Command substitution: $(), backticks ` ` - Shell metacharacters: ;, |, &, >, < - Double quotes: " (breaks CLI quoting) - Newlines: \ (can inject multiple commands) - Dangerous command prefixes: sudo, rm, wget, curl, bash`, etc.

  1. Sanitization Script:

Use scripts/sanitize-message.sh to validate input:

   ./scripts/sanitize-message.sh "user's task content"
   # Exit code 0 = safe, non-zero = rejected
  1. If rejected: Tell user the task contains invalid characters and ask them to rephrase without: $() ` ; | & > < " or dangerous commands.

Confirmation Reply

After creating the task, reply to user to confirm:

  • "OK, will remind you in X minutes/to do XXX"
  • Don't tell user the specific cron command

Notes

  1. Time must be in the future, not the past
  2. Task content should be concise and clear
  3. If time exceeds 48 hours, suggest using calendar
  4. Always use --session main + --system-event for reliable Discord delivery
  5. Validate task content with sanitize-message.sh before creating job

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.75%
按下载量换算15,637

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills