Automate tasks with cron systemd timers Windows Scheduler
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill scheduled-automation --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Scheduled Automation?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-scheduled-automation)More formats (shields.io, HTML) on the badges page.
---
name: scheduled-automation
description: "Automate tasks with cron systemd timers Windows Scheduler"
---
# Scheduled Automation
## Linux Cron
```bash
# Edit crontab
crontab -e
# Format: minute hour day month weekday command
0 2 * * * /usr/local/bin/backup.sh
*/30 * * * * /usr/local/bin/healthcheck.sh
```
## Windows Task Scheduler (CLI)
```bash
schtasks /create /tn "MyTask" /tr "python script.py" /sc daily /st 02:00
```
## Hermes Cron
```bash
hermes cron create --schedule "0 9 * * *" --prompt "Daily summary" --deliver telegram
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!