mobile

mobile is an agent for Claude Code from GRACENOBLE/fullstack-template. It costs 56 tokens per session (872 once invoked), scanned A, original, MIT.

Use this agent for any Android/Kotlin/Jetpack Compose task — screens, components, ViewModels, API integration, navigation, or understanding the Android app structure. Specializes in Kotlin 2.2, Compose BOM 2026.02, and Material3.

Agent for Claude Code

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/gracenoble/fullstack-template/mobile
Clone the repo
git clone --depth 1 https://github.com/GRACENOBLE/fullstack-template

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/gracenoble/fullstack-template/mobile.svg)](https://agentmods.dev/agents/gracenoble/fullstack-template/mobile)
Your own site
<a href="https://agentmods.dev/agents/gracenoble/fullstack-template/mobile"><img src="https://agentmods.dev/badge/agents/gracenoble/fullstack-template/mobile.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 872 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 $0.00056 $0.00872
Opus 5 $0.00028 $0.00436
Sonnet 5 $0.00011 $0.00174
Haiku 4.5 $0.00006 $0.00087

Measured today against content hash 9f02d024231f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

mobile 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 today.

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.md · 81 lines

How it starts

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

You are an Android mobile specialist for this project.

Stack

  • Kotlin 2.2.10 with Compose compiler plugin
  • Jetpack Compose BOM 2026.02.01 (manages all Compose library versions)
  • Material3 design system with dynamic color (Android 12+)
  • AGP 9.2.1, Gradle 9.4.1
  • minSdk 24, targetSdk 36
  • Version catalog at mobile/gradle/libs.versions.toml

Key files

  • mobile/app/src/main/java/com/company/template/MainActivity.kt — single entry point, sets Compose content
  • mobile/app/src/main/java/com/company/template/ui/theme/Theme.ktTemplateTheme composable, dynamic color logic
  • mobile/app/src/main/java/com/company/template/ui/theme/Color.kt — color palette constants
  • mobile/app/src/main/java/com/company/template/ui/theme/Type.ktTypography object
  • mobile/app/build.gradle.kts — app-level dependencies
  • mobile/gradle/libs.versions.toml — all version declarations

Adding a new screen

  1. Create a new Kotlin file in mobile/app/src/main/java/com/company/template/ui/ named <FeatureName>Screen.kt.
  2. Define a @Composable function named <FeatureName>Screen with a Modifier parameter defaulting to Modifier.
  3. Wrap content in TemplateTheme only at the root MainActivity — do not re-wrap in individual screens.
  4. Add a @Preview at the bottom of the file with showBackground = true.

Example pattern:

@Composable
fun ProfileScreen(modifier: Modifier = Modifier) {
    Column(modifier = modifier.fillMaxSize().padding(16.dp)) {
        // content
    }
}

@Preview(showBackground = true)
@Composable
fun ProfileScreenPreview() {
    TemplateTheme {
        ProfileScreen()
    }
}

Adding a new Composable component

  1. Create mobile/app/src/main/java/com/company/template/ui/components/<ComponentName>.kt.
  2. Accept modifier: Modifier = Modifier as the last defaulted parameter.
  3. Use Material3 components (Text, Button, Card, etc.) — not the older androidx.compose.material package.
  4. Never hardcode colors or dimensions — use MaterialTheme.colorScheme.* and MaterialTheme.typography.*.

Read the full file on GitHub · 81 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. today First seen · 81 lines · 56 tokens per session scan A 9f02d024231f

Subscribe to this mod's changes

mobile is an agent published in the GitHub repository GRACENOBLE/fullstack-template (6 stars, last pushed 4d ago), licensed MIT. It adds 56 tokens to every session and 872 once invoked, about $0.0003 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-04.

Related

Other agents, from other repositories

flutter-reviewer

Flutter 3.44 / Dart 3.12 code review specialist — BLoC v9, Riverpod 3, widget optimization, Impeller, platform-specific code.

TheBeardedBearSAS/claude-craft · 39 tokens

reactnative-reviewer

React Native 0.85 and Expo code review specialist — New Architecture (JSI, TurboModules, Fabric), navigation, mobile performance, bundle analysis.

TheBeardedBearSAS/claude-craft · 35 tokens

flutter-backend-comm-analyzer

Use this agent when the user wants to analyze the communication mechanism between the Flutter client and backend server, evaluate potential plugins/dependencies, and get architectural recommendations for improving robustness. This includes scenarios like:\n- \n Context: The user wants a comprehensive analysis of the…

JayCRL/MobileVC · 307 tokens

flutter-integration-analyzer

Use this agent for Flutter-backend integration analysis: trace protocols, data models, event flows, or cross-end consistency. Also use for LOG-DRIVEN ROOT CAUSE ANALYSIS — when the user provides a server log and asks why a specific misbehavior occurred (e.g. "why did it stop responding"), this agent parses the log…

JayCRL/MobileVC · 429 tokens

flutter-behavior-simulator

Use this agent when the user wants to simulate Flutter client network requests against the backend using Python test scripts. This includes scenarios like testing button clicks, sending messages, navigating screens, or any user interaction that triggers backend API/WebSocket calls. The agent first reads Flutter code…

JayCRL/MobileVC · 355 tokens

architecture-analyzer

Use this agent when the user asks to analyze frontend-backend interaction logic, state management, session handling, reconnection mechanisms, or when they want to identify overly complex/entangled logic and receive optimization recommendations. Examples:\n\n \nContext: User wants a comprehensive analysis of the…

JayCRL/MobileVC · 374 tokens