Noticed even with heartbeat disabled Iβm still getting pinged every hour in telegram about a heartbeat check.
Some digging uncovered this. Does that sound right or a red herring?
There's an instruction in AGENTS.md:
"When you receive a HEARTBEAT message, don't just reply HEARTBEAT_OK every time. Use heartbeats productively!"
This is being interpreted as "check heartbeat status periodically" β probably by the memory-summary LaunchAgent running every 30 minutes.
To stop it:
1. Option 1: Remove or comment out the heartbeat instruction in AGENTS.md:
sed -i '' /Users/office/clawd/AGENTS.md
2. Option 2: Stop the memory-summary LaunchAgent:
launchctl remove com.clawdbot.memory-summary
3. Option 3: Modify memory-summary to not trigger HEARTBEAT checks
Which would you prefer?```