PocketBot: A Local AI Autopilot for iOS Using App Intents and On-Device Inference

PocketBot is an iOS autopilot agent that runs entirely on-device, using native iOS frameworks to create event-driven automations without sending data to cloud servers. The developers built it over four weeks with help from Claude Opus 4.6's 1M context window.
Architecture and Technical Details
The system uses a privacy-first approach with these key components:
- 100% Local Inference: Runs a quantized 3B Llama model natively on iPhone's Neural Engine via Metal
- Native Orchestration: Uses Apple's AppIntents and CoreLocation frameworks instead of screen scraping
- Event-Driven Engine: Only wakes up in background when OS fires system triggers (location, time, battery)
- Privacy-First: Prompts, data, and automations never hit cloud servers
Current Capabilities
Three working examples from the beta:
- The Battery Savior: "If my battery drops below 5%, dim the screen and text my partner my live location."
- Morning Briefing: "At 7 AM, scan my calendar/reminders/emails, check the weather, and push me a single summary notification."
- Monzo/FinTech Hacks: "If I walk near a McDonald's, move £10 to my savings pot."
Development Context and Challenges
The developers built PocketBot because they wanted a "Driver, not a Search Bar"—an actual agent rather than just another chatbot wrapper. They specifically avoided fighting the OS by architecting around native iOS APIs.
Current limitations include battling memory limits of A-series chips during on-device reasoning. The beta is limited to 1,000 testers to monitor battery impact across different iPhone models, with particular interest in testing on iPhone 15 Pro or newer devices to see if iOS kills the app process.
📖 Read the full source: r/ClaudeAI
👀 See Also

Open-Source JARVIS Desktop Assistant Built with Claude Code in 2 Days
A developer built a macOS desktop AI assistant called JARVIS in 1-2 days using Claude Code as the primary development tool. The application features a holographic UI, 18 native tools for system control, voice interface, and integrations with Gmail, Google Calendar, Notion, GitHub, and Obsidian.

Klaw.sh: Kubernetes-Style Orchestration for AI Agents
Klaw.sh provides an orchestration solution for AI agent deployment, modeled on Kubernetes. It simplifies management with clusters, namespaces, and channels, achieving memory reduction by rewriting from Node.js to Go.
Using an adversarial Claude chat to catch kickoff ambiguities before they cost you
A developer added a second Claude chat whose only job is to adversarially review kickoffs for ambiguous specs and silent failures, saving an estimated $150-400 in Claude Code rework across a project phase.

MegaClaw: Containerized OpenClaw Setup with Playwright and Homebrew
MegaClaw is a two-image Podman setup for OpenClaw that addresses common installation issues like permission errors and missing dependencies. It uses a multi-stage build with pre-installed Playwright and Homebrew, and bakes user configuration into a runtime image.