一键导入
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.