Skip to content
Officialworkflow

Schedule

Create, update, list or run scheduled remote agents on a cron schedule.

/schedule

Install this skill

  1. 1. Copy the SKILL.md content (button above)
  2. 2. Create a folder for the skill:
    # Mac/Linux
    mkdir -p ~/.claude/skills/schedule
    
    # Windows (PowerShell)
    mkdir $env:USERPROFILE\.claude\skills\schedule
  3. 3. Save the content as ~/.claude/skills/schedule/SKILL.md
  4. 4. Restart Claude Code (or open a new session)
  5. 5. Type /schedule to invoke it
cronautomationremote

/schedule

Crea agentes que corren en horario sin tu presencia.

Usage

/schedule list /schedule create "0 9 * * 1" "Review open PRs and summarize" /schedule delete <id> /schedule run <id> # disparar ahora

Cron format

  • 0 9 * * 1 — Lunes 9am
  • */30 * * * * — cada 30 min
  • 0 0 * * * — todos los días medianoche

Casos de uso

  • Review diario de dependabot PRs
  • Reporte semanal de métricas
  • Backup nocturno con validación
  • "Lunes 9am: ¿qué quedó pendiente?"