Read in another language: English Β· EspaΓ±ol
Evolve your mobile stack with Artificial Intelligence.
MobiAI is an Open Source ecosystem designed to bring Artificial Intelligence to the heart of your mobile workflow. Four pieces that fit together β click any of them for the full detail:
π οΈ CLI mobiai |
A single tool to manage the whole stack: install skills, index your code, manage project memory, and keep everything up to date. | See detail β |
| π§© Skills | Expert per-platform context: fix bugs, reproduce incidents, write tests, analyze crashes, create PRsβ¦ all following each stack's best practices. | See detail β |
| π Graph | Semantic exploration of mobile code. Answers "which files to touch for this task" or "who calls this symbol" without walking the repo blindly. | See detail β |
| π§ Brain | Living per-project memory: decisions, bugfixes, workarounds, and project-specific integrations, kept separate from MobiAI's global state. | See detail β |
And two more pieces on the horizon:
- Agents β Specialized agents that execute complex tasks autonomously (in development).
- Automated pipeline β A bot that receives tickets from your messaging platform, reproduces the bug, applies the fix, and opens the PR (planned).
Compatible with Claude Code, Cursor, Copilot CLI, Codex, and Gemini CLI.
| Component | Status |
|---|---|
CLI mobiai |
Stable |
| Skills (multi-platform) | Stable |
| Graph (semantic indexer) | Alpha |
| Brain (per-project memory) | Alpha |
| Autonomous agents | In development |
| Automated pipeline (messaging bot) | Planned |
| Community skills marketplace | Planned |
MobiAI installs as a standalone CLI (mobiai) that detects your assistant (Claude Code, Cursor, Copilot CLI, Codex, Gemini CLI) and pushes skills to the right place.
# Mac / Linux
curl -fsSL https://mobiai.dev/install.sh | sh
# Windows (cmd)
curl.exe -fsSL https://mobiai.dev/install.cmd -o "%TEMP%\i.cmd" && "%TEMP%\i.cmd"
# Windows (PowerShell)
iwr -useb https://mobiai.dev/install.ps1 | iexVerify the install:
mobiai --version
mobiai doctor # diagnoses detected hosts, catalog, and permissionsFull install details, local builds, and releases in cli/README.md.
mobiai # banner + help
mobiai skills init # interactive selector to pick packs (mobile, android, ios, kmp, flutter, react-native, community)Keeping things up to date (mobiai update refreshes the catalog and self-updates the binary) and diagnostics (mobiai doctor, mobiai status) live inside the CLI β see cli/README.md.
Quick summary. Each block has its own README with the full detail.
π§© Skills β manage skills
Install, list, and uninstall skill packs in the detected hosts. A mobile meta-pack brings everything, or install per-platform packs individually.
mobiai skills init # interactive selector
mobiai skills add mobile # install the whole stack
mobiai skills list # what you have installedPacks: mobile, android, ios, kmp, flutter, react-native, community. β skills/README.md
π Graph β semantic code exploration
Indexes your mobile project and answers "which files to touch" or "who calls this symbol" without walking the repo blindly. Downstream skills (debugging, fix-issue, planning) pre-flight Graph when available.
mobiai graph init # indexes the project into .mobiai/graph/
mobiai graph context <task...> # relevant files for a taskπ§ Brain β per-project memory
Living per-repo memory: decisions, bugfixes, workarounds, and project-specific integrations, separate from MobiAI's global state. Stored under <repo>/.mobiai/brain/.
mobiai brain init # creates .mobiai/brain/ (idempotent)
mobiai brain context # prints Markdown ready for agentsβ brain/README.md
- Install the
mobiaiCLI β a single binary that detects your assistant (Claude Code, Cursor, Copilot CLI, Codex, or Gemini CLI) and registers the skills in the right place - Choose your packs β
mobiai skills initopens the selector, or install what you need withmobiai skills add <pack> - Start coding β Skills activate automatically based on context; optionally index the repo with
mobiai graph initand seed memory withmobiai brain init - Platform detection β MobiAI detects your project (Android, iOS, Flutterβ¦) and applies the right context
- Your project, your rules β Skills respect your project conventions (
CLAUDE.md,GEMINI.md,AGENTS.md)
Multi-platform plugin with skills for every mobile platform. Compatible with Claude Code, Cursor, Copilot CLI, Codex, and Gemini CLI. The community can contribute new skills.
Specialized agents that go beyond instructions: they analyze code autonomously, interact with devices, and make informed decisions based on context.
A bot that connects to your favorite messaging platform, receives errors or tickets, orchestrates agents, and produces review-ready PRs β the full bug-fix cycle with no human in the loop.
A marketplace where the community publishes and downloads skills, agents, and configurations for different kinds of mobile projects.
We'd love your help! MobiAI is built by mobile developers, for mobile developers.
- Add a new skill: see the skill-authoring guide
- Improve existing skills: open a PR with better instructions or edge-case handling
- Report problems: open an issue if a skill gives bad advice or is missing something
See CONTRIBUTING.md for more details.
Join the community Discord where we have a channel for the project (π€-mobiai).