What Can OpenClaw Do? A Deep Dive into 10 Real-World Use Cases from a Power User

marsbitPubblicato 2026-02-23Pubblicato ultima volta 2026-02-23

Introduzione

Based on Matthew Berman's real-world use cases, this article details how OpenClaw, a powerful AI framework, can be deployed to automate a wide range of tasks, effectively replacing the functions of a small operations team. The ten core use cases are: 1. **Natural Language CRM:** Built in 30 minutes with no code, it integrates with Gmail and calendar, filters important contacts/emails, and enables semantic search and relationship health scoring. 2. **Meeting Action Item Tracker:** Automatically extracts tasks from transcribed meetings, distinguishes between user and others' responsibilities, tracks completion, and learns from user feedback. 3. **Personal Knowledge Base:** Users simply share links (articles, videos, PDFs) via Telegram; OpenClaw automatically processes, stores, and enables natural language search on the content. 4. **Business Advisory Board:** Eight AI expert agents analyze 14 different business data sources nightly, debate findings, and deliver prioritized, consolidated recommendations. 5. **Security Committee:** A multi-agent system runs a nightly audit of the entire codebase, logs, and data for vulnerabilities, offering fixes and evolving its rules. 6. **Social Media Tracker & Daily Briefing:** Automatically pulls analytics from multiple platforms for a daily performance report and feeds this data to the advisory board. 7. **Video Topic Pipeline:** Turns a Slack message into a fully researched video outline, complete with title suggestions and backgro...

Author: Yanhua

Curated from: Podwise

OpenClaw is exploding in popularity lately, and everyone is talking about it. But honestly, most of the content focuses on theory, architecture, and vision. Not many people clearly explain what you can actually *do* with this thing or how to implement it in daily work.

Matthew Berman recently released a video where he lays out all the use cases he's built with OpenClaw. No concepts, all practical application. CRM, knowledge base, business advisory board, security review, social media tracking, video topic pipeline, daily briefings, food diary... One person, one MacBook, doing the work of a small company's mid-office team.

Let's break down his core use cases. No hype, no bashing. We'll go through each one: what it is, how it runs, and what's good about it.

Use Case 1: Natural Language CRM, from Zero to Usable in 30 Minutes

This is the first use case Berman demonstrated, and the most intuitive one.

Build Process: He used natural language to tell OpenClaw, "Build me a CRM that pulls data from Gmail, Google Calendar, and Fathom, filters out marketing emails and cold outreach, and only keeps valuable conversations and contacts." Not a single line of code was written. It was up and running in 30 minutes.

Data Ingestion: The system scans emails every 30 minutes and checks Fathom (an AI meeting transcription tool) every 5 minutes during work hours. All data is first judged by an LLM before being stored: Is this email worth saving? Is this contact important?

Core Capabilities:

  • 371 contacts, all queryable with natural language. "What did I last discuss with John?" "Who was my final contact at Company X?"

  • Relationship health scoring, automatically flags people not contacted for a long time

  • Duplicate contact detection and merge suggestions

  • Vector embedding search, supports semantic-level fuzzy matching

The Most Impressive Detail: When Berman is in other contexts (like brainstorming video topics), the CRM proactively interjects: "You talked about a similar topic with a certain sponsor before, maybe they'd be willing to sponsor this episode." The system links across modules, not just passively storing data but actively creating connections.

Berman's exact words: "If I can build a fully custom CRM in 30 minutes, and spend another hour or two iterating, then why would I ever pay a CRM company?"

Use Case 2: Automatic Meeting Action Item Tracking

This use case works closely with the CRM but deserves its own mention.

Workflow: Meeting ends → Fathom transcribes full text → OpenClaw matches CRM contact → Extracts action items → Sends to Berman on Telegram for approval → Approved items automatically enter Todoist

Key Design Points:

  • Distinguishes between "my" and "their" action items. Things the other party promised to give you are marked as "waiting on," automatically tracking if they deliver.

  • Self-learning filter. If Berman rejects an action item ("This isn't my task"), the system learns the reason and updates the extraction rules. It won't capture similar cases next time.

  • Automatically checks completion 3 times daily. For example, if you said in a meeting "I'll send the email today," the system checks if you actually sent it, and marks it done if you did.

  • Automatically archives after 14 days. Items not completed past the deadline are automatically cleaned up, keeping the list tidy.

The value of this setup isn't in any single feature, but in how it fully automates the "meeting follow-up"环节, which is最容易烂尾的环节 (prone to stalling).

Use Case 3: Personal Knowledge Base, Just Throw a Link In

Berman had a long-standing pain point: see good content, save it, then never find it again.

His solution is extremely simple: throw all links into Telegram, let OpenClaw handle the rest.

The system automatically processes these types of content:

  • Articles: Directly fetches full text, uses browser automation to log in and extract from paywalled sites

  • YouTube Videos: Fetches subtitles/transcript text

  • X (Twitter) Posts: Doesn't just grab a single post, automatically tracks the entire thread, ingests linked articles too

  • PDFs: Directly parses text

All content is vectorized and embedded, stored in a local SQLite database. Afterwards, you can search with natural language: "Show me all articles about OpenAI," retrievable with one click.

Team Collaboration Bonus: Each piece of ingested content is automatically synced to Slack in the form of "Matt wants you to see this." The team knows the boss personally read it, it's not just randomly pushed by AI.

The key to this use case isn't technical complexity, but extremely low usage barrier. No need to tag, no need to categorize, no need to organize. Just throw it in, AI does the rest.

Use Case 4: Business Advisory Board, 8 Experts Hold a Meeting for You Every Night

Personally, I think this is the most insane use case in the entire video.

Data Input: 14 business data sources. YouTube analytics, Instagram per-post engagement, X analytics, TikTok data, email campaigns, meeting notes, Cron job health status, Slack messages... Basically covers all dimensions of his business.

Analysis Process: 8 AI expert roles (Finance, Marketing, Growth, Operations, etc.), each independently analyzes all the data, running in parallel. After analysis, they discuss findings amongst themselves, reconcile disagreements, and merge into a prioritized list of recommendations.

Delivery Method: Runs automatically every early morning, results sent as a numbered summary to Telegram. Berman scans it after waking up, and can ask for details on any point: "Elaborate on point 3."

The启发性的 (enlightening) aspect of this use case is the multi-agent collaboration model. It's not one AI giving you advice, but a group of AIs debating and then giving you advice. Like a real board of directors: Finance says save money, Marketing says spend money, finally compromising on a practical plan.

Use Case 5: Security Committee, AI Reviews AI Every Night

Similar architecture to the Business Advisory board, but completely different direction.

Run Time: Every night at 3:30 AM (staggered from other tasks to avoid Anthropic API quota conflicts).

Review Team: Security experts from four perspectives. Offensive perspective, defensive perspective, data privacy perspective, operational authenticity perspective.

Review Scope: The entire codebase, Git commit history, runtime logs, error logs, stored data. Not just static rule scanning, but having the AI actually read code and understand logic.

Output: Opus 4.6 synthesizes all findings, numbers them, and sends to Telegram. Critical issues trigger immediate alerts. Berman can directly reply "fix it," and the system auto-fixes.

Self-Improvement: Experience from each fix is remembered, review rules continuously iterate. Some nights have no new suggestions because the system confirms the current state is secure.

The best part of this use case is using AI to review AI itself. Berman is very candid: prompt injection protection can never be perfect. But rather than pretending the risk doesn't exist, it's better to have the system perform a daily self-check.

Use Case 6: Social Media Tracking + Daily Briefing

Tracking Scope: Four platforms: YouTube, Instagram, X, TikTok. Automatically pulls daily snapshots, stores in SQLite database.

Data Dimensions: YouTube tracks views, watch time, engagement rate per video; other platforms track post-level performance data.

Dual Purpose:

  • Daily Briefing. Sent to Telegram every morning, telling him what content performed well or poorly yesterday.

  • Fed to the Business Advisory Board. Social media data is one of the 14 data sources, directly participating in the nightly business analysis.

This demonstrates the flywheel effect of the entire system: the social media tracking module doesn't run in isolation; the data it generates serves both the briefing and the advisory board downstream use cases.

Use Case 7: Video Topic Pipeline, from an Idea to an Asana Card

Trigger: In a Slack discussion, anyone replies to a post with "@Claude, this is a video idea."

Automated Process:

  • Reads the full context of the Slack discussion thread

  • Web search + X trend research

  • Queries knowledge base to see if relevant stored material exists

  • Checks for duplicates, verifies if it overlaps with existing topics

  • Generates a complete video outline: title suggestions, thumbnail suggestions, opening hook, video flow framework

  • Makes an assessment: "Is this topic worth doing?"

  • Creates a project card in Asana,附带 (including) all research materials and links

Berman demonstrated a real case in the video: news of Quen 3.5's release was shared on Slack, someone marked it as a video idea, the system automatically generated a complete topic package, including discussions from different KOLs on Twitter, reactions from the open-source community, and suggested video perspectives.

The value of this use case: Compresses the distance from "inspiration capture" to "executable plan" to almost zero.

Use Case 8: Memory System, Making the AI Understand You Better Over Time

Most people's experience with ChatGPT is: every conversation feels like a first meeting. Berman's OpenClaw is not.

Memory Levels:

  • Conversation Memory: Daily conversations automatically saved as markdown files

  • Preference Extraction: Extracts writing preferences, tone style, interests, stock tracking, email categorization rules, etc., from conversations, stores in memory.md

  • Identity Update: At the start of each new conversation, the system reads memory files, updates identity.md and soul.md

  • Vectorized Retrieval: All memory files vectorized, supports RAG search

Contextual Personality Switching: Berman gave the AI two sets of personalities. In Telegram private chats, it's like a friend, humorous and casual; in Slack team channels, it automatically becomes a professional colleague style. These are defined in soul.md.

This use case turns the AI from a "tool" into a "partner." It doesn't just execute commands, it truly understands who you are and what you want.

Use Case 9: Food Diary, AI Helps You Discover Allergens

This is the most unexpected use case.

Usage: Take a photo of food and send it to OpenClaw, it automatically识别 (recognizes) and logs it. Receive reminders 3 times a day to report stomach feelings. All data stored in a food log.

Analytical Capability: Triggers analysis once a week, cross-references food records and symptom reports to identify patterns.

Real Result: The system, by analyzing food成分 (ingredients) in photos and Berman's symptom feedback, discovered his stomach is sensitive to onions. This was something he himself was completely unaware of.

A chatbot helped someone identify a food allergen. This previously required specialized hospital testing.

Use Case 10: Scheduled Tasks + Auto Backup + Auto Update

This part isn't as sexy, but might be the most important infrastructure.

Cron Task List:

| Frequency | Task |

|------|------|

| Every 5 min | Check Fathom meeting notes |

| Every 30 min | Scan emails |

| 3 times daily | Action item completion check |

| Nightly | Doc sync, CRM scan, security review, log ingestion, video data refresh, morning briefing generation |

| Weekly | Memory synthesis, revenue preview |

| Hourly | Git commit + database backup |

Backup Strategy: All SQLite databases automatically discovered, encrypted, packaged, uploaded to Google Drive, last 7 days retained. Code pushed to GitHub hourly via Git. Any backup failure triggers immediate Telegram alert.

Auto Update: Checks for new OpenClaw versions every night at 9 PM, shows changelog, one "update" command auto-upgrades and restarts.

API Tracking: Records each LLM call: which model was used, how many tokens consumed. Even downloaded official prompting guides for various models, letting the system optimize prompt writing based on the actual model used.

The design philosophy of this infrastructure is one thing: while you sleep, the system works; when the system has problems, you know第一时间 (first thing).

Image & Video Generation: On-Demand Visual Content Creation

Berman integrated Veo (video generation) and NanoBanana Pro (Gemini image generation) into OpenClaw.

Usage is simple: Say "Italian Tuscan villa video" in Telegram, the system calls Veo to generate, automatically downloads and sends to Telegram, then deletes local file to save space. Images同理 (similarly), tell it what you want, NanoBanana Pro generates and pushes directly.

This use case itself isn't stunning, but its value lies in being embeddable into other workflows. For example, when the video topic pipeline generates thumbnail suggestions, it can directly call image generation to produce the image.

Back to the Big Picture: The Relationships Between These Use Cases Are Key

If you only look at individual use cases, you might think "Pretty cool, but not that special." ChatGPT can also help you look up contacts, Notion AI can also help you organize a knowledge base.

But the real power of Berman's system lies in the data flow *between* use cases:

  • CRM Data → Fed to Business Advisory Board

  • Knowledge Base Content → Fed to Video Topic Pipeline

  • Social Media Data → Fed to Daily Briefing + Advisory Board

  • Meeting Notes → Fed to CRM + Action Item System

  • All module run logs → Fed to Security Committee

Each module is not an island. They form a mutually reinforcing data flywheel. This is why one person + one MacBook can output the effect of a small team.

Berman has one quote I find particularly apt: "You'll start to see how all the different parts I've built interact and make each other more powerful."

Security Reminder: Buckle Up Before You Run

The effort Berman puts into security deserves special emphasis:

  • Prompt Injection Defense: All external content treated as potentially malicious, deterministic code pre-scan before入库 (ingestion)

  • Minimal Permissions: Email, Calendar read-only, no write permissions

  • Output Control: Summarizes without verbatim repetition, automatically filters keys and tokens

  • Publish Approval: Manual confirmation required before sending emails, tweets

  • Encrypted Backups: Double password protected, .env file never committed to repository

He states it very clearly himself: "There is no perfect security solution. Large language models are non-deterministic systems, completely preventing prompt injection is impossible. But that doesn't mean you do nothing."

After seeing these use cases, my biggest takeaway is: "Full-stack" in the AI era no longer means knowing front-end and back-end development, but means being able to build and manage a complete set of AI workflows. Berman doesn't write code, but he has an extremely clear understanding of his own needs and knows how to translate those needs into a running system using natural language.

This might be the most valuable skill to learn in 2026.

Based on Matthew Berman's video "21 INSANE Use Cases For OpenClaw", curated by podcast Podwise. The original video contains the full prompt for each use case, recommended viewing. If you're also using OpenClaw or similar frameworks to build your own AI system, comment on which use case you built first.

Domande pertinenti

QWhat is the first use case demonstrated by Matthew Berman using OpenClaw, and how long did it take to build?

AThe first use case is a natural language CRM. It was built in 30 minutes by instructing OpenClaw to extract data from Gmail, Google Calendar, and Fathom, filter out marketing emails, and only keep valuable conversations and contacts, all without writing a single line of code.

QHow does the 'Business Advisory Board' use case work and what is unique about its analysis process?

AThe Business Advisory Board use case uses 8 AI expert roles (finance, marketing, growth, operations, etc.) to independently analyze data from 14 business data sources. They then discuss their findings, reconcile disagreements, and merge them into a prioritized list of recommendations. Its uniqueness lies in this multi-agent collaborative model, mimicking a real board of directors.

QWhat is the core function of the 'Security Committee' use case and when does it run?

AThe core function of the Security Committee is to have AI审查 (review/examine) the AI system itself. A team of four AI security experts (offensive, defensive, data privacy, and operational authenticity perspectives)审查 the entire codebase, Git history, logs, and stored data. It runs every night at 3:30 AM to avoid API quota conflicts with other tasks.

QAccording to the article, what is the most important aspect that makes Berman's system so powerful, beyond the individual use cases?

AThe most important aspect is the data flow and interaction *between* the use cases. Data from one module (e.g., CRM, knowledge base, social media tracking) feeds into others (e.g., Business Advisory Board, video topic pipeline). This creates a mutually reinforcing data flywheel, allowing one person to achieve the output of a small team.

QWhat surprising personal health insight did Berman gain from the 'Food Diary' use case?

AThrough the Food Diary use case, which involved logging meals via photos and symptom reports, the system analyzed the data and discovered that Berman's stomach was sensitive to onions, an allergy he was previously unaware of.

Letture associate

Should You Buy SpaceX Stock at $1.7 Trillion? Here's What the Market Is Worried About

SpaceX is preparing for a massive IPO aiming to raise around $75 billion at a valuation of approximately $1.75 trillion. While its achievements in reusable rockets and the profitable Starlink satellite internet service are clear, the market is concerned about the aggressive valuation. Key issues include: the current $1.75 trillion valuation, which is about 94 times 2025 revenue, seems to price in not just existing businesses but also unproven future ventures like AI infrastructure and orbital data centers. Financially, while Starlink is profitable, the AI division, bolstered by the acquisition of xAI, is incurring massive losses and consuming the majority of capital expenditures. This acquisition also introduced complex related-party financing arrangements and debt onto SpaceX's balance sheet. Furthermore, corporate governance poses a challenge. SpaceX's dual-class share structure ensures founder Elon Musk retains absolute control, limiting ordinary shareholders' influence over high-risk, long-term strategic decisions. The future success of ambitious projects like the Starship rocket—critical for lowering costs and enabling new services—remains a significant variable for the valuation. In summary, the market's apprehension (FUD) centers not on doubting SpaceX's past technological triumphs but on questioning how much premium public investors should pay for a future that combines proven profits with highly speculative and capital-intensive new ventures, all under a governance structure that offers limited shareholder oversight.

marsbit10 min fa

Should You Buy SpaceX Stock at $1.7 Trillion? Here's What the Market Is Worried About

marsbit10 min fa

Breaking the DeFi Cascading Liquidation Curse: Vitalik Proposes a New Solution

Vitalik Buterin has proposed a new DeFi design to eliminate the automatic liquidation mechanism that causes market instability during sharp downturns. The current system, used by protocols like Aave, triggers forced sales when collateral value falls below a threshold, often exacerbating price drops and creating systemic selling pressure. Buterin's alternative model is based on splitting an asset like ETH into two synthetic option-like tokens, P and N, pegged to a price index. Their combined value always equals one ETH. Instead of sudden liquidation, a position's value gradually drifts from its target peg if the market moves. Users must proactively rebalance their holdings to maintain their desired exposure, transferring the management burden from the protocol to the user or automated tools. A key advantage is the reduced reliance on real-time oracles. Pricing decisions are deferred until contract expiry, allowing for more robust, fault-tolerant oracle designs. This removes a clear liquidation threshold that speculators can target for manipulation or MEV extraction. However, significant challenges remain. Frequent rebalancing could incur high slippage and transaction costs, necessitating new liquidity provider models. The design is better suited for hedging instruments than for stablecoins requiring a rigid 1:1 peg. While not an immediate replacement for existing systems, the proposal challenges the foundational assumption that instantaneous forced liquidation is an unavoidable necessity in DeFi, opening the door for fundamentally different risk management architectures.

marsbit15 min fa

Breaking the DeFi Cascading Liquidation Curse: Vitalik Proposes a New Solution

marsbit15 min fa

The End of Single-Factor Cryptography

The article "The End of Single-Factor Crypto" posits a fundamental shift in the cryptocurrency ecosystem. It argues the era where crypto asset valuations were predominantly driven by, and correlated with, Bitcoin's price is ending. The space is bifurcating into two distinct economies: endogenous and exogenous. The endogenous economy represents traditional crypto, where token and project values are directly tied to crypto market prices. The emerging exogenous economy comprises projects and businesses that may utilize blockchain technology or tokens but derive their fundamental value from external, non-crypto factors like consumer demand, subscription revenue, or real-world utility. Examples include AI inference platforms like Venice, fintech lenders using blockchain for efficiency, and stablecoin/payment infrastructure companies acquired by giants like Mastercard and Stripe. This shift means investment analysis must change. For exogenous assets, evaluating traditional business fundamentals—such as revenue streams, unit economics, and competitive moats—becomes more critical than tracking Bitcoin charts. While endogenous assets like Bitcoin remain relevant, the growth of the exogenous category is driven by measurable demand independent of crypto price cycles, paving the way for a new, more diversified market phase. Consequently, crypto is evolving from a single-factor, reflexive asset class into a multifaceted ecosystem with varied drivers and investment theses.

marsbit15 min fa

The End of Single-Factor Cryptography

marsbit15 min fa

Morning Post | Bitmine Plans to Raise $300 Million Through Preferred Stock Issuance; Polymarket Accuses Kalshi of Commercial Espionage

ChainCatcher's Daily Crypto Brief: Key developments from the past 24 hours include significant funding moves, regulatory actions, and market predictions. Bitmine announced a $300 million preferred stock fundraising. Polymarket accused rival prediction platform Kalshi of corporate espionage, citing numerous suspicious coincidences in product launches, a claim Kalshi strongly denied. The U.S. Department of Justice, in a joint "Disruption Week" anti-fraud operation with companies like Coinbase and Meta, froze over $3.8 million in cryptocurrency linked to scams. In infrastructure news, Macau completed its integration with the multi-central bank digital currency bridge, mBridge, aiming to build efficient cross-border payment channels. Cosmos Labs acquired the block explorer Mintscan. Market-wise, Geoffrey Kendrick, Standard Chartered's Head of Digital Assets Research, stated Bitcoin is nearing a bottom around $63,000, maintaining a year-end target of $100,000. He noted stability in U.S. spot Bitcoin ETF holdings. Ahead of SpaceX's anticipated IPO, internal insiders at Rocket Lab (RKLB) sold over $18.41 million in stock. In tokenization, Goldman Sachs partnered with Apex and Archax to launch a tokenized real estate fund. The meme token tracker GMGN reported the top trending tokens: on Ethereum, HEX, SHIB, LINK, PEPE, mUSD; on Solana, TROLL, swarms, WORLDCUP, neet, Buttcoin; and on Base, PEPE, toby, ODDS, ELSA, SKI.

链捕手30 min fa

Morning Post | Bitmine Plans to Raise $300 Million Through Preferred Stock Issuance; Polymarket Accuses Kalshi of Commercial Espionage

链捕手30 min fa

55TB to 28TB? The Rumor and Panic Behind Rubin's Memory Being Halved

Title: 55TB to 28TB? The Rumor and Panic Behind the Potential Halving of Rubin's Memory. On June 4th, a report from SemiAnalysis suggested NVIDIA's next-gen Vera Rubin NVL72 AI rack may ship with roughly 28TB of SOCAMM DRAM per rack instead of the anticipated 55TB, primarily using 96GB modules. This sparked a market panic, causing Micron's stock to drop over 10% on fears of halved memory demand. However, the article argues this panic is misguided for several key reasons. First, SOCAMM modules are socketed and upgradeable, not soldered. Lower initial configuration doesn't mean permanent demand loss. Second, the primary driver is a severe 2026 LPDDR5X supply shortage, not diminished need. NVIDIA is likely prioritizing rack shipments with available components. Third, with fixed total LPDDR5X supply, using less per rack could allow NVIDIA to ship *more* racks, not necessarily reducing overall memory orders. Micron's sharp drop was also attributed to a broader semiconductor sell-off triggered by Broadcom's earnings, with the SemiAnalysis report providing a convenient narrative for profit-taking after Micron's massive rally. In summary: the report on lower default configurations is likely accurate, but interpreting it as a demand collapse is wrong. The real risk for Micron lies in its reportedly minimal HBM4 share for Rubin, not in potentially flexible SOCAMM demand. The sell-off appears more like a correction amplified by coinciding negative catalysts.

marsbit47 min fa

55TB to 28TB? The Rumor and Panic Behind Rubin's Memory Being Halved

marsbit47 min fa

Trading

Spot
Futures
活动图片