Mobile development skills, agents, commands, hooks, and MCP tools for Android, iOS, and Kotlin Multiplatform.
npx claudepluginhub ahmed3elshaer/everything-claude-code-mobileComplete Claude Code configs for mobile development - Android, iOS, and Kotlin Multiplatform
The complete collection of Claude Code configs for mobile development.
27 agents, 48 skills, 35 commands, and 3 MCP servers for Android, iOS, and Kotlin Multiplatform development. Includes an end-to-end feature builder that plans, implements, tests, and reviews entire features automatically.
Mobile companion to everything-claude-code
# Add marketplace
/plugin marketplace add ahmed3elshaer/everything-claude-code-mobile
# Install plugin
/plugin install everything-claude-code-mobile@ahmed3elshaer
# Clone the repo first
git clone https://github.com/ahmed3elshaer/everything-claude-code-mobile.git
# Copy rules (applies to all projects)
cp -r everything-claude-code-mobile/rules/* ~/.claude/rules/
# Build a complete feature end-to-end
/feature-build Add user authentication with biometrics
# Build Android project
/android-build
# Fix Gradle issues
/gradle-fix
# TDD workflow
/mobile-tdd
# Check all commands
/plugin list everything-claude-code-mobile@ahmed3elshaer
The standout capability of this plugin. /feature-build orchestrates specialized agents through 7 phases to build a complete feature from a single description:
/feature-build Add push notification support
/feature-build --platform=android Implement offline caching
/feature-build --platform=kmp Add offline sync for user data
| # | Phase | What Happens |
|---|---|---|
| 1 | Plan | feature-planner + mobile-architect analyze your project and create a structured implementation plan |
| 2 | Implement | 5 layer agents run in dependency order (architecture -> network + UI -> data -> wiring) |
| 3 | Test | unit-test-writer + ui-test-writer create tests with 80% coverage target |
| 4 | Build Fix | Compile and fix errors iteratively |
| 5 | Quality Gate | Parallel code review + security audit + performance review |
| 6 | Verify | mobile-verifier runs pass@k metrics and coverage sign-off |
| 7 | Learn | Pattern extraction and instinct updates |
Phase 1: architecture-impl (domain models, interfaces, DI skeleton)
|
+----+----+
Phase 2: network ui-impl (API clients, DTOs / Compose screens, components)
-impl |
| |
Phase 3: data-impl | (repositories, local DB, caching)
| |
+----+----+
Phase 4: wiring-impl (DI bindings, navigation, feature flags)
| Command | Description |
|---|---|
/feature-build | End-to-end feature construction (all 7 phases) |
/feature-plan | Plan architecture, files, deps, and test strategy |
/feature-implement | Execute plan with parallel layer agents |
/feature-test | Create unit, UI, and E2E tests |
/feature-build-fix | Compile and fix build errors |
/feature-quality-gate | Code review + security + performance audit |
/feature-status | Show current feature build progress |
/feature-learn | Extract patterns from completed feature |
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations