From aux4-agent-skills
Schedule recurring tasks with human-readable intervals using aux4 cron. Tasks run via aux4 jobs for full lifecycle tracking.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aux4-agent-skills:cronThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Schedule and manage recurring tasks: $ARGUMENTS
Schedule and manage recurring tasks: $ARGUMENTS
All commands accept --port <port> (default: 8421).
| Command | Description |
|---|---|
aux4 cron start | Start the scheduler server |
aux4 cron stop | Stop the scheduler |
aux4 cron add --name "<name>" --every "<interval>" --run "<command>" | Add a recurring task |
aux4 cron add --name "<name>" --in "<delay>" --run "<command>" | Add a one-time delayed task |
aux4 cron remove --name "<name>" | Remove a task |
aux4 cron pause --name "<name>" | Pause a task |
aux4 cron resume --name "<name>" | Resume a paused task |
aux4 cron list | List all scheduled tasks |
aux4 cron history --name "<name>" --limit 10 | View execution history |
--every)| Expression | Meaning |
|---|---|
10s, 30s | Every N seconds |
5 min, 15 min | Every N minutes |
2 hours | Every 2 hours |
1 day | Once per day |
monday, friday | Weekly on that day |
weekday | Monday through Friday |
weekend | Saturday and Sunday |
1 month | Monthly |
Combine with --at HH:MM for time-of-day scheduling:
aux4 cron add --name "daily-backup" --every "1 day" --at "02:00" --run "backup.sh"
aux4 cron add --name "standup-reminder" --every "weekday" --at "09:30" --run "echo standup time"
--in)aux4 cron add --name "delayed-deploy" --in "30 min" --run "deploy.sh"
aux4 cron add --name "reminder" --in "2 hours" --run "echo check results"
--max)Limit how many times a task runs before auto-removal:
aux4 cron add --name "retry-3x" --every "5 min" --max 3 --run "check-service.sh"
Every cron execution runs through aux4 jobs, so you get full lifecycle tracking:
aux4 cron history --name "daily-backup" # see execution history
aux4 jobs output "<job-id>" # read output of a specific run
--maxaux4 cron start.cron.json — survives restartsaux4 cron stop/jobs to inspect output of cron-triggered executions--max for tasks that shouldn't run indefinitelynpx claudepluginhub aux4/agent-skills --plugin aux4-agent-skillsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.