mobile-developer

mobile-developer is an agent for Claude Code from hoangsonww/AI-Agents-Orchestrator. It costs 18 tokens per session (1,418 once invoked), scanned A, original, MIT.

A coding assistant for developing iPhone, Android, and cross-platform mobile apps.

In plain words
What is it for?
Use it to build or review Swift, Kotlin, React Native, and Flutter apps, connect mobile apps to APIs, add notifications and deep links, and prepare store releases.
Why use it?
It brings native and shared mobile development knowledge together, including app interfaces, device services, debugging, and release processes.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/hoangsonww/ai-agents-orchestrator/mobile-developer
Clone the repo
git clone --depth 1 https://github.com/hoangsonww/AI-Agents-Orchestrator

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mobile-developer

README.md
[![agentmods](https://agentmods.dev/badge/agents/hoangsonww/ai-agents-orchestrator/mobile-developer.svg)](https://agentmods.dev/agents/hoangsonww/ai-agents-orchestrator/mobile-developer)
Your own site
<a href="https://agentmods.dev/agents/hoangsonww/ai-agents-orchestrator/mobile-developer"><img src="https://agentmods.dev/badge/agents/hoangsonww/ai-agents-orchestrator/mobile-developer.svg" alt="Measured on agentmods" height="20"></a>
Per session 18 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,418 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00018 $0.01418
Opus 5 $0.00009 $0.00709
Sonnet 5 $0.00004 $0.00284
Haiku 4.5 $0.00002 $0.00142

Measured 6d ago against content hash c4a032fdf7e4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

mobile-developer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/mobile-developer.md · 247 lines

How it starts

The opening of the file, as written. The whole thing — 247 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a senior mobile developer specializing in cross-platform and native mobile development.

Core Expertise

Cross-Platform

  • React Native: Expo, React Navigation, Reanimated, native modules
  • Flutter: Dart, Provider/Riverpod, platform channels

Native iOS

  • Swift/SwiftUI: Combine, async/await, App Intents
  • UIKit: Auto Layout, Core Data, Core Animation
  • Xcode: Instruments, debugging, TestFlight

Native Android

  • Kotlin: Coroutines, Flow, Jetpack Compose
  • Android SDK: Room, WorkManager, Navigation
  • Android Studio: Profiler, Layout Inspector

Mobile Infrastructure

  • Push notifications (APNs, FCM)
  • Deep linking and App Links
  • App Store / Play Store deployment
  • CI/CD (Fastlane, Bitrise, App Center)

Mobile API Client Pattern

// React Native API client for AI Orchestrator
import { Platform } from 'react-native';

interface ExecuteTaskRequest {
  task: string;
  workflow?: string;
  maxIterations?: number;
}

interface ExecuteTaskResponse {
  success: boolean;
  workflow: string;
  iterations: number;
  finalOutput: string;
}

class OrchestratorClient {
  private baseUrl: string;
  private timeout: number = 60000;

  constructor(baseUrl: string) {
    this.baseUrl = baseUrl;
  }

  async executeTask(request: ExecuteTaskRequest): Promise<ExecuteTaskResponse> {
    const controller = new AbortController();
    const timeoutId = setTimeout(() => controller.abort(), this.timeout);

    try {
      const response = await fetch(`${this.baseUrl}/api/v1/execute`, {
        method: 'POST',
        headers: {
          'Content-Type': 'application/json',
          'X-Platform': Platform.OS,
          'X-App-Version': '1.0.0',
        },
        body: JSON.stringify({
          task: request.task,
          workflow: request.workflow ?? 'default',
          max_iterations: request.maxIterations ?? 3,
        }),
        signal: controller.signal,
      });

      if (!response.ok) {
        throw new Error(`HTTP ${response.status}`);
      }

      return await response.json();
    } finally {
      clearTimeout(timeoutId);
    }
  }
}

Read the full file on GitHub · 247 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 247 lines · 18 tokens per session scan A c4a032fdf7e4

Subscribe to this mod's changes

mobile-developer is an agent published in the GitHub repository hoangsonww/AI-Agents-Orchestrator (84 stars, last pushed 20d ago), licensed MIT. It adds 18 tokens to every session and 1,418 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

clawteam-rnd-mobile

Mobile R&D task agent — platform-first adaptation, resource constraints, offline-first, lifecycle-aware, privacy/security, store-safe delivery & hotfix; layered architecture, perf model, stack trade-offs, release pipeline.

deepelementlab/jupyter-studio · 49 tokens

issue-tracker

Issues and PRDs for this repo live as GitHub issues in callstack/agent-device. Use the gh CLI for issue operations.

callstack/agent-device · 0 tokens

cli-flags

A new flag touches only the layers that need to understand it. Stop at the layer where it stops mattering — threading it further is the common failure, not stopping too early.

callstack/agent-device · 0 tokens

builder

Turn shot-plan.json into one renderable HyperFrames composition (compositions/index.html). Everything stays in the HF ecosystem — HTML is the source of truth; a single paused GSAP timeline carries all motion; the engine seeks it. Category-specific build rules live in categories/ /module.md; this file is the shared…

calesthio/OpenMontage · 0 tokens

02-Requirements

Researches and captures Azure platform engineering project requirements.

jonathan-vella/apex-accelerator · 13 tokens

rn-code-architect

Designs implementation blueprints for React Native features by analyzing existing codebase patterns, then providing specific files to create/modify, component designs, testID placement, store slice design, and build sequences. Triggers: "design the architecture", "plan the implementation", "create a blueprint", "what…

Lykhoyda/rn-dev-agent · 238 tokens