Agent skill
c-cron
Manage cron jobs and macOS launchctl services — schedule recurring tasks, start/stop services using lunchy-go.
Install this agent skill to your Project
npx add-skill https://github.com/daxaur/openpaw/tree/main/skills/c-cron
SKILL.md
Scheduling & Cron
lunchy-go (launchctl wrapper)
Friendly wrapper around macOS launchctl:
# List all services (pattern match)
lunchy-go ls
lunchy-go ls redis
# Start a service
lunchy-go start com.example.service
lunchy-go start redis # pattern match
# Stop a service
lunchy-go stop redis
# Restart a service
lunchy-go restart redis
# Show service status
lunchy-go status redis
crontab (built-in)
Standard Unix cron scheduler:
# List current cron jobs
crontab -l
# Edit cron jobs (opens editor)
crontab -e
# Cron syntax: MIN HOUR DOM MON DOW command
# Every day at 9am:
# 0 9 * * * /path/to/script.sh
# Every 5 minutes:
# */5 * * * * /path/to/script.sh
# Weekdays at 8:30am:
# 30 8 * * 1-5 /path/to/script.sh
Guidelines
- Prefer lunchy-go for macOS services (launchd plists)
- Use crontab for simple recurring commands
- Always use full paths in cron jobs
- Redirect output to log files:
command >> /tmp/cron.log 2>&1 - Test commands manually before scheduling them
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
c-slack
Send messages and upload files to Slack channels using the `slack` CLI. Supports direct messages, channel posts, file uploads, and thread replies.
c-timer
Timers, alarms, and pomodoro — set countdowns with native notifications.
c-telegram
Bidirectional Telegram bridge — talk to Claude from your phone. Built into OpenPaw.
c-system
macOS Swiss Army Knife — control volume, wifi, battery, dock, display, trash, firewall, screensaver, shutdown, and more via m-cli.
c-tracking
Track packages across UPS, FedEx, USPS, and DHL using the `ordercli` CLI. Look up tracking numbers, get current status, estimated delivery dates, and shipment history without visiting carrier websites.
c-network
DNS lookups with doggo and readable HTTP requests with httpie — modern networking tools for the terminal.
Didn't find tool you were looking for?