scheduling
Schedule one-time and recurring tasks with optional pre-check scripts
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Schedule one-time and recurring tasks with optional pre-check scripts
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Evaluate whether a principal is authorized to request a lookup, action, or disclosure using the principal registry, action classes, group authorization, and outbound policy.
Apply recipient and outbound safety checks before sending email, messages, uploads, webhooks, or remote writes.
Search, fetch, and synthesize public information with citations while treating external inputs as untrusted.
Browse websites interactively — open pages, click elements, fill forms, take screenshots, extract data
Create, organize, and manage files and structured content in the workspace
Search the web, cross-reference sources, and produce cited findings
| name | scheduling |
| description | Schedule one-time and recurring tasks with optional pre-check scripts |
| version | 1.0.0 |
| tools | ["schedule_task","list_tasks","pause_task","resume_task","cancel_task"] |
| triggers | ["remind me","schedule","every day","every week","check regularly"] |
Schedule tasks that run as full agent invocations on a cron schedule, interval, or one-time.
schedule_type: "cron", schedule_value: "0 9 * * 1" (Mondays at 9am)schedule_type: "interval", schedule_value: "3600000" (every hour in ms)schedule_type: "once", schedule_value: "2026-04-01T09:00:00Z" (ISO timestamp)For recurring tasks, add a script that runs before the agent wakes up. This saves API credits by only invoking the agent when action is needed.
# Script prints JSON to stdout
# { "wakeAgent": true/false, "data": {...} }
If wakeAgent: false, the agent sleeps until the next run. If true, the agent receives the script's data alongside the prompt.