AI Engineering12:50–13:08Cinema 1

Beyond Forgetful Bots: Architectural Patterns for Persistent, Proactive Claw-Style AI Agents

Navan Tirupathi
CTO , Architecture and AI Expert · Arivminds

Most AI agents are reactive chatbots—great for one-off queries, but they reset, forget, and lack initiative, failing in real-world use like personal assistants or autonomous workflows.

This talk dives into the battle-tested architecture of Claw-family agents (OpenClaw and lightweight forks like NanoClaw, PicoClaw, TinyClaw, IronClaw, ZeroClaw), which power persistent, proactive systems that run 24/7 on your devices. Drawing from real implementations, we'll unpack core patterns:

Hub-and-Spoke Separation: A stateless gateway routes inputs (messages, heartbeats, cronjobs, hooks, webhooks) while adapters normalize diverse channels (WhatsApp, Discord) and enforce typed protocols/security handshakes.
Ephemeral vs. Persistent State: Transient context (system prompts, recent interactions) stays token-efficient; durable memory (append-only logs + curated facts) uses hybrid retrieval (semantic + keyword) with flush safeguards to survive compaction/restarts.
Runtime Loop & Extensibility: RPC streaming for task queuing/execution; plugin discovery (tools, providers, memories) and Markdown-based skills (SOPs) enable hot-loading without recompiles, plus multi-agent delegation for collaboration.
Security Boundaries: Defense-in-depth with network isolation, sandboxed sessions (e.g., Docker for untrusted chats), identity pairing, and safeguards against injection/poisoning.
Proactivity and Deployment: Inputs trigger autonomous actions; architectures span local native, VPS/Docker, or cloud for low-resource edge devices.
Whether forking OpenClaw or building similar agents, this playbook delivers insights on separation of concerns, model-agnostic brains, and tradeoffs for scalable, secure AI that feels truly alive—beyond single sessions.