schedule

schedule is a skill for Claude Code, Codex from jmagly/aiwg. It costs 16 tokens per session (559 once invoked), scanned A, original, MIT.

A guide for routing recurring work to a scheduler supplied by the service provider, or to an external scheduler such as system cron, a systemd timer, or CI. It does not provide its own scheduling service.

In plain words
What is it for?
Use it to decide how to run recurring tasks, list or remove provider-managed schedules, or document a reviewed external trigger.
Why use it?
It prevents agents from inventing unsupported scheduler commands or creating scheduled jobs without permission. It also keeps credentials and sensitive prompts out of command arguments.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Good fit Use it to decide how to run recurring tasks, list or remove provider-managed schedules, or document a reviewed external trigger.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jmagly/aiwg/schedule
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 jmagly/aiwg --skill schedule
Clone the repo
git clone --depth 1 https://github.com/jmagly/aiwg

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 schedule

README.md
[![agentmods](https://agentmods.dev/badge/skills/jmagly/aiwg/schedule.svg)](https://agentmods.dev/skills/jmagly/aiwg/schedule)
Your own site
<a href="https://agentmods.dev/skills/jmagly/aiwg/schedule"><img src="https://agentmods.dev/badge/skills/jmagly/aiwg/schedule.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 559 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 pass 7 Sept 2026
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.00016 $0.00559
Opus 5 $0.00008 $0.00280
Sonnet 5 $0.00003 $0.00112
Haiku 4.5 $0.00002 $0.00056

Measured 3d ago against content hash 1f10e66bce6b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

schedule 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 3d 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.

agentic/code/addons/aiwg-utils/skills/schedule/SKILL.md · 74 lines

How it starts

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

Schedule

Route scheduling requests without inventing an AIWG scheduler backend.

Capability boundary

AIWG's production CLI does not expose aiwg schedule, aiwg daemon, or aiwg daemon schedule. Never recommend or execute those commands.

There are three distinct states:

  1. Provider native — use the provider's scheduling tools directly. In a Claude Code agent session these are CronCreate, CronList, and CronDelete.
  2. AIWG implemented — no production scheduler implementation currently exists. Do not label this state as emulated.
  3. External trigger — system cron, a systemd timer, or CI owns time and launches a reviewed, non-interactive provider command. AIWG may document the contract, but it does not own the clock.

Routing

  • When CronCreate/CronList/CronDelete are available, use them.
  • Otherwise, explain that scheduling is external and ask which host mechanism the operator controls.
  • Do not create a cron entry or CI workflow without explicit authorization.
  • Keep prompts and reviewed configuration in files; do not place credentials, session material, or sensitive prompt text in process arguments.

Provider-native operations

For Claude Code inside an agent session:

CronCreate({ name: "daily-sync", schedule: "0 9 * * *", prompt: "Run the reviewed daily sync" })
CronList()
CronDelete({ name: "daily-sync" })

Outside that tool surface, report:

No provider-native scheduler is available in this session.
Use an external scheduler (system cron, systemd timer, or CI) to launch a
reviewed provider command. AIWG does not provide a resident scheduler command.

Safety

  • Treat external scheduler configuration as an operator-owned deployment.
  • Use absolute, reviewed workspace and prompt paths.
  • Never embed tokens, cookies, browser profiles, or session data.
  • Prefer stdin for provider prompts and use the platform's approved secret store or file-backed reference mechanism.
  • Require an idempotency strategy and lock for mutation-capable jobs.

Read the full file on GitHub · 74 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. 3d ago First seen · 74 lines · 16 tokens per session scan A 1f10e66bce6b

Subscribe to this mod's changes

schedule is a skill published in the GitHub repository jmagly/aiwg (209 stars, last pushed 2d ago), licensed MIT. It adds 16 tokens to every session and 559 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-09-05.

Related

Other skills, from other repositories

memstack-automation-n8n-workflow-builder

Use this skill when the user says 'n8n workflow', 'build a workflow', 'automation workflow', 'connect services', or needs visual workflow design with node mapping, data transformations, and error handling for n8n. Do NOT use for standalone webhook endpoints or cron jobs.

cwinvestments/memstack · 68 tokens

memstack-automation-cron-scheduler

Use this skill when the user says 'cron job', 'scheduled task', 'run every', 'cron expression', 'recurring job', or needs production-grade scheduled jobs with overlap prevention, monitoring, and structured logging. Do NOT use for n8n workflows or event-driven webhooks.

cwinvestments/memstack · 67 tokens

session-save

Save the current session state (decisions, modified files, current status, and next steps) to a handoff file for later resume.

FlorianBruniaux/claude-code-ultimate-guide · 31 tokens

overheard

Find commitments the user made in the last two weeks and did not follow through on. A promises audit.

ghostwright/phantom · 24 tokens

find-plugin-file

This skill should be used when needing to locate files within the Claude Code plugins cache directory (/.claude/plugins/cache). Triggers include finding tool scripts, skill files, or any plugin resource when the hardcoded path is unknown or varies by plugin version. Use when slash commands or orchestrators need to…

closedloop-ai/claude-plugins · 70 tokens

atelier-orchestrator

Skill routing and workflow orchestration. Selects Inline Plan or Spec-backed Plan, routes to the correct workflow skill, and manages transitions between phases. Use when starting any conversation or task to determine which planning mode and skill apply.

martinffx/atelier · 52 tokens