Most people use OpenClaw like a smarter chatbot — ask, wait, read. But OpenClaw's real power comes from treating it like a delegated colleague that can act, not just answer. These 10 tips will get you there.
Write your SOUL.md like an onboarding doc, not a prompt
The biggest mistake new users make is writing a vague SOUL.md. Instead of "I like concise answers", write actual context: your job title, your tools, your working hours, your recurring tasks, and your hard limits. Treat it like you're onboarding a new assistant.
# Role
I'm a product manager at a B2B SaaS company.
Tools: Notion, Linear, Slack, Google Meet.
Working hours: 9 AM–6 PM CET, Mon–Fri.
# Hard limits
Never send a Slack message without showing it to me first.
Never create Linear tickets without my approval.
Use multi-step prompts, not single sentences
OpenClaw handles complex, multi-step instructions well. Don't break your request into ten back-and-forth messages. Write the full task upfront:
Search for the 3 most recent articles about AI regulation in the EU.
For each one: extract the headline, source, date, and a 2-sentence summary.
Format as a table. Save to a file called eu-ai-regulation-digest.md.
Giving the full task upfront reduces errors, avoids unnecessary clarification loops, and is faster overall.
Chain skills together for compound workflows
Individual skills are useful. Chained skills are powerful. You can instruct OpenClaw to run multiple skills in sequence as part of a single task. For example:
> Run email-digest, then create a Notion page with today's summary,
then message me on WhatsApp with the three most urgent items.
OpenClaw handles the coordination — no scripting required. Visit the Marketplace to find skills worth chaining.
Set up overnight automation schedules
OpenClaw's automation system lets you schedule tasks using plain-English cron-like syntax. Run it in the background and wake up to finished work:
claw schedule add "Every weekday at 6 AM: pull today's calendar,
check my inbox for flagged emails, prepare a morning brief,
and send it to me on Telegram."
See the full Automation guide for scheduling syntax and examples.
Control OpenClaw from WhatsApp with short commands
Once you've connected WhatsApp (claw connect whatsapp), you can use short commands from your phone. You don't need to type full sentences — OpenClaw learns your shorthand from SOUL.md context:
- "morning brief" → triggers your scheduled morning summary
- "emails" → runs email-digest right now
- "free today?" → checks your calendar and replies inline
Define your shortcuts in SOUL.md under a # Quick commands section.
Use output format instructions every time
OpenClaw will default to whatever format seems sensible. You'll get better, more consistent results by being explicit:
> Summarise this research paper. Format:
- TL;DR (2 sentences)
- Key findings (bullet list, max 5)
- Limitations (bullet list, max 3)
- My action items (if any)
Consistent formatting makes it easier to skim outputs and pipe results into other tools.
Give OpenClaw a "thinking style" in SOUL.md
You can shape how OpenClaw reasons by adding a reasoning style section to SOUL.md:
# Thinking style
Before acting, briefly state your plan and any assumptions.
If something is ambiguous, flag it — don't guess.
Prefer reversible actions. If you're unsure, ask once.
This one section dramatically reduces the number of times OpenClaw does something unexpected.
Use the --dry-run flag before any irreversible action
For high-stakes tasks (sending emails, modifying files, posting to social media), use the dry-run flag to preview exactly what OpenClaw would do — without actually doing it:
claw run --dry-run "Send a follow-up email to everyone who didn't respond to my proposal"
OpenClaw will show you the list of recipients and the draft email for each one before you commit.
Run a weekly SOUL.md review
Your workflow changes. Your SOUL.md should too. Set a 10-minute calendar block every Monday to review it. Ask yourself: did OpenClaw do anything surprising this week? Did it ask for clarification on something that should be in SOUL.md? Update it accordingly.
A well-maintained SOUL.md is the difference between an agent that always needs hand-holding and one that genuinely runs on autopilot.
Use multi-agent mode for research-heavy tasks
For tasks that require gathering information from many sources simultaneously — competitive analysis, literature reviews, market research — switch to multi-agent mode:
claw run --multi-agent "Research the top 5 project management tools.
For each: pricing, key features, limitations, and best-fit use case."
OpenClaw spins up parallel sub-agents to research each tool simultaneously, then synthesises the results. What would take 20 minutes sequentially takes 3–4 minutes with fan-out. Read the full Multi-Agent guide for more patterns.