ワンクリックで
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 職業分類に基づく
Diagnose a running AionUi installation: inspect stuck or errored conversations, read provider health, scheduled task state, MCP server health, team member state, backend health, and aioncore logs. Use when the user reports AionUi is misbehaving, a conversation is stuck, an LLM/provider call is failing, a scheduled task did not run, an MCP server has no tools, a team member is hung, or they ask to troubleshoot AionUi.
Configure AionUi itself through the bundled aioncore config CLI: create and edit assistants, update assistant rules, inspect and import skills, manage MCP servers, configure model providers, update settings, manage agents, configure scheduled tasks, and manage app configuration from an agent conversation. Use when the user wants you to set up or modify an AionUi assistant, attach skills, change an assistant's system prompt, add MCP or model provider configuration, schedule recurring work, or otherwise configure their AionUi installation, including when the user needs to know whether assistant changes affect the current conversation or only new conversations.
Expose the user's local AionUi WebUI to the public internet with a near-zero-effort flow. Detects whether the WebUI is running, guides the user to switch it on if needed (the only manual step), self-installs cloudflared cross-platform, opens a Cloudflare quick tunnel, verifies the public URL actually works, then explains the limitations honestly (temporary/random URL, must stay running, password is the only protection, traffic transits Cloudflare). Use whenever the user wants to reach their AionUi from outside the LAN, over the internet, or share a public link. Distinct from aionui-webui-setup (which covers manual LAN / Tailscale / server config through the settings UI): this skill produces a one-click public link via an automatic tunnel.
Use this skill when the user wants a .pptx with smooth cross-slide animation — PowerPoint Morph transitions, Keynote-style continuous motion, shapes that grow / move / rotate as the slide advances. Trigger on: 'morph', 'morph transition', 'smooth transition', 'continuous animation across slides', 'Keynote-style transition', 'animated slide sequence', 'shape continuity across slides'. Output is a single .pptx. This skill is a scene layer on top of officecli-pptx — inherits every pptx v2 rule (visual floor, grid, palettes, connector canon, Delivery Gate 1–5a). DO NOT invoke for a generic deck, pitch deck, or board review without cross-slide motion — route those to officecli-pptx base or officecli-pitch-deck.
Use this skill to build academic-style .docx output: journal / conference / thesis chapters carrying formal citation style (APA, Chicago, IEEE, MLA), numbered equations, figure & table cross-references, footnotes/endnotes, bibliography, or multi-column journal layout. Trigger on: 'research paper', 'journal paper', 'conference paper', 'manuscript', 'thesis', 'APA', 'MLA', 'Chicago', 'IEEE two-column', 'bibliography', 'hanging indent', 'citation style', 'abstract + keywords', 'equation numbering', 'cross-reference', paper with footnotes/endnotes. Output is a single .docx.
Use this skill to build a multi-element Excel dashboard — Dashboard sheet on open, multiple formula-driven KPI cards, multiple charts, sparklines, and conditional formatting — from CSV or tabular input. Trigger on: 'dashboard', 'KPI dashboard', 'analytics dashboard', 'executive dashboard', 'metrics dashboard', 'CSV to dashboard', 'data visualization'. Output is a single .xlsx. Scene-layer on officecli-xlsx: inherits every xlsx hard rule. DO NOT invoke for: a single budget tracker / one-sheet CSV-with-formatting (use xlsx), a 3-statement / DCF / LBO financial model (use financial-model), a weekly report with ≤ 1 chart and < 10 rows (use xlsx).
| name | cron |
| description | Scheduled task management - create, query, update scheduled tasks to automatically execute operations at specified times. |
Manage scheduled tasks for the current conversation with the bundled agent-facing config CLI.
AIONUI_... environment variable."$AIONUI_HELPER_BIN" config cron current ....job_id in the update JSON payload, not in a command flag.cron_...."$AIONUI_HELPER_BIN" config cron current list.data array is empty, create the task with "$AIONUI_HELPER_BIN" config cron current create <<'JSON'."$AIONUI_HELPER_BIN" config cron current update <<'JSON'.Create payload:
name: Short descriptive name.schedule: Standard 5-field cron expression.schedule_description: Human-readable schedule.message: Complete, self-contained instruction sent to the AI when the task runs.Update payload uses the same fields and also requires:
job_id: The id from the existing task returned by the list command.The message must tell the AI exactly what to do when the task fires. It should
not merely restate the user's scheduling request.
| User says | Bad message | Good message |
|---|---|---|
| "Send me hello every day at 10am" | Send me hello | Reply with exactly: Hello! |
| "Remind me to drink water daily" | Remind me to drink water | Reply with a friendly reminder to drink water. |
| "Summarize AI news every Monday" | Summarize AI news | Search for the latest AI news from this week and produce a concise bullet-point summary. |
Examples use English sample text. For real tasks, write the task name, schedule description, and message in the user's language.
Query:
"$AIONUI_HELPER_BIN" config cron current list
Create:
"$AIONUI_HELPER_BIN" config cron current create <<'JSON'
{
"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."
}
JSON
Update:
"$AIONUI_HELPER_BIN" config cron current update <<'JSON'
{
"job_id": "cron_123",
"name": "Daily Summary",
"schedule": "0 18 * * MON-FRI",
"schedule_description": "Weekdays at 6:00 PM",
"message": "Review today's conversation context and produce a concise end-of-day summary."
}
JSON
Multiline message example:
{
"name": "Daily Summary",
"schedule": "0 9 * * *",
"schedule_description": "Every day at 9:00 AM",
"message": "First paragraph.\nSecond paragraph.\nThird paragraph."
}
Format: minute hour day-of-month month day-of-week.
Example: 0 9 * * MON-FRI means weekdays at 9:00 AM.
Use only standard cron fields and ranges supported by the backend parser. Do
not use Quartz-style extensions such as L, L-N, W, LW, #, or ?.