CLI
cron
scheduled tasks
usage
baihu cron add "0 9 * * *" "summarize my calendar"
baihu cron list
baihu cron remove <ID>
schedule format
standard cron syntax: minute hour day month weekday
# every morning at 9am
baihu cron add "0 9 * * *" "check emails and summarize"
# every hour
baihu cron add "0 * * * *" "check system health"
# weekdays at 5pm
baihu cron add "0 17 * * 1-5" "daily standup summary"
requirements
the daemon must be running for cron jobs to execute. jobs run through the agent with full tool access (subject to security policy).