用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ModalityDance/PalmClaw --skill cron命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cron |
| description | Schedule reminders and recurring tasks. |
Use the cron tool to schedule reminders or recurring tasks.
Fixed reminder:
cron(action="add", message="Time to take a break!", every_seconds=1200)
Dynamic task:
cron(action="add", message="Check project status and report", every_seconds=600)
One-time task:
cron(action="add", message="Remind me about the meeting", at="<ISO datetime>")
Timezone-aware cron:
cron(action="add", message="Morning standup", cron_expr="0 9 * * 1-5", tz="America/Vancouver")
Inspect, update, and remove:
cron(action="list")
cron(action="get", job_id="abc123")
cron(action="update", job_id="abc123", every_seconds=1800)
cron(action="remove", job_id="abc123")
Use list to find a job and get to inspect its full schedule, payload, delivery target, and last execution state. update changes only supplied fields. A schedule change replaces the schedule as one unit, so provide exactly one of every_seconds, cron_expr (with optional tz), or at. Use an explicit JSON null to clear channel, to, or session_id.
Remove a job only when the user asks to cancel that scheduled work. Use enable_job when the user wants to pause or resume it without deleting the definition.