Skip to content

Instantly share code, notes, and snippets.

View byronrode's full-sized avatar

Byron Rode byronrode

View GitHub Profile
@adam91holt
adam91holt / gist:8fe3e49e3b9043b5553ef6d259d03b4b
Last active January 19, 2026 19:43
Simple bash script to run a Clawdbot agent on odd days of the month
#!/bin/bash
# odd-day-task: Run an agent task on odd days of the month
REPLY_TO="+1234567890"
REPLY_ACCOUNT="your-account"
DAY=$(date +%d)
# Check if odd day (remove leading zero for arithmetic)
if (( 10#$DAY % 2 == 1 )); then