ソース情報
- リポジトリ
- songsid/AgEnD
- ソースの最終更新活動
- 2026年8月11日 01:39
- 検出された SKILL.md の言語
- 英語
- スター
- 6
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/songsid/AgEnD --skill schedulingコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.