← All summaries

Anthropic Just Gave Your AI Agent the One Thing OpenClaw Has. Without the Risk.

AI News & Strategy Daily · Nate B Jones · March 20, 2026 · Original

Most important take away

Anthropic’s new /loop command in Claude Code is the missing piece that lets you build a proactive, OpenClaw-like AI agent using just three primitives: memory (a SQL database behind an MCP server), proactivity (scheduled autonomous action via /loop), and tools (APIs, artifact generation, workflows). This approach delivers much of OpenClaw’s capability without the serious security risks that come with running the OpenClaw framework.

Summary

  • Three building blocks of a real agent: Memory (persistent database via MCP), proactivity (/loop for scheduled autonomous action), and tools (APIs, data pulls, artifact generation). Remove any one and the agent degrades back to a chatbot.
  • /loop is the new heartbeat: Anthropic shipped /loop in Claude Code, allowing agents to wake up, check on things, act, and go back to sleep on a schedule — without you prompting each time. This was the last missing piece for building autonomous personal agents.
  • Open Brain + /loop = DIY OpenClaw: If you already have a SQL database connected via MCP (the “Open Brain” setup), adding /loop gives you a proactive agent that accumulates knowledge over time. Cost is roughly 10-30 cents per month for the database, with no platform lock-in.
  • Actionable use cases covered:
    • Health tracking: Agent checks in daily, logs energy/sleep/meals to a database, and after weeks of data identifies patterns (e.g., late eating correlates with low energy) rather than just giving generic advice.
    • Sales pipeline management: Agent reviews inbound leads each morning, cross-references prior outreach history, drafts personalized emails using highest-performing templates, and compounds work across cycles.
    • Job search automation: Agent runs every Thursday, reviews your recent accomplishments from the database, updates your cover letter with fresh metrics and testimonials, and can scrape job postings.
    • Networking prep: Agent queries your interaction history before events, generates briefing materials (even video via Remotion MCP tool) with talking points and follow-ups you owe.
    • Content calendar management: Agent checks scheduled posts each morning, cross-references breaking news, and flags conflicts or needed updates before publication.
    • Overnight coding loops: Agents iterate on code, run tests, and converge on working software while you sleep — the same pattern Karpathy’s Auto Research project uses to run 100 ML experiments overnight.
  • Compound value is the key insight: The real power is not in any single agent cycle but in accumulation across cycles. Memory lets the agent build on previous findings, turning random snapshots into intelligent pattern matching. Shopify CEO Toby Lutke demonstrated this by using Karpathy’s Auto Research repo to have an agent-optimized small model outperform a hand-tuned larger model through 100 accumulated experiment cycles.
  • Security advantage over OpenClaw: OpenClaw has been called a security nightmare by researchers due to open network access, prompt injection vulnerabilities, and unsafe extensions. The /loop + Open Brain approach keeps scheduling native to Anthropic, memory in a database you control, and avoids the OpenClaw orchestration layer entirely.
  • Current limitations to know: /loop has no built-in “done” signal (you must define completion conditions yourself), everything is scoped to the active session (closing your laptop stops it), and it requires using Claude Code’s terminal interface, which is still developer-oriented.
  • Career advice — use the terminal to “time travel”: Agent capabilities arrive in developer tools (like Claude Code) months before they reach consumer-friendly interfaces like ChatGPT or Claude’s chatbot. Being willing to use the terminal gives you early access to capabilities others will not see for months.

Chapter Summaries

Introduction and Community Announcement Nate introduces the episode’s goal: moving beyond Open Brain (a SQL database + MCP memory system) to building a full agent with proactivity and tools. He announces a community space for sharing agent “recipes” and use cases.

The Three Agent Primitives Breaks down the three components every agent needs: memory (persistent state across sessions), proactivity (acting without being prompted), and tools (interacting with external systems). Without all three, you have a chatbot, not an agent.

Anthropic’s /loop Command Explains that Anthropic quietly shipped /loop in Claude Code, which lets agents run on a schedule without user intervention. This is the missing proactivity primitive that completes the agent stack.

Personal Use Case: Health Tracking Demonstrates the difference between a memoryless agent (gives generic advice each day) and one with memory (recognizes that you have been tired 9 of the last 12 mornings and identifies late eating as the real cause, not caffeine).

Business Use Case: Customer Success Shows how memory transforms a customer health check from a one-time metric report into pattern-matched early warning with actionable recommendations and deadlines.

Tools Give the Agent Hands Covers how tools like Remotion (video generation), calendar access, Slack, and drive connections let the agent take real-world action — such as generating a personalized video briefing before a networking event.

Compound Value Across Cycles Explains that the real power is accumulation: job search agents that update materials weekly, sales agents that build on prior outreach, and content agents that track evolving news. Each cycle builds on the last.

Karpathy’s Auto Research and Shopify Example Highlights Andre Karpathy’s open-source Auto Research project as proof of compound loops: an agent running 100 ML experiments overnight, with Shopify’s CEO using it to beat hand-tuned models through accumulated iteration.

OpenClaw Comparison and Security Directly compares this approach to OpenClaw, acknowledging OpenClaw’s broader feature set but emphasizing that the /loop + Open Brain stack avoids OpenClaw’s well-documented security vulnerabilities while delivering similar core capabilities.

Limitations and the Terminal as Time Travel Honestly covers current gaps (no done signal, session-scoped, terminal-only) and frames willingness to use developer tools as a strategic advantage that lets non-developers access agent capabilities months early.