用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/songsid/AgEnD --skill scheduling命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | scheduling |
| description | Cron, one-shot, and silent schedules via the schedule MCP tools |
| roles | ["general","worker"] |
create_schedule — make a schedule (recurring or one-shot).list_schedules — list all (optionally filter by target instance).update_schedule — change cron/at/message/timezone/enabled of an existing one.delete_schedule — remove one.A schedule injects message into the target instance when it fires
(target defaults to the current instance).
1. Recurring (cron) — cron + optional timezone (IANA, default Asia/Taipei):
create_schedule({ cron: "0 9 * * *", message: "Daily standup summary", timezone: "Asia/Taipei" })
Cron is 5-field (min hour dom mon dow). 0 9 * * * = 09:00 daily in the given tz.
2. One-shot (at) — at = ISO-8601 datetime with offset; runs once then auto-deletes:
create_schedule({ at: "2026-07-26T14:00:00+08:00", message: "Ship the release", target: "dev1" })
Exactly one of cron / at is required (mutually exclusive).
3. Silent — add silent: true to any of the above. The message is pasted straight
into the target's tmux pane instead of posting to the channel — use for heartbeats /
background nudges the user shouldn't see:
create_schedule({ cron: "*/30 * * * *", message: "check CI and self-report if red", silent: true })
timezone is per-schedule; the fire time is fixed to that zone (DST-safe).label so list_schedules / delete_schedule are easy.at) needs no cleanup — it deletes itself after firing.基于 SOC 职业分类