Install
$ agentstack add skill-cmflynn-crontab-edit-crontab-edit ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Safe crontab editing
crontab overwrites the entire table at once. The crontab form can also silently no-op (exit 0, nothing written) under some sandboxed/restricted shells. Works the same on Linux and macOS. Two rules prevent lost jobs.
1. Back up first
crontab -l > /tmp/crontab.backup.txt 2>/dev/null || echo "(no existing crontab)"
An empty/nonzero result just means the table is empty — that's fine.
2. Install via stdin, then verify by reading back
Pipe the content in on stdin — portable and reliable everywhere. Avoid crontab , and do not trust the exit code; only the read-back proves it worked.
crontab - < /path/to/new_crontab.txt # install (NOT: crontab file)
crontab -l | wc -l # verify: line count matches source
crontab -l # verify: jobs are what you expect
If the read-back is empty or the count is wrong, the install failed — retry the stdin form.
To edit in place without clobbering the rest, round-trip it: crontab -l to a file, edit that file, then reinstall via stdin.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: cmflynn
- Source: cmflynn/crontab-edit
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.