ワンクリックで
cron
Scheduled task management - create, query, update scheduled tasks to automatically execute operations at specified times.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Scheduled task management - create, query, update scheduled tasks to automatically execute operations at specified times.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when tasks involve reading, creating, or reviewing PDF files where rendering and layout matter; prefer visual checks by rendering pages and use Python tools such as reportlab, pdfplumber, and pypdf for generation and extraction.
Use when extracting content from PDFs, scanned documents, Office files, images, or web pages into Markdown, HTML, LaTeX, DOCX, or JSON, especially when OCR, tables, formulas, or batch document conversion are required.
| name | cron |
| description | Scheduled task management - create, query, update scheduled tasks to automatically execute operations at specified times. |
Use this skill when the user asks to create, list, or update a scheduled task.
[CRON_CREATE] must end with [/CRON_CREATE], and [CRON_UPDATE] must end with [/CRON_UPDATE].This is a two-step workflow. Each step is one message turn.
Step 1: Query
Output [CRON_LIST] and nothing else, then wait for the system response.
Step 2: Act
[CRON_CREATE] in this message.[CRON_UPDATE: <job-id>] to modify it in place.Output this format directly:
[CRON_CREATE] name: Task name schedule: Cron expression schedule_description: Human-readable description message: Message content [/CRON_CREATE]
Required fields:
name: short descriptive name.schedule: valid cron expression.schedule_description: human-readable schedule.message: complete self-contained instruction sent to the AI when the task fires.The message must tell the AI exactly what to do. Do not restate the user's scheduling request.
Example:
[CRON_CREATE] name: Weekly Meeting Reminder schedule: 0 9 * * MON schedule_description: Every Monday at 9:00 AM message: Reply with a short weekly meeting reminder that includes the current date and time. [/CRON_CREATE]
Use this to modify an existing task in place:
[CRON_UPDATE: ] name: Updated task name schedule: New cron expression schedule_description: Human-readable description message: Updated message content [/CRON_UPDATE]
Replace <job-id> with the real job ID from [CRON_LIST]. All four fields are required.
Output [CRON_LIST] directly.
Format: minute hour day-of-month month day-of-week.
Example: 0 9 * * MON-FRI means weekdays at 9:00 AM.