AgentsExamples
System health watch
Disk, memory, and logs checked on an interval; you hear about it only when something is off.
Your agent checks the machine it runs on — disk space, memory pressure, whatever you tell it to look at — and stays silent unless something needs your attention. The useful part is the silence: no news is genuinely no news.
What you need
Set it up
memcode gateway schedule add health --every 30m \
--to signal:+15551234567 \
"Check disk usage, memory, and the last 50 lines of the system log. If everything is normal, reply with exactly OK. Otherwise describe what's wrong and how urgent it is."A reply of "OK" every half hour would be noise — so tell the agent what counts as reportable, as in the task above, and it holds the quiet ones.
Good to know
Scheduled jobs run with the same safety floor as chat messages: destructive commands are denied automatically, so a health check can read your system but a bad prompt can't wipe it.