schedule-workflow

schedule-workflow is a skill for Claude Code, Codex from lukacf/meerkat. It costs 14 tokens per session (542 once invoked), scanned A, original, Apache-2.0.

A guide for creating and inspecting durable schedules, meaning tasks that run later, repeat at set intervals, or follow a wall-clock calendar in a chosen time zone.

In plain words
What is it for?
Use it to create reminders, recurring jobs, follow-ups, monitors, wakeups, and routine automations, then inspect their status and behavior.
Why use it?
It clarifies how scheduled delivery differs from live work and helps avoid incorrect trigger, overlap, recovery, or missing-target settings.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/lukacf/meerkat/schedule-workflow
Any agent
npx skills add lukacf/meerkat --skill schedule-workflow
Clone the repo
git clone --depth 1 https://github.com/lukacf/meerkat

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-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/lukacf/meerkat/schedule-workflow.svg)](https://agentmods.dev/skills/lukacf/meerkat/schedule-workflow)
Your own site
<a href="https://agentmods.dev/skills/lukacf/meerkat/schedule-workflow"><img src="https://agentmods.dev/badge/skills/lukacf/meerkat/schedule-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 542 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00014 $0.00542
Opus 5 $0.00007 $0.00271
Sonnet 5 $0.00003 $0.00108
Haiku 4.5 $0.00001 $0.00054

Measured 5d ago against content hash 5bced20ec222, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

schedule-workflow 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 5d 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.

meerkat-schedule/skills/schedule-workflow/SKILL.md · 49 lines

How it starts

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

Schedule Workflow

Use Schedule when something should happen later, repeatedly, or on a wall-clock calendar. Schedules own time and delivery. They do not own live work state.

Operating Rules

  • Create schedules with meerkat_schedule_create when the user asks for a reminder, recurrence, follow-up, monitor, wakeup, or routine automation.
  • Choose the smallest trigger that matches the request: once for one future instant, interval for fixed cadence, calendar for wall-clock recurrence in a named timezone.
  • For the current agent session, use the agent-facing session target {"target_kind":"session","type":"current_session","action":{"type":"prompt","prompt":"Check in"}}. The host resolves it to a persisted durable target.
  • Use resumable_session only when you have the exact durable session_id, and materialize_on_demand_session when the schedule must create a session from an explicit build spec on first fire.
  • The defaults are misfire_policy: {"type":"skip"}, overlap_policy: "skip_if_running", and missing_target_policy: "mark_misfired". Change them only when the user asks for bounded catch-up, concurrency, or different missing-target behavior.
  • Inspect with meerkat_schedule_get, meerkat_schedule_list, and meerkat_schedule_occurrences before creating duplicates.
  • Pause for temporary suspension, resume to reactivate, update to change future behavior, and delete only when the schedule should stop permanently. Delete is irreversible, but historical occurrences remain queryable.

Boundaries

  • Use WorkGraph for pending work, dependencies, claims, and evidence.
  • Use Schedule for time. A scheduled prompt may ask an agent to inspect WorkGraph, but Schedule should not duplicate WorkGraph readiness logic.
  • Treat an occurrence claim and delivery outcome as Schedule authority only. They do not authorize a WorkGraph claim or prove that the underlying shared work completed.
  • Do not infer successful delivery from a due time. Inspect occurrence phase; pending, claimed, dispatching, awaiting completion, completed, skipped, misfired, superseded, and delivery failed are distinct states.
  • Use memory for recalled knowledge, not for future wakeups.
  • Use builtin tasks for private scratch items that do not need scheduled delivery or shared durable coordination.

Read the full file on GitHub · 49 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. 5d ago First seen · 49 lines · 14 tokens per session scan A 5bced20ec222

Subscribe to this mod's changes

schedule-workflow is a skill published in the GitHub repository lukacf/meerkat (20 stars, last pushed today), licensed Apache-2.0. It adds 14 tokens to every session and 542 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.