1. Heartbeat + HEARTBEAT.md
Your agent wakes up every 30 minutes, reads HEARTBEAT.md, and acts on whatever you've written in there. You can tell it to check your email for anything urgent, track a package, watch the weather, whatever makes sense for your day. Just plain english. The cool part is the agent can edit its own HEARTBEAT.md too, so if you say something like "keep an eye on X for me" in conversation, it'll add that to its checklist without you touching any files.
2. Cron jobs
Heartbeat is good for "check this periodically" but if you need something at an exact time, cron is the way to go. Morning briefing at 8am, weekly recap of your github notifications, a one-shot reminder for a deadline three weeks out. You can inject cron results into your main session so the agent has all your conversation context, or run them isolated for a clean slate. I use main session injection for daily stuff because the agent already knows what I care about from prior conversations.
3. Set up more than one channel
I only had discord connected for the longest time and didn't think much of it. But once I added whatsapp too, I set up routing so casual updates go to discord and anything time-sensitive goes to whatsapp. It makes a huge difference because I'm way more likely to see a whatsapp ping than a discord notification buried under 30 servers.
4. Phone calls
All the messaging channels work great but they're still notifications, and I kept finding myself checking them too late for things that actually mattered. A phone call is different because your phone actually rings and you have to actively decide not to answer. Openclaw has a native voice call plugin but setting it up means wiring together telephony APIs, speech-to-text, text-to-speech, and getting all the audio routing right. There's a clawhub skill called clawr.ing that handles all of that for you. You install the skill and your agent can call your phone whenever it decides something warrants a real call. Phone rings, you pick up, you talk.
5. Keyword alerts with f5bot
This one's a bit of a hack but it works great. F5bot is free and sends email alerts when specific keywords show up on reddit, hacker news, or lobsters. Point your agent at those emails through the heartbeat and you've got monitoring for anything you care about, mentions of your name, topics you follow, whatever. The agent reads through the noise and only brings up what's worth looking at.
Once I set up a few of these it changed how I think about the whole thing. Less "open chat, ask question" and more like having someone paying attention in the background who taps me when something comes up.
If you've got a setup like this I'd love to hear about it, I feel like I'm still only scratching the surface here.