automation-cron

automation-cron is a skill for Claude Code, Codex from Kevin-Liu-01/Agent-Machines. It costs 44 tokens per session (858 once invoked), scanned A, original, MIT.

A procedure for scheduling recurring agent tasks with cron. Cron is a system for running commands automatically at set times or intervals.

In plain words
What is it for?
Use it to create scheduled jobs, define prompts, name them, and preload skills such as a recurring feed or commit summary procedure.
Why use it?
It removes the need to start the same task manually every hour, day, week, or other chosen interval.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md; mentions AGENTS.md.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/machine/projects/dedalus-monorepo.

Good fit Use it to create scheduled jobs, define prompts, name them, and preload skills such as a recurring feed or commit summary procedure.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for automation-cron

README.md
[![agentmods](https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/automation-cron/github.svg)](https://agentmods.dev/skills/kevin-liu-01/agent-machines/automation-cron)
Your own site
<a href="https://agentmods.dev/skills/kevin-liu-01/agent-machines/automation-cron"><img src="https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/automation-cron/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for automation-cron

Your own site · 80×15
<a href="https://agentmods.dev/skills/kevin-liu-01/agent-machines/automation-cron"><img src="https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/automation-cron.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 858 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00044 $0.00858
Opus 5 $0.00022 $0.00429
Sonnet 5 $0.00009 $0.00172
Haiku 4.5 $0.00004 $0.00086

Measured 12d ago against content hash ae02e31405d9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

automation-cron scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

knowledge/skills/automation-cron/SKILL.md · 100 lines

How it starts

The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Automation via Cron

I can schedule recurring tasks via the cronjob tool. They run as fresh agent sessions on the gateway scheduler, with results delivered back to the originating chat or to configured platforms.

Schedule formats

Hermes accepts both natural language and crontab syntax:

"every 1h"
"every 30m"
"every 2h"
"every 1d at 09:00"
"daily at 04:00"
"every monday at 09:00"
"0 9 * * *"           # crontab -- daily at 09:00 UTC
"30 */4 * * *"        # crontab -- every 4 hours at :30

Creating a job

Three surfaces, same effect:

# CLI
agent-machines cron create "every 1h" "Summarize new feed items" --skill blogwatcher --name "Hourly feeds"

# In-chat slash command
/cron add "0 9 * * *" "Audit my open PRs and post a summary"

# In a tool call
cronjob(
    action="create",
    schedule="every 1d at 09:00",
    prompt="Summarize my last 24 hours of commits across all projects",
    name="Daily commit digest",
    skills=["git-workflow"],
)

Skill-backed jobs

A cron job can preload one or more skills before running its prompt. Skills are loaded in order; the prompt becomes the task instruction layered on top.

Use this when the job needs a recurring procedure (e.g. blogwatcher checks feeds, llm-wiki updates a knowledge base).

Workdir scoping

By default cron jobs run detached from any repo. Pass workdir to load AGENTS.md / CLAUDE.md and run terminal/file tools rooted in that directory:

cronjob(
    action="create",
    schedule="every 1d at 09:00",
    workdir="/home/machine/projects/dedalus-monorepo",
    prompt="Audit open PRs, summarize CI health, and post to #eng",
)

The path must be absolute and exist; relative paths are rejected.

Operations

cronjob action=list          # show all jobs
cronjob action=pause id=...  # pause a job
cronjob action=resume id=... # resume a job
cronjob action=run id=...    # trigger immediately
cronjob action=remove id=... # delete a job
cronjob action=update id=... # edit schedule, prompt, skills, or workdir

Read the full file on GitHub · 100 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 100 lines · 44 tokens per session scan A ae02e31405d9

Subscribe to this mod's changes

automation-cron is a skill published in the GitHub repository Kevin-Liu-01/Agent-Machines (29 stars, last pushed today), licensed MIT. It adds 44 tokens to every session and 858 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.