一键导入
scheduler-maintain
Manage the current user's scheduler tasks using the workspace snapshot and scheduler action blocks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage the current user's scheduler tasks using the workspace snapshot and scheduler action blocks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when an auditor asks DoWhiz to process audit PBC requests, audit evidence intake, workpapers, financial statement support, tie-outs, or audit client follow-up drafts from emails, attachments, spreadsheets, PDFs, Word files, Google Drive, Lark, or similar collaboration surfaces.
Technical Program Manager skill for managing product tasks, team workload, and competitive research. Use tpm_cli for Notion task board operations and web search for market intelligence.
Produce a one-page U.S. equity signal monitor for a single stock or ETF. Front-load exactly one monitor badge (`Review Now`, `Watch Closely`, `No Material Change`, or `Insufficient Evidence`), explain why the signal matters now, what changed or did not change in the thesis, the main risk to the signal, and what would change the view next. Use whenever the user asks whether a stock is a buy or sell, wants a single-name investment memo, asks for deep research or a high-level investment view on one company, wants a thesis review versus peers or sector expectations, asks what changed since a prior note, wants an earnings setup, or says "should I act" about one ticker. Keep it as public-market analysis rather than personalized portfolio advice. Do not use for portfolio optimization, multi-asset allocation, crypto, FX, fixed-income, or macro strategy notes.
Produce a one-page U.S. equity signal monitor for a single stock or ETF. Front-load exactly one monitor badge (`Review Now`, `Watch Closely`, `No Material Change`, or `Insufficient Evidence`), explain why the signal matters now, what changed or did not change in the thesis, the main risk to the signal, and what would change the view next. Use whenever the user asks whether a stock is a buy or sell, wants a single-name investment memo, asks for deep research or a high-level investment view on one company, wants a thesis review versus peers or sector expectations, asks what changed since a prior note, wants an earnings setup, or says "should I act" about one ticker. Keep it as public-market analysis rather than personalized portfolio advice. Do not use for portfolio optimization, multi-asset allocation, crypto, FX, fixed-income, or macro strategy notes.
Search for used cars from reputable large dealership sources and present a curated catalog. Use when the user asks about buying a used car, finding a car within a budget, searching for vehicles in their area, or any variant like "find me a car under $X", "used cars near me", "looking for a reliable sedan", or "what's available at CarMax". Trigger even when the user doesn't explicitly say "used car search" but is clearly shopping for a vehicle purchase.
Research and catalog hotel options for multi-day trips. Produces a Word document with a table of 2-3 hotel candidates per day, including pricing and amenities. Uses web search for hotel research and the 'doc' skill for DOCX output.
| name | scheduler_maintain |
| description | Manage the current user's scheduler tasks using the workspace snapshot and scheduler action blocks. |
| allowed-tools | None |
scheduler_snapshot.json in workspace root.window_start and window_end (UTC, 7-day window), plus counts outside the window.upcoming tasks (id, kind, next_run/run_at, status, label).There are two scheduling outputs. Use the correct block for the desired action:
Use the scheduled tasks block (this is the only way to schedule future send_email tasks):
SCHEDULED_TASKS_JSON_BEGIN
[
{"type":"send_email","delay_seconds":0,"subject":"Reminder","html_path":"reminder_email_draft.html","attachments_dir":"reminder_email_attachments","to":["you@example.com"],"cc":[],"bcc":[]}
]
SCHEDULED_TASKS_JSON_END
Use the scheduler actions block:
SCHEDULER_ACTIONS_JSON_BEGIN
[
{ "action": "cancel", "task_ids": ["..."] },
{ "action": "reschedule", "task_id": "...", "schedule": { "type": "one_shot", "run_at": "2026-02-07T12:00:00Z" } },
{ "action": "reschedule", "task_id": "...", "schedule": { "type": "cron", "expression": "0 0 9 * * *" } },
{ "action": "create_run_task", "schedule": { "type": "one_shot", "run_at": "2026-02-07T12:00:00Z" }, "model_name": "gpt-5.4", "codex_disabled": false, "reply_to": ["user@example.com"] }
]
SCHEDULER_ACTIONS_JSON_END
sec min hour day month weekday.MON-FRI for recurring weekday schedules. Do not use numeric
weekday ranges for Monday-Friday here; in this scheduler parser, 1-5 is ambiguous and can
behave like Sunday-Thursday.create_run_task always targets the current workspace.