OpenClaw Use Cases
What you can build with a self-hosted AI gateway. From personal assistants to business automation — powered by conversation.
Personal Productivity
Your AI assistant for everyday life — automate reminders, track information, and stay organized through conversation.
Morning Briefing Assistant
Wake up to a personalized daily summary delivered to your phone via WhatsApp or Telegram.
How It Works
Schedule OpenClaw to run a briefing prompt every morning at a set time. The agent pulls from your calendars, weather APIs, task managers, and news sources, then compiles everything into a concise morning update.
What You Need
- •Google Calendar API
- •OpenWeatherMap or weather skill
- •Task manager (Todoist, Things)
Example
"Good morning! Here's your briefing: 3 meetings today at 10am, 2pm, and 4pm. Weather is sunny, 72°F. You have 5 pending tasks. Here's an article about AI agents you might find interesting..."
Second Brain / Memory
Your AI-powered memory that never forgets. Text anything you want to remember, then search it instantly.
How It Works
Every message you send to OpenClaw gets stored in a markdown file with timestamps and tags. When you ask "what did I read about quantum computing last week?" it searches your memory and retrieves the relevant notes.
What You Need
- •Memory skill or custom file storage
- •Vector search (optional)
Example
You: "记住这个: GPT-5的上下文窗口是1M tokens" — Bot: "Got it, saved to memory." Later: You: "我上次提到的GPT-5上下文是多少?" — Bot: "You mentioned GPT-5 has a 1M token context window."
Personal CRM
Track everyone you interact with — meetings, notes, follow-ups — without touching a spreadsheet.
How It Works
OpenClaw watches your calendar and email (via API or IMAP). When you meet with someone, it creates a contact card. Later, ask "when did I last talk to Sarah?" or "what was my impression of the meeting with David from Acme?"
What You Need
- •Google Calendar API
- •Email integration (Gmail API or IMAP)
Example
You: "I just got off a call with Jordan about the partnership" — Bot: "Got it. Should I add action items?" You: "When did I last talk to Jordan?" — Bot: "Today, about the partnership. You discussed pricing and timeline. Action items: send proposal by Friday."
Family Calendar & Household
Coordinate schedules, manage grocery lists, and handle household tasks for the whole family.
How It Works
Connect multiple calendars (Google, Apple, spouse's) to one OpenClaw instance. Family members message a shared thread or their own channel. The agent tracks appointments, sends reminders, and manages shared lists.
What You Need
- •Multiple calendar accounts
- •Shared WhatsApp/Telegram group or family channel
Example
Spouse: "Dentist appointment for Lily on Tuesday at 3pm" — Bot: "Added. Reminder set for Tuesday 2pm." Bot: "Reminder: Lily's dentist tomorrow at 3pm. Don't forget the insurance card!"
Health & Symptom Tracker
Log food, symptoms, and mood to discover patterns and triggers in your health.
How It Works
Send "ate pizza, feeling bloated" or "slept 6 hours, headache" to OpenClaw. Over time, it builds a health log. Ask "what triggers my headaches?" and it analyzes your data to find correlations.
What You Need
- •Custom health tracking skill
- •Optional: Apple Health integration
Example
You: "had coffee, skipped breakfast, major headache at 2pm" You: "what foods correlate with my headaches?" Bot: "Based on your logs, headaches often occur when you skip breakfast + have caffeine. Also, you reported headaches 3x after eating dairy last month."
Development & Coding
Your AI coding partner that lives in your chat — accessible from your phone, laptop, or anywhere.
Phone-Based Coding Assistant
Code from anywhere using just your phone. Review PRs, debug issues, or write functions through WhatsApp or Telegram.
How It Works
Pair OpenClaw with your phone via WhatsApp or Telegram. Send a voice note describing a bug or paste in code. The agent analyzes it, suggests fixes, and can even write and commit code if you enable the permissions.
What You Need
- •GitHub integration
- •Code execution environment (sandbox or local)
- •Terminal/exec tool
Example
You (voice): "Hey, the login endpoint is returning 500 on production but works locally" Bot: "Let me check the logs... Found it — missing environment variable on production. Add DATABASE_URL to your prod env. Want me to create the PR?"
Self-Healing Home Server
An always-on infrastructure agent that monitors your servers, restarts services, and alerts you when things break.
How It Works
OpenClaw runs with SSH credentials to your servers. Set up cron jobs that ping services every minute. If something fails, the agent tries known fixes first (restart docker, clear cache), then alerts you if it can't recover.
What You Need
- •SSH access to servers
- •Monitoring scripts or health check endpoints
Example
[Background] Bot detects: docker-compose service "web" down. Bot action: docker-compose restart web Bot result: Service recovered in 12 seconds. [To you]: "Recovered web service automatically. Had to restart docker-compose. You may want to check the logs for root cause."
Goal-Driven Task Agent
Brain dump your goals and have your agent autonomously generate, schedule, and complete daily tasks — even building mini-apps overnight.
How It Works
Tell OpenClaw a goal like "learn Spanish" or "build a stock tracker". It breaks it into tasks, schedules them, and executes them. For coding tasks, it can generate working code and deploy it — complete surprise mini-apps by morning.
What You Need
- •Code execution environment
- •sessions_spawn for sub-agents
- •Scheduler (cron)
Example
You: "I want to track my crypto portfolio better" [That night] Bot: "Your portfolio tracker is ready! 🎉 Built: CryptoDash at /projects/crypto-dash - Real-time prices from CoinGecko - Your holdings: BTC, ETH, SOL - Total value: $12,450 - 24h change: +2.3% Want me to deploy it to a public URL?"
📋 Copy-Paste Prompt
Here are my goals and missions. Remember all of this: Career: - Grow my YouTube channel to 100k subscribers - Launch my SaaS product by Q3 - Build a community around AI education Personal: - Read 2 books per month - Learn Spanish Business: - Scale revenue to $10k/month - Build partnerships with 5 companies in my space - Automate as much of my workflow as possible Use this context for everything you do going forward. Every morning at 8:00 AM, come up with 4-5 tasks that you can complete on my computer today that bring me closer to my goals. Then schedule and complete those tasks yourself. Track all tasks on a Kanban board. Update the board as you complete them.
💡 Key Insights
- ✓The brain dump is everything - more context = better daily tasks
- ✓The agent discovers tasks you wouldn't think of
- ✓Use a Kanban board to track - you can see what it's been doing
- ✓For overnight app building: explicitly tell it to build MVPs, not overcomplicate
- ✓Watch for race conditions when sub-agents edit shared files
Autonomous Project Manager
Multiple AI agents that coordinate on complex projects — research, development, testing — while you oversee the outcome.
How It Works
Create a main "PM agent" that spawns subagents for different tasks. Use a STATE.yaml or task board that agents read/write to. The PM agent assigns work, tracks progress, and reports to you.
What You Need
- •Multiple agents configured
- •Shared state (file or database)
- •Task routing via sessions
Example
You: "Build me a weather app that shows forecast for the user's location" [Agent workflow] - PM agent creates subtasks: research API, design UI, implement, test - Research agent finds Open-Meteo API - Dev agent builds the app - Test agent verifies it works - PM agent presents: "Done. App is in /projects/weather-app. Want me to deploy it?"
Git Workflow Assistant
Manage branches, review PRs, and deploy code through conversation. Your voice-activated DevOps engineer.
How It Works
Connect OpenClaw to GitHub or GitLab via API. When you ask about a PR or commit, it fetches the details, summarizes changes, and can execute git commands if you approve.
What You Need
- •GitHub/GitLab API token
- •Git credentials on the host
Example
You: "What's pending in staging?" Bot: "3 PRs waiting: feature/auth-fix (approved), bug/login-race (needs review), docs/readme-update (ready). Want me to review any?" You: "review the bug one" Bot: "Summary of #47: Fixes race condition in login flow. Changes are in auth.ts. One concern: the new lock might impact performance under high load. Recommended: add a load test."
Content & Creative
AI-powered content pipelines — from research to publishing, all automated through conversation.
YouTube Content Pipeline
Automated research, scripting, and production pipeline for YouTube channels.
How It Works
Your agent monitors RSS feeds, YouTube search, and social media for topic ideas. It researches each topic, writes a script outline, finds relevant clips or images, and queues everything for your recording session.
What You Need
- •YouTube Data API
- •RSS feeds for topics
- •Web search skill
Example
Bot: "Found 3 trending topics in AI news: 1) Claude 4 release, 2) OpenAI GPT-5 rumors, 3) New AI coding tools. Which should I research?" You: "Do all three" [Later] Bot: "Research complete. Here's the outline for 'Claude 4 vs GPT-4': [script outline, B-roll suggestions, 3 key points to make]"
Multi-Agent Content Factory
A team of AI agents working in parallel — research, write, design — coordinated through Discord.
How It Works
Set up multiple OpenClaw sessions, each with a specific role (researcher, writer, designer). They communicate through a shared Discord server, with dedicated channels for each piece of content.
What You Need
- •Discord bot
- •Multiple agents with different prompts
- •Image generation skill
Example
Channel: #new-blog-post - Research agent: "Found 10 articles on AI agents, here's the summary..." - Writer agent: "Draft complete: 'The Future of AI Agents' at 1200 words" - Designer agent: "Generated 3 thumbnail options attached" - All: "Ready for review!"
Image Generation Workflows
Generate on-brand visuals through conversation. No Midjourney tab needed.
How It Works
Connect an image generation skill (DALL-E, Stable Diffusion, Leonardo) to OpenClaw. Describe what you want in plain language — style, mood, colors — and the agent generates images, iterates based on feedback, and saves them to your asset folder.
What You Need
- •Image generation API (OpenAI, Stability, Leonardo)
- •Custom skill
Example
You: "Create a hero image for my blog about AI coding — futuristic, blue tones, developer at desk" Bot: [generates 4 images] You: "Number 3 but make it more cyberpunk" Bot: [regenerates with cyberpunk style]
Newsletter & RSS Digest
Turn your reading list into a weekly digest. AI summarizes so you can skim 100+ sources in 5 minutes.
How It Works
Subscribe to RSS feeds and newsletters. OpenClaw fetches new content, uses AI to summarize each article, and compiles highlights into a digest. You read the summaries, click what interests you.
What You Need
- •RSS parser skill
- •Email API (for newsletters)
- •AI summarization
Example
Bot: "Your Weekly Tech Digest: 🔴 Must Read: 'The State of AI Agents' — 5 minute summary: Agents are moving from experimental to production... 🟡 Also Interesting: 'New CSS Features in 2026' — Quick summary: Container queries now have 80% browser support... [12 more articles]
Reddit & Social Media Research
Monitor subreddits or X accounts for topics you care about. Get alerts and summaries.
How It Works
Use Reddit and Twitter/X APIs to monitor specific subreddits, keywords, or accounts. When there's activity, OpenClaw summarizes the discussion and alerts you if it matches your interests.
What You Need
- •Reddit API
- •Twitter/X API
- •Keyword triggers
Example
Bot: "Alert: 47 new posts in r/AIAgents in the last hour. Top discussion: 'What are people building with AI agents?' — summarizing top 5 comments..."
Daily Reddit Digest
Get a curated summary of your favorite subreddits delivered to your inbox or chat.
How It Works
Subscribe to a list of subreddits. OpenClaw fetches new posts daily, scores them based on your preferences (upvotes, keywords, authors), and compiles a digest with top picks and brief summaries.
What You Need
- •reddit-readonly skill (no auth needed)
- •Scheduler (cron)
Example
Bot: "Your Daily Reddit Digest: 🏆 Top Pick: 'I built an AI agent that manages my whole house' — 2.4k upvotes 📱 Tech: 'New Claude features every developer should know' — 890 upvotes 💡 Indie Hackers: 'How I got my first 100 paying users' — 456 upvotes [Link to full thread]"
📋 Copy-Paste Prompt
I want you to give me the top performing posts from the following subreddits: r/AI_Agents, r/programming, r/startups. Create a separate memory for the reddit processes, about the type of posts I like to see and every day ask me if I liked the list you provided. Save my preference as rules in the memory to use for a better digest curation. (e.g. do not include memes.) Every day at 5pm, run this process and give me the digest.
💡 Key Insights
- ✓Use the reddit-readonly skill - no authentication needed
- ✓Create preferences memory to personalize digests over time
- ✓Set specific subreddit list and posting schedule
Daily YouTube Digest
Get daily summaries of new videos from your favorite channels — never miss content from creators you follow.
How It Works
Subscribe to YouTube channels via RSS or API. Each day, OpenClaw fetches new uploads, summarizes each video's content, and delivers a digest. Never miss a video from your favorite creators.
What You Need
- •youtube-full skill
- •Scheduler (cron)
Example
Bot: "Your Daily YouTube Digest: 🎬 3 new videos from channels you follow: 1. 'Building an AI Agent from Scratch' - Fireship (12 min) Summary: A comprehensive tutorial on building AI agents using modern tools... 2. 'Claude 4 vs GPT-4: Which is Better?' - MKBHD (15 min) Summary: Comparison of the two leading AI assistants with benchmarks... 3. 'The Future of AI in 2026' - Lex Fridman (90 min) Summary: Interview with AI researchers on where the field is heading... Want me to queue any for later viewing?"
📋 Copy-Paste Prompt
Every morning at 8am, fetch the latest videos from these YouTube channels and give me a digest with key insights from each: @Fireship, @ThePrimeTimeagen, @lexfridman. For each new video (uploaded in the last 24-48 hours), summarize the main topics and whether it's worth watching.
💡 Key Insights
- ✓Use youtube-full skill - includes transcript summarization
- ✓100 free credits on signup via TranscriptAPI
- ✓Works on cloud OpenClaw (unlike yt-dlp)
X (Twitter) Account Analysis
Get a qualitative analysis of any X account — their recent topics, sentiment, and engagement patterns.
How It Works
Provide an X username. OpenClaw fetches their recent tweets (via API or web scraping), analyzes themes, sentiment, and posting patterns, then delivers insights.
What You Need
- •Twitter/X API
- •Web scraping skill
Example
You: "Analyze \@sama" Bot: "\@sama (Sam Altman, OpenAI) - Last 100 tweets analysis: 📊 Topics: AI safety (35%), product launches (30%), workforce/hiring (15%), personal/other (20%) 💬 Tone: Optimistic, forward-looking 📈 Engagement: Avg 2.3K likes, 180 retweets 🎯 Key themes: 'AGI is closer than we think', 'We need to scale compute'"
📋 Copy-Paste Prompt
Analyze the last 50 tweets from @Fireship. Provide: 1) Main topics they post about (percentage breakdown), 2) Tone and writing style, 3) Average engagement (likes/retweets), 4) Any recurring themes or patterns.
💡 Key Insights
- ✓Use for competitor analysis - understand what topics competitors focus on
- ✓Great for influencer research before outreach
- ✓Can track your own account to see what content performs best
Business & Automation
Scale operations with AI — customer service, workflows, and business processes automated through chat.
Multi-Channel Customer Service
One AI inbox for WhatsApp, Instagram, Email, and Google Reviews. 24/7 responses, human handoff when needed.
How It Works
Connect all your communication channels to OpenClaw. The AI handles common questions automatically. For complex issues, it creates a ticket and notifies you — all in one thread.
What You Need
- •WhatsApp Business API
- •Instagram API
- •Gmail API or IMAP
- •Google Business API
Example
Customer (WhatsApp): "Do you ship to Australia?" Bot: "Yes! We ship to 40+ countries including Australia. Shipping takes 7-14 business days. Would you like me to start an order?" [If complex] Bot: "This seems like a custom order. Let me connect you with our team."
AI Earnings Tracker
Automatically track earnings reports for companies you care about. Get alerts, summaries, and analysis.
How It Works
OpenClaw monitors news APIs and financial data sources. When earnings are announced, it fetches the report, summarizes the key metrics, and alerts you if there are significant changes.
What You Need
- •Financial data API (Alpha Vantage, Yahoo Finance)
- •News API
Example
Bot: "Earnings Alert: NVDA just released Q4 results. Revenue: $22.1B (+34% YoY). EPS: $4.72. Guidance: expects strong AI chip demand. Summary: Blowout quarter, data center revenue up 409%."
Lead Generation & Market Research
Find pain points on Reddit and X, then build solutions. From research to MVP in hours.
How It Works
Monitor subreddits and Twitter/X for specific problems people are complaining about. When you spot a pattern, use that insight to generate product ideas — or have the agent build a prototype.
What You Need
- •Reddit API
- •Twitter/X API
- •Code execution (for prototypes)
Example
Bot: "Pattern detected in r/SaaS: 7 posts this week complaining about {expensive project management tools}. Average complaint: 'too complex for small teams'. You: "Build me a simple alternative" [2 hours later] Bot: "MVP ready: SimpleProject at /projects/simple-project. Features: Kanban boards, 3 users free, $10/user. Want me to deploy it?"
Automated Invoice Processing
Forward receipts or invoices, and OpenClaw extracts the data, categorizes expenses, and updates your books.
How It Works
Email receipts to OpenClaw or forward via WhatsApp. The agent uses OCR or text extraction to pull vendor, amount, date, and category. It updates your spreadsheet or accounting software.
What You Need
- •Email forwarding
- •OCR API (or GPT-4 vision)
- •Spreadsheet or accounting API
Example
You (forwarding email): [attached invoice from AWS] Bot: "Processed: AWS Invoice - $2,847.33 - Date: Feb 15, 2026 - Category: Infrastructure - Added to expenses sheet."
n8n Workflow Orchestration
Delegate complex workflows to n8n while OpenClaw handles the conversation. No credentials exposed to the agent.
How It Works
Set up n8n webhooks for tasks like sending Slack messages, updating CRMs, or triggering GitHub actions. OpenClaw calls these webhooks based on conversation — the agent never sees API keys, and every integration is visual and lockable.
What You Need
- •n8n instance
- •Webhook URLs
- •Workflow definitions
Example
You: "Create a ticket in Linear for the login bug" Bot: [Calls n8n webhook for Linear ticket creation] Bot: "Created Linear ticket: 'BUG-142: Login not working on Safari'. Priority: High. Assignee: dev-team. Link: linear.app/BUG-142" [All without exposing your Linear API key to the agent]
📋 Copy-Paste Prompt
Set up an n8n workflow that: 1) Has an incoming webhook trigger, 2) Sends a formatted message to Slack when triggered. Create the webhook and show me the URL. From now on, I'll ask you to send messages to Slack and you'll call this webhook with the message content.
💡 Key Insights
- ✓Agent never sees API keys - they stay in n8n's credential store
- ✓All workflows are visual and inspectable in n8n UI
- ✓Lock workflows after testing so agent can't modify them
- ✓Add validation/rate-limiting gates in n8n before external calls
- ✓Saves tokens - deterministic tasks don't burn LLM reasoning
Finance & Data
AI-assisted financial management — trading, research, and knowledge management.
Paper Trading Bot
Run an autonomous trading agent on prediction markets. Backtest strategies, analyze performance, and learn before risking real money.
How It Works
Connect to Polymarket, Metaculus, or other prediction markets. The agent researches markets, places paper trades based on your strategy, tracks performance, and reports daily.
What You Need
- •Prediction market API
- •Paper trading mode (no real money)
Example
Bot: "Daily Trading Report: Placed 3 trades today. Current P&L: +$127 (paper). Best performer: 'AI will exceed human coding by 2027' +45%. Worst: 'Remote work will decline' -12%."
Personal Knowledge Base (RAG)
Drop in URLs, PDFs, tweets, and articles. Ask questions and get answers grounded in your documents.
How It Works
When you share content with OpenClaw, it chunks and embeds the text into a vector database. When you ask a question, it retrieves the most relevant passages and generates an answer.
What You Need
- •Vector database (Pinecone, Weaviate, or local)
- •Text extraction skills
Example
You: [send 10 URLs about React best practices] Bot: "Saved 10 articles to your knowledge base. That's about 45,000 words of content." You: "What's the best way to handle state in React?" Bot: "Based on your knowledge base, the consensus is: use useState for local state, useContext for cross-component props, and Zustand or Jotai for global state. 3 of your sources recommend Zustand for simplicity."
Semantic Memory Search
Find exactly what you need, even when you don't remember the exact words.
How It Works
Store all your OpenClaw memory files with embeddings. When you search, it uses semantic similarity — not just keyword matching — to find the most relevant notes.
What You Need
- •Vector embeddings (OpenAI, local)
- •Memory file system
Example
You: "what was that thing about the lobster?" Bot: "You mentioned 'OpenClaw' — the name came from a conversation about how 'lobsters are the only animal that Exfoliates'. You thought it was funny because AI agents also need to 'exfoliate' old context."
Crypto & Portfolio Tracker
Monitor your crypto holdings, get price alerts, and analyze portfolio performance.
How It Works
Connect to CoinGecko or other crypto APIs. OpenClaw tracks your holdings, monitors prices, and sends alerts when thresholds are crossed or when there's significant market movement.
What You Need
- •CoinGecko API
- •Portfolio config (wallets, exchanges)
Example
Bot: "Alert: SOL up 8% in the last hour. Your portfolio: +$1,240 today. Total value: $18,450. Want me to analyze the move?"
Communication
AI that reaches out so you don't have to — voice calls, reminders, and automated outreach.
Event Guest Confirmation
Automated voice calls to confirm event attendance, collect RSVPs, and gather dietary requirements.
How It Works
Upload a list of phone numbers with names. OpenClaw calls each person, confirms attendance using voice AI, records responses, and compiles a summary.
What You Need
- •Voice calling skill (Twilio)
- •Guest list with phone numbers
Example
[OpenClaw calls guest] Bot: "Hi, this is calling regarding Sarah's birthday party on March 15th. Can you confirm if you'll be attending? Press 1 for yes, 2 for no." [Guest presses 1] Bot: "Great! Any dietary requirements? Press 1 for none, 2 for vegetarian, 3 for vegan, 4 for other." [Compiles results into spreadsheet]
Phone-Based Personal Assistant
Call or text your AI assistant from any phone — even a flip phone. Get calendar updates, info, and tasks done.
How It Works
Use Twilio or a VoIP service to give OpenClaw a phone number. Call or SMS that number from anywhere to reach your assistant.
What You Need
- •Twilio or VoIP number
- •SMS/call handling skill
Example
[You call your OpenClaw number] Bot: "Hello, how can I help?" You: "What's my schedule tomorrow?" Bot: "Tomorrow you have: 10am team standup, 2pm client call, 6pm dinner with Jordan at Mario's. Want me to send details to your phone?"
Meeting Transcription & Summary
Join your Zoom/Google Meet, take notes, and send you a summary after.
How It Works
OpenClaw joins as a bot participant (via Zoom/Meet API). It transcribes the meeting, identifies action items, and emails you a summary with timestamps.
What You Need
- •Zoom/Google Meet API
- •Transcription service
Example
[After meeting] Bot: "Meeting Summary: Product Roadmap Review Key decisions: Launch v2 in June, delay analytics feature to v3. Action items: - @you: Send updated timeline to stakeholders (by Friday) - @sarah: Get quotes from vendor (by Monday) Recording: [link]"
Automated Follow-Up Reminders
Never forget to follow up. OpenClaw reminds you — or reaches out for you.
How It Works
Tell OpenClaw "remind me to follow up with John in 3 days" or "email mom in a week." It creates a scheduled task and either reminds you or sends the message on your behalf.
What You Need
- •Calendar integration
- •Email or message sending
Example
You: "Remind me to ask David about the contract on Friday" [Friday 10am] Bot: "Reminder: Ask David about the contract" You: "Do it now" Bot: [Sends message to David] "Hi David, just following up on our conversation — any updates on the contract?"
Ready to get started?
Set up OpenClaw in minutes and start building your use case.