--- id: openclaw-practical-setup related: - openclaw key_findings: - "OAuth model costs ~$20/mo vs direct API pricing — meaningful cost difference for individual users" - "Practical value is in content pipelines and CRM automation, not general computing tasks" --- # OpenClaw: Practical Setup & Real-World Use Cases **Source:** Greg Isenberg podcast with Moritz Kremb (Berlin-based agency builder) **URL:** https://www.youtube.com/watch?v=fd4k16REDOU **Published:** March 19, 2026 | 57K views | ~65 min **Credibility tier:** 4 (Primary practitioner source — power user, not vendor or academic) --- ## Positioning Map (from Kremb) | Tool | Architecture | Communication | Proactivity | Persistence | Openness | |---|---|---|---|---|---| | ChatGPT | Cloud | Cloud chat | Reactive | Session-based (memory added later) | Closed | | Claude Code | Local | Terminal/IDE | Reactive | Local files | Semi-open (MCP) | | Claude Cowork | Local | UI layer on Claude Code | Reactive | Local files | Closed | | Claude Dispatch | Cloud+Local | Mobile+Desktop | Moving toward proactive | Persistent conversation | Closed (research preview) | | OpenClaw | Local | Any messaging app (Telegram/WhatsApp/Signal/Slack) | Proactive (heartbeat every 30min, crons) | Persistent memory (md files + vector DB) | Open source | Kremb's framing: OpenClaw = Linux. Cowork/Dispatch = Windows. Big players will build equivalents; open-source wins on flexibility/customization/community. --- ## 10-Step Optimized Setup (Kremb's guide) 1. **Troubleshooting baseline** — Upload OpenClaw docs into Claude project. Solves ~99% of setup issues. 2. **Personalize workspace** — Edit agents.md (behavior), soul.md (personality), identity.md, user.md (user context). 3. **Fix memory** — Enable compaction flash + experimental session memory. Add heartbeat auto-save (every 30min: check/create daily memory file, log session summary). Memory.md for long-term; daily files for granular logs. 4. **Model selection (OAuth)** — Hook into existing $20 ChatGPT/Anthropic subscription (not per-API-call). Backup chain: OpenAI primary → Anthropic secondary → OpenRouter/Kilo Gateway fallback. 5. **Organize Telegram** — Separate groups/topics (general, to-dos, journaling, agency, content). Group-specific system prompts to prevent context bleed. 6. **Three browser modes** — (1) Web search/fetch (API-like, public info) (2) OpenClaw managed browser (separate Chrome profile, logged-in for automation) (3) Chrome relay extension (for VPS setups). 7. **Skills** — Built-in (summarize, notion, whisper, PDF). Marketplace (clawhub.ai — check for malicious code). Custom skills for repeated tasks (the key unlock for real automation). 8. **Heartbeat optimization** — Runs every 30min. Add: memory maintenance, to-do auto-update, cron health check (re-trigger failed crons). Keep instructions concise. 9. **Security** — Add prompt injection defense to agents.md. Store API keys in .env outside workspace. Use strong models (weaker models are "gullible"). Local Mac preferred over VPS. 10. **Least access** — Minimal permissions, expand gradually. Create dedicated agent-owned accounts (own Google/X/mailbox — treat like a new employee). --- ## Cost Model | Method | Cost | Mechanism | Risk | |---|---|---|---| | OAuth (recommended) | $20/mo existing subscription | Hooks into ChatGPT Plus or Claude Pro | OpenAI explicitly OK. Anthropic gray area — ToS bans but some engineer statements allow. Some accounts banned. | | API | Variable, expensive at volume | Per-request pricing (e.g., ~$0.20/request) | Stacks up fast with heartbeat + proactive behaviors | | Open-source fallback | Variable | OpenRouter or Kilo Gateway | Quality/speed tradeoffs | --- ## Real-World Use Cases (Production Systems) ### Use Case 1: Short-Form Video Content Pipeline (7 steps) 1. **Idea capture** — Nightly cron scans listed YouTube channels (logs videos/views). Twitter posts sent to agent account (evening log). Manual Telegram logging. 2. **Planning** — Weekly: agent creates content plan from ideas file + analytics learnings. User modifies. 3. **Script writing** — Uses script library (past scripts/templates/styles). Generates drafts; user edits. 4. **Filming** — User records (10 min), screen shares. Human-in-the-loop for authenticity. 5. **Editor handoff** — Automated upload and ping to editor. 6. **Posting** — Auto-posts to YouTube/Instagram/TikTok. 7. **Analytics** — Fetches performance data, feeds back to planning (reinforcing loop). Design principle: authentic content (real human recordings), AI handles logistics/research/scheduling. "No AI slop." ### Use Case 2: Conversational CRM - **Interface:** Telegram group chat - **Data sources:** Google Sheet (leads), Gmail (fetch/update), Calendar (meetings), WhatsApp/Telegram (messages) - **Capabilities:** "Who do I need to follow up with today?" → Lists from sheet/Gmail/Calendar. Draft emails using templates. Send WhatsApp messages via browser automation. - **Key insight:** Sheet + Gmail + Calendar access unlocks a flexible, conversational CRM without buying CRM software. --- ## Notable Claims - **Jensen Huang** (NVIDIA CEO): "Every company needs an OpenClaw strategy... it's the new computer." Called it "probably the single most important release of software probably ever." Referenced "NemoClaw" (NVIDIA variant?). - **Anthropic response:** Cowork and Dispatch are explicitly framed as reactions to OpenClaw hype. Dispatch (research preview) moves toward persistent conversation with mobile access — converging on OpenClaw's model. - **Current state:** Early, buggy, rough — compared to early ChatGPT (generic, forgetful, hallucinating). But has "magical moments." Prediction: in months/years, everyone will have personal agents. --- ## Implications for Architecture Research 1. **OAuth cost model** is a structural vulnerability for model providers. If users can route unlimited agentic queries through a $20/mo subscription, the unit economics of running persistent agents are radically different than per-API-call pricing. This is a tension that will force pricing model evolution. 2. **Custom skills as the automation primitive.** Kremb's framework: "whenever you do something repeatedly, tell your OpenClaw to build a skill for it." This is the Unix philosophy applied to AI agents — small composable tools, not monolithic applications. Supports the "agents replace 80% of apps" thesis from Steinberger. 3. **Memory as unsolved problem.** Despite the hype, memory management requires manual configuration (heartbeat auto-save, compaction settings, session memory flags). This is the gap between the vision ("AI that knows you") and the reality (you have to tell it to remember). 4. **Jensen Huang endorsement** is significant signal. NVIDIA CEO calling OpenClaw "the new computer" and "the most important software release ever" — even accounting for hyperbole — positions open-source agentic AI as a core infrastructure layer, not a niche project. 5. **Anthropic building competing products** (Cowork, Dispatch) validates the architectural thesis. The question becomes: does the proprietary version (polished, secure, integrated) or the open-source version (flexible, community-driven, model-agnostic) win the primary interface layer?