用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/czl9707/build-your-own-openclaw --skill cron-ops命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | cron-ops |
| description | Create, list, and delete scheduled cron jobs |
Help users manage scheduled cron jobs in pickle-bot.
A cron is a scheduled task that runs at specified intervals. Crons are stored as CRON.md files at {{crons_path}}/<name>/CRON.md.
Standard cron format: minute hour day month weekday
Examples:
0 9 * * * - Every day at 9:00 AM*/30 * * * * - Every 30 minutes0 0 * * 0 - Every Sunday at midnightSet one_off: true for jobs that should run only once. After execution, the cron is automatically deleted.
Use this for:
one_off: trueUse bash to list directories:
ls {{crons_path}}
bash to remove:rm -rf {{crons_path}}/<cron-name>
Cron jobs run in the background with no direct output to the user. The agent executing the cron has no conversation context.
When the user asks to be notified (e.g., "tell me", "let me know", "remind me"):
post_message instruction in the promptWhen the user doesn't ask for notification:
post_message needed (e.g., background cleanup, data processing)---
name: Cron Name
description: Brief description of what this cron does
agent: pickle
schedule: "0 9 * * *"
one_off: false # Set to true for one-time jobs (optional, defaults to false)
---
Task description for the agent to execute.
With notification:
---
name: Daily Summary
description: Sends a daily summary of activity
agent: pickle
schedule: "0 9 * * *"
---
Check my inbox and use post_message to send me a summary.
One-off reminder:
---
name: Meeting Reminder
description: Reminder for tomorrow's meeting
agent: pickle
schedule: "30 14 21 3 *"
one_off: true
---
Use post_message to remind me about the team meeting in 15 minutes.