Most people install OpenClaw, connect Telegram, and use it like a fancy ChatGPT wrapper. That is like buying a Swiss Army knife and only using it to open letters.
OpenClaw's real power is in what it does when you are not talking to it. Cron jobs, heartbeat checks, background sub-agents — these are the features that turn a chatbot into an actual assistant. Here are seven automations we run in production, with the actual configuration to set them up.
1. The Morning Briefing
Every morning at 8 AM, your agent checks your calendar, scans your email for urgent items, checks the weather, and delivers a summary to your Telegram.
How it works: A cron job fires at 8 AM and the agent uses its available skills (calendar, email, weather) to compile a brief.
openclaw cron add \
--schedule "0 8 * * *" \
--prompt "Morning brief: Check my calendar for today, scan email for anything urgent, check the weather for my location. Deliver a concise summary."
What you get: A Telegram message every morning with your day laid out — meetings, deadlines, weather, and any emails that need attention. No more opening four apps before coffee.
2. The After-Hours Auto-Responder
When you are offline (sleeping, weekends, vacation), your agent handles incoming messages with context-aware responses instead of silence.
How it works: Your agent already receives messages 24/7 through Telegram. The key is teaching it when to respond autonomously vs when to wait for you. Add this to your HEARTBEAT.md:
# After-Hours Protocol
- If current time is between 11pm-8am ET:
- For urgent questions: provide a helpful response and note it for morning review
- For non-urgent messages: acknowledge receipt and queue for morning
- Log all after-hours interactions in memory/YYYY-MM-DD.md
Why it matters: Clients and collaborators get immediate acknowledgment. You get uninterrupted sleep. Everyone wins.
3. GitHub PR Monitor
Your agent watches your repositories for new pull requests, reviews the diff, and sends you a summary with its assessment.
How it works: A cron job runs every 30 minutes during work hours, checks for new PRs using the GitHub CLI, and summarizes them.
openclaw cron add \
--schedule "*/30 9-17 * * 1-5" \
--prompt "Check for new pull requests in my watched repos using gh. For each new PR, summarize the changes, flag any potential issues, and send me a brief via Telegram."
What you get: Instead of context-switching to GitHub every hour, you get a Telegram notification only when something needs your attention, with a pre-analyzed summary.
4. The Email Digest
Instead of checking email constantly, your agent scans your inbox on a schedule and delivers a prioritized digest.
How it works: Using the Gmail skill (or MCP Google connector), a cron job reads unread emails, categorizes them by urgency, and sends a summary.
openclaw cron add \
--schedule "0 9,13,17 * * 1-5" \
--prompt "Check Gmail for unread messages. Categorize as: urgent (needs reply today), informational (FYI only), or low priority. Summarize the urgent ones with key details. Deliver via Telegram."
Result: Three times a day you get a clean, prioritized view of your inbox. No more scrolling through 47 newsletters to find the one email that matters.
5. Automated Security Scan
Your agent runs a nightly security check across your projects — scanning for exposed credentials, checking file permissions, and monitoring for suspicious changes.
How it works: A daily cron job at midnight scans your project directories for common security issues.
openclaw cron add \
--schedule "0 0 * * *" \
--prompt "Security scan: Check /home/projects/ for any .env files with open permissions, scan for hardcoded API keys or tokens in committed files, verify no new ports are exposed. Report findings only if issues are found."
Why it matters: Security audits that you would never do manually now happen every night. You only hear about it when something is wrong.
6. Weekly Project Status Report
Every Friday afternoon, your agent generates a status report by checking git activity, open issues, and your memory logs from the week.
openclaw cron add \
--schedule "0 16 * * 5" \
--prompt "Generate a weekly status report: 1) Check git logs for all projects this week (commits, branches). 2) Count open vs closed issues. 3) Review memory/ logs from this week for key decisions and blockers. 4) Summarize in a brief report format and deliver via Telegram."
What you get: A concise summary of your week's work that takes your agent 2 minutes to compile and would take you 30+ minutes to write from scratch. Great for team updates or client reports.
7. Multi-Agent Task Routing
This is where OpenClaw gets genuinely powerful. Instead of one agent doing everything, you set up specialized sub-agents that your main agent delegates to.
The pattern: Your main agent receives all messages. For coding tasks, it spawns a coding sub-agent. For research, a research sub-agent. Each runs on the best model for that task.
# In AGENTS.md, define your team:
## The Team
| Agent | Role | Model |
|---|---|---|
| codsworth | Coding & builds | GPT-5.3 Codex |
| shuri | Research & analysis | MiniMax-M2.5 |
| watcher | QA & verification | Claude Sonnet |
Your main agent reads this file and knows who to delegate to. When you say "build me a REST API for user management," it spawns the coding agent. When you say "research the top competitors in this space," it spawns the research agent.
Why it matters: Each agent uses the best (and most cost-effective) model for its job. Your coding agent uses a coding-optimized model. Your research agent uses a high-context model. Your QA agent double-checks everything.
The Common Thread
All seven of these automations share the same principle: your agent should be doing work when you are not actively talking to it.
The morning briefing runs before you wake up. The security scan runs while you sleep. The PR monitor runs in the background. The email digest saves you from inbox addiction. The sub-agents handle specialized work in parallel.
This is the difference between an AI chatbot and an AI assistant. A chatbot waits for you to ask. An assistant anticipates, monitors, and acts.
Getting started tip: Do not try to set up all seven at once. Pick the one that would save you the most time this week and get it running. Add the next one when the first is stable. Automation compounds — each one you add makes the others more valuable.
These 7 Are Just the Beginning
The OpenClaw Field Guide documents 30+ production-ready workflow patterns across 40 pages and 12 chapters — the complete sub-agent delegation framework, every cron and heartbeat configuration, and skill routing patterns we use daily.
Get the Field Guide — $24 →