QQ每分钟时间提醒

v1.0.0

创建每分钟发送当前时间的QQ定时提醒任务。用于:(1) 用户要求每分钟报时 (2) 用户想要定期收到时间提醒 (3) 测试定时任务功能

0· 79·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description match the runtime instructions: the SKILL.md describes creating a cron job that delivers per-minute time reminders to a QQ user via the platform's 'openclaw cron' CLI and requires only a user openid — this is coherent with the stated purpose.
Instruction Scope
Instructions are scoped to extracting the user's openid and running 'openclaw cron add' to schedule deliveries. One minor ambiguity: the example --message is a static string ('[直接输出] 当前时间:') — the SKILL.md does not show how the current time is injected into the delivered message at runtime. Otherwise the steps do not request unrelated files, env vars, or external endpoints.
Install Mechanism
Instruction-only skill with no install spec and no code files, so nothing is written to disk or downloaded — lowest-risk install profile.
Credentials
No environment variables, credentials, or config paths are requested. The only required runtime data is the target user's openid, which is appropriate for a messaging reminder skill.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request elevated or permanent platform privileges or attempt to modify other skills' configuration.
Assessment
This skill appears coherent and lightweight, but before installing: (1) ensure your OpenClaw instance and the 'qqbot' channel are correctly configured and authorized to send messages; (2) verify you have user consent to send per-minute messages (this frequency can be seen as spam or hit rate limits); (3) confirm how the cron message will embed the actual current time (the example shows only a static prefix); and (4) remember you must provide the user's openid when scheduling — the skill doesn't request any secrets or external credentials.

Like a lobster shell, security has layers — review code before you run it.

latestvk978dg6332asc4m5tc5yyh4wj184f7sd
79downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

QQ 每分钟时间提醒

创建定时任务,每分钟向QQ用户发送当前时间。

使用方式

用户说"每分钟提醒时间"、"每小时报时"等时,使用此Skill。

创建步骤

  1. 获取用户openid:从用户发送的消息中提取,或直接询问用户
  2. 执行cron命令
openclaw cron add \
  --name "每分钟时间提醒" \
  --cron "* * * * *" \
  --tz "Asia/Shanghai" \
  --session isolated \
  --wake now \
  --message "[直接输出] 当前时间:" \
  --deliver \
  --channel qqbot \
  --to "{用户openid}"
  1. 返回结果:告知用户任务ID和取消方法

取消任务

用户说"取消时间提醒"时:

openclaw cron rm <任务ID>

或先列出任务再删除:

openclaw cron list
openclaw cron rm <任务ID>

参数说明

参数说明
--cron "* * * * *"每分钟执行
--tz "Asia/Shanghai"使用上海时区
--session isolated隔离会话执行
--deliver启用消息投递
--channel qqbotQQ机器人渠道
--to用户openid

Comments

Loading comments...