ワンクリックで
cron
Schedule reminders and recurring tasks. Actions: add, list, remove or set_context.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Schedule reminders and recurring tasks. Actions: add, list, remove or set_context.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Periodic wake-up service that checks HEARTBEAT.md for pending tasks and executes them automatically. Use this skill to write or update HEARTBEAT.md.
Private knowledge base for indexing multimodal files or folders into a knowledge graph, supporting multi-hop graph retrieval
Generate wiki docs + Mermaid diagrams for any codebase. Use when the user asks to document a codebase, generate architecture diagrams, or create a structured wiki for a repo.
Parse an image from a file path to obtain a description, enabling non-multimodal LLMs to have vision capabilities.
When the user needs to transcribe video (such as .mp4, .mkv, .avi) into text, use the python_repl tool to generate text.
Karpathy's LLM Wiki: build/query interlinked markdown KB.
| name | cron |
| description | Schedule reminders and recurring tasks. Actions: add, list, remove or set_context. |
from loguru import logger
from skills.builtin.core.cron.scripts import cron
if __name__ == '__main__':
name: str| None = "{placeholder}" # <- Optional short human-readable label for the job (e.g., 'weather-monitor', 'daily-standup'). Defaults to first 30 chars of message.
message: str | None = "{placeholder}" # <- Reminder message (for add)
every_seconds: int | None = int("{placeholder}") # <- Interval in seconds (for recurring tasks)
cron_expr: str | None = "{placeholder}" # <- Cron expression like '0 9 * * *'
tz: str | None = "{placeholder}" # <- IANA timezone (e.g. 'America/Vancouver')
at: str | None = "{placeholder}" # <- ISO datetime (e.g. '2026-02-12T10:30:00')
deliver: bool | None = bool("{placeholder}") #"Whether to deliver the execution result to the user channel (default false)"
res = cron.add_job(name, message, every_seconds, cron_expr, tz, at, deliver)
logger.info(res)
from loguru import logger
from skills.builtin.core.cron.scripts import cron
if __name__ == '__main__':
res = cron.list_jobs()
logger.info(res)
from loguru import logger
from skills.builtin.core.cron.scripts import cron
if __name__ == '__main__':
job_id: str | None = "{placeholder}" # <- Job ID (for remove)
res = cron.remove_job(job_id)
print(res)
from skills.builtin.core.cron.scripts import cron
if __name__ == '__main__':
channel: str = "{placeholder}" # <- Channel to send the execution result to, when chat_id is no empty, channel must be no empty (default None)
chat_id: str = "{placeholder}" # <- Chat to send the execution result to, when channel is no empty, chat_id must be no empty (default None)
res = cron.set_context(channel=channel, chat_id=chat_id)
print(res)