Skip to content
Agent Orchestration
Skill

/cron-scheduling

Create, list, and remove persistent scheduled tasks using cron expressions.

From plugin
middleman
1814 skills
Install
$ npx -y skills add SawyerHood/middleman --skill cron-scheduling --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/cron-scheduling

Context preview

The summary Claude sees to decide when to auto-load this skill.

Create, list, and remove persistent scheduled tasks using cron expressions.

SKILL.md

cron-scheduling.SKILL.md
name: cron-scheduling
description: Create, list, and remove persistent scheduled tasks using cron expressions.

Cron Scheduling

Use this skill when the user asks to schedule, reschedule, or cancel reminders/tasks for later.

Before creating a schedule, confirm:

  • exact schedule timing (cron expression),
  • timezone (IANA, for example `America/Los_Angeles`),
  • task message content.

If the request is ambiguous, ask a follow-up question before adding a schedule.

Commands

Use the embedded CLI. It talks to the backend schedule service and stores schedules in SQLite.

middleman schedule add \
  --cron "0 9 * * 1-5" \
  --message "Remind me about the daily standup" \
  --description "Daily standup reminder" \
  --timezone "America/Los_Angeles"

One-shot schedule (fires once at the next matching cron time):

middleman schedule add \
  --cron "30 14 * * *" \
  --message "Check deployment status" \
  --description "One-time deployment check" \
  --timezone "America/Los_Angeles" \
  --one-shot

Remove a schedule:

middleman schedule remove \
  "<schedule-id>"

List schedules:

middleman schedule list

Override manager context manually when needed:

middleman schedule list --manager "manager"

Output

All commands return JSON:

  • Success: `{ "ok": true, ... }`
  • Failure: `{ "ok": false, "error": "..." }`
Ships withmiddleman

A local-first multi-agent orchestration platform. One manager, many workers, zero tab-juggling. Middleman is pre-v1, experimental, and updated constantly. Expect breaking changes.

Get the whole plugin
Stats
181
Stars
21
Forks
Maintained
Maintenance
TypeScript
Language
Apache-2.0
License
3mo ago
Last commit
6mo ago
Created

Repo: SawyerHood/middleman