소스 정보
- 저장소
- 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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.