Heartbeats (Agent Wake-ups)

A pattern where AI agents proactively wake up on a schedule (every 4, 8, or 12 hours) to re-read their context, check their task queue, and continue work — without a human prompt triggering them. Popularised by OpenClaw, now a core mechanism in Paperclip.

Key points

  • Each heartbeat starts with a fresh context window — as if the agent were just born. The agent must immediately re-read its instruction files (agents.md, heartbeat.md, soul.md, tools.md) to re-establish identity and priorities before doing anything else [src-001].
  • This creates a specific discipline requirement: agent instruction files must be comprehensive and current, because the agent has no memory of prior heartbeats except what’s in those files and the ticketing system.
  • The heartbeat pattern is what makes agents feel proactive — they appear to keep working on their own, and can take initiative (flag blockers, request approvals, ask for missing info) without waiting for the human to prompt them [src-001].
  • Heartbeat frequency is a trade-off: more frequent = faster iteration but higher cost and more context thrashing. Less frequent = cheaper but slower responsiveness. Paperclip defaults to 4/8/12 hours as configurable presets [src-001].
  • Contrast with event-driven triggers (webhooks, terminal runs): heartbeats are time-based polling, webhooks are push. Paperclip’s “Routines (beta)” feature supports both [src-001].

Related entities

  • OpenClaw — originator of the heartbeat pattern
  • Paperclip — current implementation
  • Claude Code — the runtime each heartbeat wakes up into

Related concepts

Source references

  • [src-001] Nate Herk — “Claude Code + Paperclip Just Destroyed OpenClaw” (2026-03-28)

Robin Cartier perspective

This page is part of Robin Cartier's working AI knowledge graph: a practical research layer for production AI, recommendation systems, experimentation, GEO, and agentic web readiness.

The useful next step is to connect this concept back to applied product leadership and operating models.

Recommended next

Keep reading from this thread

From 491 indexed pages and articles.

  1. Wiki concept Agent Orchestration The discipline of coordinating multiple AI agents — each with their own role, context, and tools — so they collectively achieve a higher-level goal Related by heartbeats
  2. Wiki concept OpenClaw Peter Steinberger's open-source personal AI agent, initially covered in this wiki as a heartbeat-heavy predecessor to Paperclip but expanded by [src-064] into a Related by heartbeats
  3. Insight AI Beyond POCs How enterprise AI moves beyond proofs of concept through ownership, governance, measurement, adoption, and production operating models Readers have engaged with this next