Mobile Harness: Bringing Browser-Use Skills to Mobile Apps for Claude Agents

Mobile Harness is a new open-source project that brings the browser-use/browser-harness approach to mobile apps. It provides reusable skills for AI agents like Claude to interact with mobile apps such as Reddit, Instagram, and TikTok. Example skills include finding a user profile and extracting public profile data, getting the latest post, scrolling and extracting content, and going through onboarding flows.
Under the hood, it uses MobAI as the execution layer, which is closed source but provides a protocol/interface for controlling mobile devices: observe screen, interact with UI, run actions, etc. Mobile Harness builds on top of that to make reusable app-level skills that agents can call. It works with real devices, emulators, and simulators, and there's a free daily quota so you can try it without paying.
Check the repo at https://github.com/MobAI-App/mobile-harness.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Code Lazy-Loads Tool Schemas via ToolSearch to Save Tokens
Claude Code defers tool schema loading by sending only tool names upfront and requiring a ToolSearch call to fetch schemas before use. This architecture cuts token burn significantly.

Using Claude to Automate Mobile App QA with Capacitor WebViews
A developer built an automated QA system using Claude to test a Capacitor-based mobile app across Android and iOS. The approach uses Chrome DevTools Protocol for Android WebViews and screenshots for visual analysis, with Android setup taking 90 minutes versus 6+ hours for iOS.

Fewshell: A Self-Hosted SSH Copilot That Refuses to Run Commands Without Human Approval
Fewshell is a mobile+desktop SSH copilot with mandatory human approval for every command – no setting to enable auto-approval. Built by an ex-Amazon AI SDE working on AI safety research.

AutoDream: 11-hook memory system for Claude Code with safety features
AutoDream is an open-source tool that adds project memory persistence and command safety to Claude Code. It uses 11 hooks across 6 events to inject context, block dangerous commands, and survive the /compact operation.