{
  "markdown": "<div align=\"center\">\n  <img src=\"docs/assets/mobiai-hero.png\" alt=\"MobiAI — Brain · Skills · Graph for Android, iOS, React Native, Flutter, and KMP\" width=\"100%\">\n</div>\n\n> **Read in another language:** **English** · [Español](README.es.md)\n\n# MobiAI-Core\n\n<div align=\"center\">\n\n<img src=\"https://img.shields.io/badge/Android-3DDC84?style=for-the-badge&logo=android&logoColor=white\" alt=\"Android\">\n<img src=\"https://img.shields.io/badge/iOS-000000?style=for-the-badge&logo=apple&logoColor=white\" alt=\"iOS\">\n<img src=\"https://img.shields.io/badge/Kotlin_Multiplatform-7F52FF?style=for-the-badge&logo=kotlin&logoColor=white\" alt=\"Kotlin Multiplatform\">\n<img src=\"https://img.shields.io/badge/Flutter-02569B?style=for-the-badge&logo=flutter&logoColor=white\" alt=\"Flutter\">\n<img src=\"https://img.shields.io/badge/React_Native-61DAFB?style=for-the-badge&logo=react&logoColor=black\" alt=\"React Native\">\n\n<img src=\"https://img.shields.io/badge/Kotlin-7F52FF?style=for-the-badge&logo=kotlin&logoColor=white\" alt=\"Kotlin\">\n<img src=\"https://img.shields.io/badge/Swift-F05138?style=for-the-badge&logo=swift&logoColor=white\" alt=\"Swift\">\n<img src=\"https://img.shields.io/badge/Dart-0175C2?style=for-the-badge&logo=dart&logoColor=white\" alt=\"Dart\">\n<img src=\"https://img.shields.io/badge/TypeScript-3178C6?style=for-the-badge&logo=typescript&logoColor=white\" alt=\"TypeScript\">\n<img src=\"https://img.shields.io/badge/Go-00ADD8?style=for-the-badge&logo=go&logoColor=white\" alt=\"Go\">\n\n<img src=\"https://img.shields.io/badge/License-MIT-blue?style=for-the-badge\" alt=\"License: MIT\">\n<img src=\"https://img.shields.io/badge/Open_Source-❤-red?style=for-the-badge\" alt=\"Open Source\">\n\n</div>\n\nEvolve your mobile stack with Artificial Intelligence.\n\n## What is MobiAI?\n\nMobiAI 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:\n\n| | | |\n|---|---|---|\n| 🛠️ **[CLI `mobiai`](cli/README.md)** | A single tool to manage the whole stack: install skills, index your code, manage project memory, and keep everything up to date. | [See detail →](cli/README.md) |\n| 🧩 **[Skills](skills/README.md)** | Expert per-platform context: fix bugs, reproduce incidents, write tests, analyze crashes, create PRs… all following each stack's best practices. | [See detail →](skills/README.md) |\n| 🔍 **[Graph](docs/graph/README.md)** | 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 →](docs/graph/README.md) |\n| 🧠 **[Brain](brain/README.md)** | Living per-project memory: decisions, bugfixes, workarounds, and project-specific integrations, kept separate from MobiAI's global state. | [See detail →](brain/README.md) |\n\nAnd two more pieces on the horizon:\n\n- **Agents** — Specialized agents that execute complex tasks autonomously (in development).\n- **Automated pipeline** — A bot that receives tickets from your messaging platform, reproduces the bug, applies the fix, and opens the PR (planned).\n\nCompatible with **Claude Code**, **Cursor**, **Copilot CLI**, **Codex**, and **Gemini CLI**.\n\n## Current status\n\n| Component | Status |\n|------------|--------|\n| CLI `mobiai` | Stable |\n| Skills (multi-platform) | Stable |\n| Graph (semantic indexer) | Alpha |\n| Brain (per-project memory) | Alpha |\n| Autonomous agents | In development |\n| Automated pipeline (messaging bot) | Planned |\n| Community skills marketplace | Planned |\n\n## Installation\n\nMobiAI 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.\n\n```bash\n# Mac / Linux\ncurl -fsSL https://mobiai.dev/install.sh | sh\n\n# Windows (cmd)\ncurl.exe -fsSL https://mobiai.dev/install.cmd -o \"%TEMP%\\i.cmd\" && \"%TEMP%\\i.cmd\"\n\n# Windows (PowerShell)\niwr -useb https://mobiai.dev/install.ps1 | iex\n```\n\nVerify the install:\n\n```bash\nmobiai --version\nmobiai doctor      # diagnoses detected hosts, catalog, and permissions\n```\n\nFull install details, local builds, and releases in [cli/README.md](cli/README.md).\n\n### First use\n\n```bash\nmobiai             # banner + help\nmobiai skills init # interactive selector to pick packs (mobile, android, ios, kmp, flutter, react-native, community)\n```\n\nKeeping 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](cli/README.md).\n\n## The CLI in three blocks\n\n> Quick summary. Each block has its own README with the full detail.\n\n### 🧩 [Skills](skills/README.md) — manage skills\n\nInstall, list, and uninstall skill packs in the detected hosts. A `mobile` meta-pack brings everything, or install per-platform packs individually.\n\n```bash\nmobiai skills init                 # interactive selector\nmobiai skills add mobile           # install the whole stack\nmobiai skills list                 # what you have installed\n```\n\nPacks: `mobile`, `android`, `ios`, `kmp`, `flutter`, `react-native`, `community`. → [skills/README.md](skills/README.md)\n\n### 🔍 [Graph](docs/graph/README.md) — semantic code exploration\n\nIndexes 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.\n\n```bash\nmobiai graph init                  # indexes the project into .mobiai/graph/\nmobiai graph context <task...>     # relevant files for a task\n```\n\n→ [docs/graph/README.md](docs/graph/README.md)\n\n### 🧠 [Brain](brain/README.md) — per-project memory\n\nLiving per-repo memory: decisions, bugfixes, workarounds, and project-specific integrations, separate from MobiAI's global state. Stored under `<repo>/.mobiai/brain/`.\n\n```bash\nmobiai brain init                  # creates .mobiai/brain/ (idempotent)\nmobiai brain context               # prints Markdown ready for agents\n```\n\n→ [brain/README.md](brain/README.md)\n\n## How does it work?\n\n1. **Install the `mobiai` CLI** — a single binary that detects your assistant (Claude Code, Cursor, Copilot CLI, Codex, or Gemini CLI) and registers the skills in the right place\n2. **Choose your packs** — `mobiai skills init` opens the selector, or install what you need with `mobiai skills add <pack>`\n3. **Start coding** — Skills activate automatically based on context; optionally index the repo with `mobiai graph init` and seed memory with `mobiai brain init`\n4. **Platform detection** — MobiAI detects your project (Android, iOS, Flutter…) and applies the right context\n5. **Your project, your rules** — Skills respect your project conventions (`CLAUDE.md`, `GEMINI.md`, `AGENTS.md`)\n\n## Roadmap\n\n### Phase 1 — Skills (current)\nMulti-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.\n\n### Phase 2 — Agents\nSpecialized agents that go beyond instructions: they analyze code autonomously, interact with devices, and make informed decisions based on context.\n\n### Phase 3 — Automated pipeline\nA 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.\n\n### Phase 4 — Marketplace\nA marketplace where the community publishes and downloads skills, agents, and configurations for different kinds of mobile projects.\n\n## Contributing\n\nWe'd love your help! MobiAI is built by mobile developers, for mobile developers.\n\n- **Add a new skill**: see the [skill-authoring guide](docs/crear-skills.md)\n- **Improve existing skills**: open a PR with better instructions or edge-case handling\n- **Report problems**: open an issue if a skill gives bad advice or is missing something\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for more details.\n\n## 👀 Want to stay up to date?\n\nJoin the [community Discord](https://bit.ly/3bmeQvm) where we have a channel for the project (`🤖-mobiai`).\n\n## 👨‍💻 Contributors\n\n<a href=\"https://github.com/ArisGuimera/JetpackComposePro/graphs/contributors\">\n  <img src=\"https://contrib.rocks/image?repo=ArisGuimera/mobiai-core\" />\n</a>\n\n\n---\n\n<div align=\"center\">\n<a href=\"LICENSE\"><img src=\"https://img.shields.io/badge/License-MIT-blue.svg\" alt=\"License: MIT\"></a>\n</div>\n",
  "bytes": 8416,
  "sha": "3d068ed5e69df6d4461353d37865107d1ef866ec9c8843e3ac633ad89f34fd78",
  "repo_slug": "arisguimera/mobiai-core",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_arisguimera_mobiai_core_55bc504f/readme"
}