holix-cron

holix-cron is a skill for Claude Code from javded-itres/Holix. It costs 25 tokens per session (1,296 once invoked), scanned A, original, MIT.

A scheduler for recurring agent tasks using Holix's built-in gateway. It runs tasks on a schedule for a selected profile, such as a daily report or weekly summary.

In plain words
What is it for?
Use it to create and inspect scheduled tasks, verify that the gateway is running, and review job definitions and execution logs.
Why use it?
It automates repeated agent work without requiring operating-system cron jobs or custom scripts that run continuously. The gateway provides the execution environment and run history.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it to create and inspect scheduled tasks, verify that the gateway is running, and review job definitions and execution logs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/javded-itres/holix/holix-cron
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add javded-itres/Holix --skill holix-cron
Clone the repo
git clone --depth 1 https://github.com/javded-itres/Holix

Made for: Claude Code.

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 holix-cron

README.md
[![agentmods](https://agentmods.dev/badge/skills/javded-itres/holix/holix-cron/github.svg)](https://agentmods.dev/skills/javded-itres/holix/holix-cron)
Your own site
<a href="https://agentmods.dev/skills/javded-itres/holix/holix-cron"><img src="https://agentmods.dev/badge/skills/javded-itres/holix/holix-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 holix-cron

Your own site · 80×15
<a href="https://agentmods.dev/skills/javded-itres/holix/holix-cron"><img src="https://agentmods.dev/badge/skills/javded-itres/holix/holix-cron.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,296 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 22
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium Rogue Agent · line 22
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
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.00025 $0.01296
Opus 5 $0.00013 $0.00648
Sonnet 5 $0.00005 $0.00259
Haiku 4.5 $0.00003 $0.00130

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

Security

Grade A, and why

holix-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 9d 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.

core/skills/bundled/holix-cron/SKILL.md · 135 lines

How it starts

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

When to use this skill

The user wants a recurring or scheduled task (daily report, hourly check, weekly backup summary, etc.).

Always use Holix built-in cron — jobs stored in the profile and executed by the gateway scheduler with the same agent stack as chat.

Do NOT

  • Do not create or edit system crontab, launchd plists, or systemd timers for Holix agent work.
  • Do not write standalone Python/bash “scheduler” scripts that loop with sleep unless the user explicitly needs OS-level scheduling outside Holix.
  • Do not suggest third-party job runners when holix gateway can run the task.

Prerequisites

  1. Gateway must be running (scheduler lives inside gateway):
    • holix gateway start (background) or holix gateway start -f (foreground)
    • holix gateway status — verify running
  2. Jobs are per profile (--profile / HOLIX_PROFILE).

Storage (read-only for debugging)

  • Jobs: ~/.holix/profiles/<profile>/data/cron/jobs.json
  • Run log: ~/.holix/profiles/<profile>/data/cron/runs.log

Prefer commands below; edit JSON only if the user insists.

How to create a job

Tell the user the slash command (TUI / Telegram) or run CLI yourself if you have shell access.

Slash (chat):

/cron add <schedule> :: <task description>

Examples:

  • /cron add every day at 9 :: Summarize yesterday's git activity
  • /cron add every 30 minutes :: Check disk space and alert if >90%
  • /cron add 0 9 * * 1-5 :: Morning standup prep from open issues
  • /cron add hourly :: Quick health check of gateway

CLI (terminal):

holix cron add "every day at 9 :: Summarize logs"
holix cron list
holix cron disable <job-id>
holix cron enable <job-id>
holix cron remove <job-id>

Schedule formats

  • Natural language (parsed automatically): every day at 9:00, every 30 minutes, hourly, daily, weekly, weekdays, every 2 hours
  • 5-field cron (minute hour day month weekday): 0 9 * * *, */15 * * * *

Read the full file on GitHub · 135 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. 9d ago First seen · 135 lines · 25 tokens per session scan A 2f69015315e1

Subscribe to this mod's changes

holix-cron is a skill published in the GitHub repository javded-itres/Holix (14 stars, last pushed yesterday), licensed MIT. It adds 25 tokens to every session and 1,296 once invoked, about $0.0001 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.