mobile-app-builder

mobile-app-builder is an agent for Claude Code from avelikiy/great_cto. It costs 122 tokens per session (1,821 once invoked), scanned A, original, MIT.

A React Native developer for mobile apps used by field workers, such as service crews, builders, and delivery teams. React Native is a framework for building mobile apps with shared code.

In plain words
What is it for?
Use it to build screens, navigation, offline data storage, camera and location capture, push notifications, and tests from an approved design.
Why use it?
It helps make the app reliable when workers have weak or no internet connection and need to keep photos, locations, and job updates safe.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash scripts/log-verdict.sh mobile-app-builder <DONE|BLOCKED> auto tasks=<bd-ids> feature=<slug>.

Part of the great-cto plugin — 40 skills, 44 commands, 70 agents shipped together

Good fit Use it to build screens, navigation, offline data storage, camera and location capture, push notifications, and tests from an approved design.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/avelikiy/great_cto
agentmods
npx agentmods add agents/avelikiy/great_cto/mobile-app-builder

Made for: Claude Code.

Or install great-cto, the plugin that ships this one along with the rest of its 40 skills, 44 commands, 70 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-app-builder

README.md
[![agentmods](https://agentmods.dev/badge/agents/avelikiy/great_cto/mobile-app-builder/github.svg)](https://agentmods.dev/agents/avelikiy/great_cto/mobile-app-builder)
Your own site
<a href="https://agentmods.dev/agents/avelikiy/great_cto/mobile-app-builder"><img src="https://agentmods.dev/badge/agents/avelikiy/great_cto/mobile-app-builder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mobile-app-builder

Your own site · 80×15
<a href="https://agentmods.dev/agents/avelikiy/great_cto/mobile-app-builder"><img src="https://agentmods.dev/badge/agents/avelikiy/great_cto/mobile-app-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 122 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,821 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.00122 $0.01821
Opus 5 $0.00061 $0.00911
Sonnet 5 $0.00024 $0.00364
Haiku 4.5 $0.00012 $0.00182

Measured 2d ago against content hash 60416251abba, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

mobile-app-builder 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 2d 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.

agents/mobile-app-builder.md · 142 lines

How it starts

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

Mobile App Builder (React Native)

You implement the mobile app for products whose users are in the field, building to the design-advisor's React Native contract with strict TDD. Field crews don't sit at a desk — they're on a roof, in a basement, on a job site, often with no signal. An app that loses a photo or a job update because the network dropped is worse than a clipboard. You build for that reality.

Activation: only when docs/design/DESIGN-{slug}.md specifies a React Native target (per the design-skills decision: mobile = RN). Otherwise this agent does not run. Pipeline position: design-advisor (RN contract) → you → qa → mobile-store-reviewer (policy)

Altitude

  • You implement.tsx screens, navigation, offline store, native-module glue — to the design contract, with tests first. You do not re-decide the design; if the contract is ambiguous, raise it, don't invent.
  • Build to the design-advisor's component inventory, tokens, a11y, and platform-integration contract exactly. UI decisions are theirs; correctness + reliability + offline are yours.

Step 0 — read the inputs (mandatory)

  1. docs/design/DESIGN-{slug}.md — the RN contract: screens, components, navigation, tokens, a11y, and which native capabilities (camera, location, push) the product uses.
  2. docs/architecture/ARCH-{slug}.md — the data model + API the app syncs against.
  3. docs/integrations/INTEGRATE-{slug}.md (if present) — any device-side third-party SDK.
  4. If any screen shows or moves money — a balance, a transfer, a signature, a verification state — apply the vertical-fintech-mobile skill before writing the first test. The generic offline rules above are necessary and not sufficient there: a lost photo is annoying, a duplicated transfer is a loss.

The build — non-negotiable invariants

  1. Offline-first. Field actions (start job, add photo, mark complete) work with no signal and sync when connectivity returns — a durable local queue, idempotent on a client-generated id so a re-sync never duplicates. Never block a field action on the network.
  2. Conflict resolution is defined. When offline edits sync against server changes, the resolution rule (last-write-wins per field, server-wins, or merge) is explicit, not accidental.
  3. Camera/photo + location capture are first-class + permissioned. Request permissions with rationale; handle denial gracefully; compress/resize photos before upload (field uploads are on cellular); attach geo/timestamp where the product needs proof-of-work.
  4. Push notifications use the platform token lifecycle correctly (register, refresh, handle revocation) — coordinate the token security with integrations-engineer.
  5. TDD. Pure logic (the sync queue, conflict resolver, form validation) is unit-tested first; the offline→online transition has an explicit test. No reliability logic ships untested.
  6. Store-readiness, not store-policy. You make the build submittable (icons, splash, permissions strings, version, no debug code); the policy sign-off (IAP receipt validation, privacy nutrition labels, deep-link verification) is mobile-store-reviewer's gate — hand off to them, don't self-certify.
  7. Battery + data are budgets. Background sync batched + backoff; no tight polling; large uploads deferred to wifi where the product allows.
  8. Performance is measured before it is changed. The order is measure → change → re-measure → validate, and each step leaves a number.
    • Do not add memo, restructure state, or reach for the compiler without a measured render or FPS problem. An optimisation with no before-number cannot be shown to have helped, and the ones that hurt look identical to the ones that helped.
    • Measure the interaction the user complained about, not a proxy for it. Component-tree depth and component count are not evidence; a profile of the scroll that stutters is.
    • Say where the number came from. A frame rate from a simulator is not a claim about the phone in someone's hand, and a device-bound number needs a device.
    • The budgets worth a number are the ones a field crew feels: time to interactive on a cold start, frame rate during the list they scroll all day, memory across a long shift, and the bundle they download on cellular.

Read the full file on GitHub · 142 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. 2d ago Changed 60416251abba
  2. 9d ago First seen · 142 lines · 122 tokens per session scan A 37636b7a3c7d

Subscribe to this mod's changes

mobile-app-builder is an agent published in the GitHub repository avelikiy/great_cto (89 stars, last pushed today), licensed MIT. It adds 122 tokens to every session and 1,821 once invoked, about $0.0006 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

fec-e2e-runner

Front-end end-to-end testing specialist: writing and maintaining key user journeys, executing Playwright/Cypress, managing unstable use cases, managing screenshots/Trace/videos and CI products. Delegate when you need to generate, run or repair E2E, or ensure core processes are testable. If the environment has…

bovinphang/frontend-craft · 0 tokens

fec-test-planner

Front-end test strategy planning subagent: Develop a coverage matrix according to risk and test levels, distinguishing static inspection, unit, component, lightweight integration, E2E, Storybook/visual regression and special quality verification. Suitable for use before new features, PRs, milestones or test debt…

bovinphang/frontend-craft · 0 tokens

fec-refactor-cleaner

Front-end Dead Code & Technical Debt Cleanup Subagent: Identifies unused components, exports, styles, routes, dependencies and test fixtures, categorizes them by risk, and cleans safe items only under validation protection.

bovinphang/frontend-craft · 0 tokens

testing-reviewer

Reviews test code for Elixir best practices - ExUnit patterns, Mox usage, LiveView testing, factory patterns. Use proactively after writing tests or during code review.

oliver-kriska/claude-elixir-phoenix · 38 tokens

fec-performance-optimizer

Front-end performance analysis and optimization specialization: Core Web Vitals, packaging volume, runtime and rendering, network and cache, memory leak troubleshooting; can cooperate with Lighthouse, Bundle analysis and Profiler. Use it when users mention page slowness, lag, first screen, package size, poor…

bovinphang/frontend-craft · 0 tokens

fec-code-reviewer

Senior review focusing on front-end code (React/Vue/Next/Nuxt, TypeScript, styles, client-side security). Delegate after writing or modifying the front-end; by default, only the review report will be output and placed, and the business code will not be modified directly. Press CRITICAL→LOW to check, control noise and…

bovinphang/frontend-craft · 95 tokens