Agent skill

cron-scheduling

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

Stars 157
Forks 17

Install this agent skill to your Project

npx add-skill https://github.com/SawyerHood/middleman/tree/main/apps/backend/src/swarm/skills/builtins/cron-scheduling

SKILL.md

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.

bash
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):

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

Remove a schedule:

bash
middleman schedule remove \
  "<schedule-id>"

List schedules:

bash
middleman schedule list

Override manager context manually when needed:

bash
middleman schedule list --manager "manager"

Output

All commands return JSON:

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

Expand your agent's capabilities with these related and highly-rated skills.

SawyerHood/middleman

brave-search

Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. Lightweight, no browser required.

157 17
Explore
SawyerHood/middleman

memory

Update persistent swarm memory in ${SWARM_MEMORY_FILE} when the user explicitly asks to remember, update, or forget durable information.

157 17
Explore
SawyerHood/middleman

image-generation

Generate images using Google Gemini (gemini-3-pro-image-preview). Requires GEMINI_API_KEY.

157 17
Explore
SawyerHood/dev-browser

dev-browser

Browser automation with persistent page state. Use when users ask to navigate websites, fill forms, take screenshots, extract web data, test web apps, or automate browser workflows. Trigger phrases include "go to [url]", "click on", "fill out the form", "take a screenshot", "scrape", "automate", "test the website", "log into", or any browser interaction request.

5,065 317
Explore
davila7/claude-code-templates

verl-rl-training

Provides guidance for training LLMs with reinforcement learning using verl (Volcano Engine RL). Use when implementing RLHF, GRPO, PPO, or other RL algorithms for LLM post-training at scale with flexible infrastructure backends.

23,776 2,298
Explore
davila7/claude-code-templates

openrlhf-training

High-performance RLHF framework with Ray+vLLM acceleration. Use for PPO, GRPO, RLOO, DPO training of large models (7B-70B+). Built on Ray, vLLM, ZeRO-3. 2× faster than DeepSpeedChat with distributed architecture and GPU resource sharing.

23,776 2,298
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results