PocketBot Beta: Privacy-First iOS AI Agent with Hybrid Local/Cloud Engine

PocketBot is a new iOS AI agent in TestFlight beta that runs in the background and hooks into iOS App Intents to orchestrate tasks without requiring screen interaction. The developers built it over four weeks, inspired by OpenClaw, to move beyond chatbot functionality.
Technical Architecture
Due to Apple's restrictive background execution limits, the team initially tried running a 3b LLM entirely locally but found RAM constraints on newer iPhones made this insufficient for complex tasks. They implemented a privacy-first hybrid engine:
- Local component: Handles all system triggers, native executions, and PII sanitization. Runs 100% on-device.
- Cloud component: Processes complex logic like summarizing 50 unread emails, alerting about Bitcoin price movements exceeding 5%, or booking flights online. Prompts are routed to a secure Azure node after local PII sanitization scrubs sensitive data, sending only placeholders instead of private information.
Beta Access and Limitations
The TestFlight beta is available at https://testflight.apple.com/join/EdDHgYJT. For Google integrations (Gmail or Google Calendar daily briefings), there's a limitation: Google caps the OAuth app at 100 users during early beta. Users wanting Google features must visit getpocketbot.com and fill out the Tally form at the bottom for first-come, first-served access to those 100 slots.
The developers encourage testing with "crazy pocks" (presumably pockets/automations) to identify and fix issues.
📖 Read the full source: r/clawdbot
👀 See Also

Obsidian Integration for Persistent Memory in OpenClaw and Claude Code
A Reddit user demonstrates how connecting OpenClaw and Claude Code to an Obsidian vault creates persistent long-term memory across sessions. The setup automatically links memories, context, project files, and notes, with all instances able to access shared memory when needed.

Routerly: Self-Hosted LLM Gateway with Runtime Routing Policies and Budget Control
Routerly is a free, open-source, self-hosted LLM gateway that provides runtime model selection based on routing policies like cheapest, fastest, or most capable, along with project-level budget limits with per-token tracking. It's OpenAI-compatible for drop-in use with tools like Cursor, LangChain, and Open WebUI.

agentcache: Python Library for Multi-Agent LLM Prefix Caching
agentcache is a Python library that enables multi-agent LLM frameworks to share cached prompt prefixes, achieving up to 76% cache hit rates and cutting inference time by more than half in tests with GPT-4o-mini.

cc-soul plugin adds persistent memory and adaptive personas to OpenClaw
The cc-soul plugin for OpenClaw provides permanent memory storage across sessions, 10 auto-switching personas, and learning from corrections. Installation requires one command with zero configuration.