Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Diagnose and triage cron job failures. Checks job states, identifies error patterns, prioritizes by criticality, generates health reports. Triggers on: cron...
Diagnose and triage cron job failures. Checks job states, identifies error patterns, prioritizes by criticality, generates health reports. Triggers on: cron...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
Diagnose and triage cron job failures.
When asked to check cron health or diagnose failures:
# List user's crontab crontab -l # List system crontabs sudo cat /etc/crontab ls -la /etc/cron.d/
# Check cron logs (location varies by system) # Debian/Ubuntu: grep CRON /var/log/syslog | tail -50 # RHEL/CentOS: tail -50 /var/log/cron # macOS: log show --predicate 'process == "cron"' --last 1h # Check for specific job output grep "your_job_name" /var/log/syslog | tail -20
Error patterns to watch: "command not found" β Missing executable or PATH issue "Permission denied" β File/directory permissions wrong "No such file or directory" β Script path incorrect "timeout" β Job took too long "ECONNREFUSED" β Network/service down "rate limit" β API throttling Missing output β Job may not be running at all
PriorityCriteriaπ΄ CriticalTrading, backup, security jobsπ HighUser-facing deliveriesπ‘ MediumMonitoring, research jobsπ’ LowNice-to-have, non-essential
ErrorFixCommand not foundUse full path to executable, or set PATH in crontabPermission deniedCheck file permissions, run chmod +x script.shNo outputAdd >> /tmp/job.log 2>&1 to capture outputWrong timezoneSet TZ= in crontab or use system timezoneRate limitReduce frequency or add backoff
# Test cron environment (cron has minimal PATH) env -i /bin/sh -c 'echo $PATH' # Verify script runs manually /path/to/your/script.sh # Check if cron daemon is running systemctl status cron # Linux launchctl list | grep cron # macOS
If 3+ critical jobs failed, alert the user immediately.
Before claiming diagnosis complete: All failed jobs listed β none skipped or ignored Priority assigned β based on impact, not just recency Fix suggested β actionable next step for each failure Report written β to ~/workspace/reports/cron-health-YYYY-MM-DD.md Critical failures escalated β 3+ critical = alert user
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.