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.
npx agentmods add agents/gracenoble/fullstack-template/mobilegit clone --depth 1 https://github.com/GRACENOBLE/fullstack-templateWrote 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.
[](https://agentmods.dev/agents/gracenoble/fullstack-template/mobile)<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>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.
| Model | Per session | Once 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 |
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.
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 contentmobile/app/src/main/java/com/company/template/ui/theme/Theme.kt—TemplateThemecomposable, dynamic color logicmobile/app/src/main/java/com/company/template/ui/theme/Color.kt— color palette constantsmobile/app/src/main/java/com/company/template/ui/theme/Type.kt—Typographyobjectmobile/app/build.gradle.kts— app-level dependenciesmobile/gradle/libs.versions.toml— all version declarations
Adding a new screen
- Create a new Kotlin file in
mobile/app/src/main/java/com/company/template/ui/named<FeatureName>Screen.kt. - Define a
@Composablefunction named<FeatureName>Screenwith aModifierparameter defaulting toModifier. - Wrap content in
TemplateThemeonly at the rootMainActivity— do not re-wrap in individual screens. - Add a
@Previewat the bottom of the file withshowBackground = 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
- Create
mobile/app/src/main/java/com/company/template/ui/components/<ComponentName>.kt. - Accept
modifier: Modifier = Modifieras the last defaulted parameter. - Use Material3 components (
Text,Button,Card, etc.) — not the olderandroidx.compose.materialpackage. - Never hardcode colors or dimensions — use
MaterialTheme.colorScheme.*andMaterialTheme.typography.*.
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.
- today First seen · 81 lines · 56 tokens per session scan A 9f02d024231f
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.
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.
reactnative-reviewer
React Native 0.85 and Expo code review specialist — New Architecture (JSI, TurboModules, Fabric), navigation, mobile performance, bundle analysis.
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…
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…
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…
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…