firehose> #llmops

Agent-Native Cron

An agent's own scheduler for recurring natural-language jobs ("every morning send me the latest AI news," "every Friday email my boss the status") — implemented inside the agent runtime, decoupled from the OS cron. In Hermes: a loop runs a tick() function every minute, reads the scheduled-job definitions, and executes whatever is due. Jobs live as plain JSON (.hermes/cron/jobs.json — each with its prompt and schedule), and every run writes a markdown record under cron/output/<job-id>/, so the schedule and the run history are both inspectable files. Delivery is a system responsibility, not an agent tool call: results go to the operator's designated "home" channel (chosen per gateway at setup — e.g. your Telegram user ID), rather than the agent deciding to invoke a send-message tool.

Claims


Linked from