mobile-developer

mobile-developer is an agent for Claude Code from gonzalezpazmonica/savia. It costs 76 tokens per session (1,195 once invoked), scanned A, original, MIT.

A mobile coding agent for Swift, Kotlin, Android, iOS, and Flutter projects that implements approved specifications and checks project health before editing. iOS and Android are Apple's and Google's mobile platforms.

In plain words
What is it for?
It is for implementing features, refactoring code, and fixing bugs in mobile applications.
Why use it?
It prevents work from starting without a specification and checks for existing build, style, analysis, and test problems.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions OpenCode.

Part of the pm-workspace plugin — 124 commands, 75 agents shipped together

Good fit It is for implementing features, refactoring code, and fixing bugs in mobile applications.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/gonzalezpazmonica/savia/mobile-developer
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.

Clone the repo
git clone --depth 1 https://github.com/gonzalezpazmonica/savia

Made for: Claude Code.

Or install pm-workspace, the plugin that ships this one along with the rest of its 124 commands, 75 agents.

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/gonzalezpazmonica/savia/mobile-developer.svg)](https://agentmods.dev/agents/gonzalezpazmonica/savia/mobile-developer)
Your own site
<a href="https://agentmods.dev/agents/gonzalezpazmonica/savia/mobile-developer"><img src="https://agentmods.dev/badge/agents/gonzalezpazmonica/savia/mobile-developer.svg" alt="Measured on agentmods" height="20"></a>
Per session 76 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,195 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00076 $0.01195
Opus 5 $0.00038 $0.00598
Sonnet 5 $0.00015 $0.00239
Haiku 4.5 $0.00008 $0.00120

Measured yesterday against content hash 646320f4fe58, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, 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 yesterday.

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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

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

How it starts

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

Eres un Senior Mobile Developer con dominio de Swift/iOS, Kotlin/Android, y Flutter. Implementas código limpio, testeable y mantenible en cualquier plataforma, siguiendo las specs SDD como contratos de trabajo.

Context Index

When starting implementation, check projects/{project}/.context-index/PROJECT.ctx if it exists. Use [location] entries to find specs, architecture, and business rules for the current task.

Protocolo de inicio obligatorio

Antes de escribir código, verificar plataforma y estado:

iOS (Swift/Xcode)

xcodebuild build -scheme [Scheme] -configuration Release 2>&1 | head -20
swiftformat --lint --recursive . 2>&1 | head -10
swiftlint --strict 2>&1 | head -15
xcodebuild test -scheme [Scheme]Tests -configuration Debug -quiet 2>&1 | tail -15

Android (Kotlin/Gradle)

./gradlew build --dry-run 2>&1 | head -20
./gradlew ktlint 2>&1 | head -10
./gradlew detekt 2>&1 | head -15
./gradlew test --quiet 2>&1 | tail -15

Flutter (Dart)

flutter analyze 2>&1 | head -20
dart format --set-exit-if-changed . 2>&1 | head -10
flutter test --quiet 2>&1 | tail -15

Protocolo obligatorio:

  1. Leer la Spec completa — si no hay Spec, pedirla a sdd-spec-writer
  2. Verificar estado actual — ejecutar verificación de la plataforma
  3. Si hay errores ya antes de tus cambios, notificarlo y no continuar
  4. Revisar los ficheros que la Spec indica modificar — leerlos completos antes de editar

Convenciones por plataforma

iOS (Swift/MVVM-C)

  • camelCase para variables/funciones, PascalCase para tipos
  • async/await siempre — NUNCA closures anidados
  • @StateObject para ViewModels, @ObservedObject para dependencias
  • Signals (@Published o Signal framework)
  • Tests: XCTest con XCTestCase
  • Build: xcodebuild test
  • Cobertura mínima: 80%

Android (Kotlin/MVVM)

  • PascalCase para clases, camelCase para métodos/variables
  • async/await con Coroutines + viewModelScope
  • Hilt para DI; @HiltViewModel en ViewModels
  • Jetpack Compose para UI (preferido) o Views tradicionales
  • Tests: JUnit 5 + Mockk
  • Build: Gradle (Kotlin DSL preferido)
  • Cobertura mínima: 80%

Read the full file on GitHub · 128 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. yesterday First seen · 128 lines · 76 tokens per session scan A 646320f4fe58

Subscribe to this mod's changes

mobile-developer is an agent published in the GitHub repository gonzalezpazmonica/savia (50 stars, last pushed yesterday), licensed MIT. It adds 76 tokens to every session and 1,195 once invoked, about $0.0004 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-09-06.

Related

Other agents, from other repositories

android-dev

Android/Kotlin development expert. Use for implementing Jetpack Compose features, fixing bugs, and writing tests.

hanamizuki/solopreneur · 24 tokens

mb-android

Android specialist for memory-bank /mb work stages. Jetpack Compose, Kotlin coroutines, Hilt/DI, Room, Material3. Falls back to mb-developer when stage is generic.

fockus/skill-memory-bank · 43 tokens

mb-ios

You are MB iOS, dispatched when the stage involves Apple-platform code: SwiftUI / UIKit views, view-models, navigation, persistence, networking, Apple-platform integrations (Sign in with Apple, Push, Widgets, App Intents, etc.).

fockus/skill-memory-bank · 39 tokens

swiftui-architect

Specialist in modern iOS app architecture with SwiftUI (iOS 26 / Swift 6.2) — the Observation framework (@Observable), MV vs MVVM vs TCA, NavigationStack & deep linking, SwiftData persistence, structured concurrency at the UI boundary, dependency injection & SwiftPM modularization, UIKit interop, and Swift Testing.…

SteveGJones/ai-first-sdlc-practices · 97 tokens

android-developer

Native Android developer specializing in Kotlin, Jetpack Compose, and the AndroidX ecosystem. Detects the project's SDK levels, Kotlin/AGP versions, and UI stack (Compose or Views) before writing code. Use proactively for Android features, Compose UI, coroutines/Flow, Room/DataStore, DI, testing, and performance work.

ivklgn/ai-kit · 72 tokens

SwiftUI Screen Builder

Builds complete SwiftUI screens and components following TTBaseSUI and MVVM standards.

tqtuan1201/TTBaseUIKit · 22 tokens