EveryDev.ai
Subscribe
Home
Tools

3,864+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. MobileCode
    MobileCode icon

    MobileCode

    AI Coding Assistants

    An open-source AI coding agent for mobile apps that builds and previews iOS and Android projects with embedded simulator and emulator panes.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT License. Download, use, modify, and distribute freely.

    Engagement

    Available On

    macOS
    Android
    iOS
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    AI Coding AssistantsMobile App DevelopmentAgent Frameworks

    Alternatives

    Background AgentsClaw Code AgentPlannotator
    Developer
    hsandhuhsandhu builds MobileCode, an open-source AI coding agent fo…

    Listed Sep 2026

    About MobileCode

    MobileCode is an open-source AI coding agent purpose-built for mobile development, forked from opencode. It detects iOS and Android projects in your workspace and can run a simulator or emulator preview server, rendering the live device directly inside the app alongside your coding session. The project is MIT-licensed and available on GitHub under the handle hsandhu/mobilecode.

    What It Is

    MobileCode is a terminal UI, desktop app, and web UI that wraps an AI coding agent with first-class mobile project awareness. When it detects an iOS or Android project (including React Native, Expo, Xcode workspaces, and Gradle projects), it activates a device pane that streams a live simulator or emulator feed next to your conversation. It inherits everything opencode does — any model provider, MCP, plugins, and skills — and adds mobile-specific build, run, and preview tooling on top.

    How the Device Pane and Build System Work

    The device pane opens automatically when you open a session in a mobile project. MobileCode starts npx serve-sim (for iOS) or npx serve-avd (for Android) on the machine running the server and streams the device into the app with Start, Stop, Reload, and Open in Browser controls.

    The session titlebar carries an Xcode-style run control for each detected platform:

    • Play builds the native project, installs it on the running simulator or emulator, and launches it. On iOS this means xcodebuild against the first shared scheme, then simctl install and simctl launch. On Android it runs ./gradlew :<module>:assembleDebug, then adb install -r -g and an explicit launch intent.
    • Stop cancels an in-flight build or terminates the running app.
    • Status moves through Building → Installing → Launching → Running, with the first compiler or Gradle error surfaced inline on failure.

    The same operations are also available over HTTP via a /api/device-preview endpoint.

    React Native and Expo Support

    For React Native projects, a single Play button starts one Metro server, builds both native projects, and launches them in embedded Simulator and Emulator panes simultaneously. Expo apps are handled with expo prebuild to generate the native project when needed, pod installation, Metro startup, and adb reverse to connect the emulator. One Metro instance serves both platforms.

    Agent-Driven Builds

    MobileCode exposes a device_run tool that lets the AI agent build and launch the app itself, wait for the result, and read the build error and log tail. This means the agent can fix a failing build without requiring the developer to manually paste logs — the agent observes the build output directly and iterates autonomously.

    Update: v1.18.30

    The latest release is v1.18.30, published on September 10, 2026. The repository was created in early September 2026 and has accumulated 233 stars and 28 forks in its first week, with active development on the dev branch. The project is written primarily in TypeScript and builds a macOS .app, .dmg, and .zip via a single bun run build:macos command. The build is unsigned by default; signed and notarized builds are supported by passing --sign with a Developer ID certificate.

    System Requirements and Installation

    MobileCode is installed via a curl script that downloads a release binary from GitHub and places it in ~/.mobilecode/bin, or it can be built from source using Bun. iOS support requires macOS with Xcode and Node 20 or newer (for serve-sim). Android support requires the Android SDK platform-tools with at least one AVD, a compatible JDK, and aapt2 from the SDK build-tools. Configuration is fully compatible with opencode's existing opencode.json format, provider credentials, plugins, and skills, stored in ~/.config/opencode.

    MobileCode - 1

    Community Discussions

    Be the first to start a conversation about MobileCode

    Share your experience with MobileCode, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT License. Download, use, modify, and distribute freely.

    • Embedded iOS Simulator and Android Emulator panes
    • React Native and Expo support
    • Agent-driven builds
    • Any model provider
    • MCP, plugins, and skills

    Capabilities

    Key Features

    • Embedded iOS Simulator and Android Emulator panes
    • React Native and Expo project support
    • Agent-driven builds via device_run tool
    • Xcode-style run controls (Play/Stop) in session titlebar
    • Live device streaming next to AI conversation
    • HTTP API for device preview and build control
    • Auto-detection of iOS/Android projects up to two directories deep
    • One Metro server for both iOS and Android (React Native)
    • Build status indicators (Building, Installing, Launching, Running)
    • Inline build error surfacing with full log access
    • Terminal UI, desktop app, and web UI
    • Any model provider support
    • MCP, plugins, and skills support
    • macOS app build with DMG and ZIP output
    • Compatible with existing opencode configuration

    Integrations

    Xcode
    CocoaPods
    Expo
    React Native
    Metro
    Android SDK
    Gradle
    ADB
    serve-sim
    serve-avd
    MCP
    opencode
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate MobileCode and help others make informed decisions.

    Developer

    hsandhu

    hsandhu builds MobileCode, an open-source AI coding agent for iOS and Android development forked from opencode. The project adds mobile-first features including embedded simulator and emulator panes, agent-driven builds, and React Native/Expo support. Development is active on GitHub with releases published via automated build scripts.

    Read more about hsandhu
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Background Agents icon

    Background Agents

    An open-source framework for background coding agents that autonomously handle tasks from code to tests to merged PRs, enabling non-engineers to ship code.

    Claw Code Agent icon

    Claw Code Agent

    A Python reimplementation of the Claude Code agent architecture that runs with local open-source models via any OpenAI-compatible API, with zero external dependencies.

    Plannotator icon

    Plannotator

    Interactive visual plan and code review tool for AI coding agents, with inline annotations, team sharing, and seamless integration with Claude Code, Copilot CLI, Gemini CLI, and more.

    Browse all tools

    Related Topics

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    839 tools

    Mobile App Development

    AI-powered tools for developing iOS, Android, and cross-platform mobile applications.

    47 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    690 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions