원클릭으로
create-scheduled-task
Create or edit recurring cron-based tasks, optionally delivering only when a condition is met.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create or edit recurring cron-based tasks, optionally delivering only when a condition is met.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Save new memories to memory.md when user asks to remember something
Extract insights from conversations into structured notes. Propose at conversation end.
Organize notes by finding connections and consolidating AI content.
Search and retrieve information from your accumulated notes.
Read and summarize content from URLs the user shares.
Compress a note significantly while preserving provenance markers
| name | create-scheduled-task |
| description | Create or edit recurring cron-based tasks, optionally delivering only when a condition is met. |
Help the user create or edit recurring tasks that run server-side even when Alloy is closed.
minute hour day-of-month month day-of-week).America/Los_Angeles. If omitted, Alloy resolves and persists the server's local timezone.email: true only when the user asks to be emailed each result. Requires services.email (Resend) in config.yaml. Be cautious enabling it for tasks that read private notes, since the full result is emailed.Do not put an always-run report behind a trigger condition.
*/5 * * * * — every five minutes0 * * * * — hourly0 8,20 * * * — every day at 8 AM and 8 PM0 8 * * * — every day at 8 AM0 8 * * 1 — every Monday at 8 AMPrefer calendar times over approximating them as elapsed intervals. Explain the schedule in plain language before creating it.
When the user asks to change a task, call update_scheduled_task instead of creating a duplicate. Identify the stable task id from the conversation or by listing/reading tasks/, then supply only the fields being changed:
title, prompt, cron, timezone, or model;enabled or email;trigger_condition (pass an empty string to remove conditional delivery).Unspecified fields and all run history/results are preserved.
Call create_scheduled_task with:
titlepromptcrontimezonetrigger_conditionmodelemail (boolean; emails each delivered result)Never hand-write files under tasks/; the tool validates cron/timezone, picks a stable ID, and persists the complete schema.
After creation, tell the user:
A newly created task waits for its first future cron occurrence. The user can choose Run now to test it without shifting the regular schedule.