Cron
Local-first recurring schedule engine for reminders, repeated tasks, and time-based execution plans. Use whenever the user mentions recurring timing, repetit...
ProjectSnowWork
@projectsnowwork
Install
$ openclaw skills install @projectsnowwork/cronCron
Turn recurring intentions into structured local schedules.
Core Philosophy
- Repetition should be captured once, then trusted.
- A schedule is not just a reminder — it is an execution contract over time.
- The system should make recurrence visible, editable, and pausable.
- Users should always know what runs next.
Runtime Requirements
- Python 3 must be available as
python3 - No external packages required
Storage
All data is stored locally only under:
~/.openclaw/workspace/memory/cron/jobs.json~/.openclaw/workspace/memory/cron/runs.json~/.openclaw/workspace/memory/cron/stats.json
No external sync. No cloud storage. No third-party cron service.
Job Status
active: schedule is livepaused: temporarily disabledarchived: no longer active, kept for history
Schedule Types
dailyweeklymonthlyinterval
Key Workflows
- Capture recurring job:
add_job.py - See what runs next:
next_run.py - Pause or resume:
pause_job.py,resume_job.py - Inspect one job:
show_job.py - Review all jobs:
list_jobs.py
Related skills
Cron & Scheduling
@gitgoodordietryingSchedule and manage recurring tasks with cron and systemd timers. Use when setting up cron jobs, writing systemd timer units, handling timezone-aware scheduling, monitoring failed jobs, implementing retry patterns, or debugging why a scheduled task didn't run.
Cron Helper
@imaflytokSchedule and manage recurring tasks for your agent. Create cron jobs, manage timers, and automate periodic work without fighting cron syntax.
Reminder
@reed1898Capture natural-language events, save to your workspace, and schedule Telegram reminders with automatic cron notifications and upcoming event queries.
OpenClaw Auto‑Updater (Safe + Scheduled + Summary)
@dasweltallSchedule automatic OpenClaw and skill updates with reliable cron templates, timezone-safe scheduling, and clear summary outputs. Use for hands-off maintenance, scheduled upgrades, and concise update reports.
cargo
@cargo-aiRouter and overview for the Cargo CLI agent skills. Explains the fifteen skills (this router + one onboarding skill cargo-quickstart + one outcome skill cargo-gtm + twelve capability skills, including cargo-cdk for declarative workspace-as-code and cargo-diagnostics for run/batch/cost forensics), when to use the declarative CDK vs the imperative CLI, the UUID flow between them, async polling, end-to-end use cases (enrich one record, enrich and sync to CRM, AI lead scoring, custom workflow, error monitoring, fresh-workspace bootstrap, segment export, GTM context authoring), and common gotchas (`conjonction` spelling, run vs batch, model-uuid vs segment-uuid). Load first whenever working with the Cargo CLI, when unsure which sub-skill applies, when stitching multiple sub-skills together, when bootstrapping a workspace, or when the user asks about Cargo skills in general.
Cron Mastery
@i-mwMaster OpenClaw's timing systems. Use for scheduling reliable reminders, setting up periodic maintenance (janitor jobs), and understanding when to use Cron v...