Short answerA heartbeat agent is an AI agent that wakes on a schedule — hourly, daily, or event-driven — and runs a defined task without a human prompt. Heartbeats turn agents from reactive chatbots into proactive employees. They are the primitive that makes autonomous businesses possible, because most business value lives in recurring work, not one-off questions.
In depth
The heartbeat pattern was named in 2024 and became mainstream in 2025 through BCG's 'New Wave of Autonomous AI Agents' brief and Paperclip's open-source documentation. Before heartbeats, AI agents could only respond to human prompts — which meant they couldn't run a business, because a business runs on schedules (daily briefings, weekly reviews, monthly close, quarterly planning). A heartbeat has four parts: 1. A trigger (cron schedule, event listener, or external webhook). 2. A context refresh (pull current state from Notion, Postgres, Stripe, etc.). 3. A task execution (the agent does the work, writes outputs back, possibly escalates). 4. An audit trail (what ran, what was produced, what got flagged). Practical examples in a one-person company: - Daily 7am: Manager reads overnight metrics, drafts the founder brief. - Weekly Monday 9am: AI CMO reviews last week's content performance, proposes this week's calendar. - Monthly first-of-the-month: AI CFO closes books, generates P&L, flags anomalies. - Event-triggered: new customer signup → AI Support agent fires, sends onboarding sequence. Heartbeats are what separate 'AI tool' from 'AI employee.' A tool waits. An employee works. Implementation varies: - Paperclip has explicit heartbeat configuration per agent. - Polsia runs continuous autopilot (everything is a heartbeat). - Tycoon exposes heartbeats as scheduled tasks per role that can be paused, tuned, or audited. Best practice: every AI role should have at least one heartbeat. Roles without heartbeats never volunteer work and effectively operate as chatbots. The transition from 'AI helper' to 'AI teammate' is when heartbeats land.
Examples
- Tycoon's 'Morning Brief' routine: every weekday 7am, Manager summarizes overnight activity in a 3-sentence message.
- Polsia's continuous loop: the agent runs effectively non-stop, checking vendor APIs, posting ads, and responding to customer messages across 597 managed companies.
- Paperclip's scheduled governance: heartbeat fires to audit agent budget consumption, flag over-spenders.
- A newsletter writer's heartbeat: every Friday 4pm, AI Content agent drafts next Tuesday's newsletter based on the week's links, ready for founder review.
- Claude Code's 'stop' hooks + GitHub Actions cron: effectively a heartbeat for developer-adjacent tasks.