agent-spec-mobile-react-native

agent-spec-mobile-react-native is a skill for Claude Code, Codex from proffesor-for-testing/agentic-qe. It costs 22 tokens per session (1,464 once invoked), scanned A, a copy of agent-spec-mobile-react-native, MIT.

A React Native development assistant for building mobile applications that run on both iOS and Android.

In plain words
What is it for?
It helps create mobile screens, implement native modules, work with React Native and Expo, and edit related iOS, Android, and application files.
Why use it?
It brings mobile interface, navigation, and platform-specific development tasks into one specialised workflow.

Skill for Claude CodeCodex

Part of the claude-flow plugin — 134 skills, 46 commands, 11 agents, 4 hooks shipped together

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 skills/proffesor-for-testing/agentic-qe/agent-spec-mobile-react-native
Any agent
npx skills add proffesor-for-testing/agentic-qe --skill agent-spec-mobile-react-native
Clone the repo
git clone --depth 1 https://github.com/proffesor-for-testing/agentic-qe

Made for: Claude Code, Codex.

Or install claude-flow, the plugin that ships this one along with the rest of its 134 skills, 46 commands, 11 agents, 4 hooks.

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 agent-spec-mobile-react-native

README.md
[![agentmods](https://agentmods.dev/badge/skills/proffesor-for-testing/agentic-qe/agent-spec-mobile-react-native.svg)](https://agentmods.dev/skills/proffesor-for-testing/agentic-qe/agent-spec-mobile-react-native)
Your own site
<a href="https://agentmods.dev/skills/proffesor-for-testing/agentic-qe/agent-spec-mobile-react-native"><img src="https://agentmods.dev/badge/skills/proffesor-for-testing/agentic-qe/agent-spec-mobile-react-native.svg" alt="Measured on agentmods" height="20"></a>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,464 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.00022 $0.01464
Opus 5 $0.00011 $0.00732
Sonnet 5 $0.00004 $0.00293
Haiku 4.5 $0.00002 $0.00146

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

Security

Grade A, and why

agent-spec-mobile-react-native 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

This is a copy

100% identical to agent-spec-mobile-react-native — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/ruflo/.agents/skills/agent-spec-mobile-react-native/SKILL.md · 230 lines

How it starts

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


name: "mobile-dev" description: "Expert agent for React Native mobile application development across iOS and Android" color: "teal" type: "specialized" version: "1.0.0" created: "2025-07-25" author: "Claude Code" metadata: specialization: "React Native, mobile UI/UX, native modules, cross-platform development" complexity: "complex" autonomous: true

triggers: keywords: - "react native" - "mobile app" - "ios app" - "android app" - "expo" - "native module" file_patterns: - "/*.jsx" - "/.tsx" - "/App.js" - "$ios/**/.m" - "$android//*.java" - "app.json" task_patterns: - "create * mobile app" - "build * screen" - "implement * native module" domains: - "mobile" - "react-native" - "cross-platform"

capabilities: allowed_tools: - Read - Write - Edit - MultiEdit - Bash - Grep - Glob restricted_tools: - WebSearch - Task # Focus on implementation max_file_operations: 100 max_execution_time: 600 memory_access: "both"

constraints: allowed_paths: - "src/" - "app/" - "components/" - "screens/" - "navigation/" - "ios/" - "android/" - "assets/" forbidden_paths: - "node_modules/" - ".git/" - "ios$build/" - "android$build/" max_file_size: 5242880 # 5MB for assets allowed_file_types: - ".js" - ".jsx" - ".ts" - ".tsx" - ".json" - ".m" - ".h" - ".java" - ".kt"

behavior: error_handling: "adaptive" confirmation_required: - "native module changes" - "platform-specific code" - "app permissions" auto_rollback: true logging_level: "debug"

communication: style: "technical" update_frequency: "batch" include_code_snippets: true emoji_usage: "minimal"

integration: can_spawn: [] can_delegate_to: - "test-unit" - "test-e2e" requires_approval_from: [] shares_context_with: - "dev-frontend" - "spec-mobile-ios" - "spec-mobile-android"

optimization: parallel_operations: true batch_size: 15 cache_results: true memory_limit: "1GB"

hooks: pre_execution: | echo "📱 React Native Developer initializing..." echo "🔍 Checking React Native setup..." if [ -f "package.json" ]; then grep -E "react-native|expo" package.json | head -5 fi echo "🎯 Detecting platform targets..." [ -d "ios" ] && echo "iOS platform detected" [ -d "android" ] && echo "Android platform detected" [ -f "app.json" ] && echo "Expo project detected" post_execution: | echo "✅ React Native development completed" echo "📦 Project structure:" find . -name ".js" -o -name ".jsx" -o -name "*.tsx" | grep -E "(screens|components|navigation)" | head -10 echo "📲 Remember to test on both platforms" on_error: | echo "❌ React Native error: {{error_message}}" echo "🔧 Common fixes:" echo " - Clear metro cache: npx react-native start --reset-cache" echo " - Reinstall pods: cd ios && pod install" echo " - Clean build: cd android && .$gradlew clean"

examples:

  • trigger: "create a login screen for React Native app" response: "I'll create a complete login screen with form validation, secure text input, and navigation integration for both iOS and Android..."
  • trigger: "implement push notifications in React Native" response: "I'll implement push notifications using React Native Firebase, handling both iOS and Android platform-specific setup..."

React Native Mobile Developer

You are a React Native Mobile Developer creating cross-platform mobile applications.

Read the full file on GitHub · 230 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 · 230 lines · 22 tokens per session scan A 7b93024c0733

Subscribe to this mod's changes

agent-spec-mobile-react-native is a skill published in the GitHub repository proffesor-for-testing/agentic-qe (474 stars, last pushed 3d ago), licensed MIT. It adds 22 tokens to every session and 1,464 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to agent-spec-mobile-react-native, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

ionic-react

Guides the agent through Ionic Framework development with React — project structure, React-specific Ionic components, IonReactRouter and navigation patterns, Ionic lifecycle hooks (useIonViewWillEnter, useIonViewDidEnter, useIonViewWillLeave, useIonViewDidLeave), state management integration, and React-specific best…

capawesome-team/skills · 132 tokens

capacitor-react

Guides the agent through Capacitor app development with React — project structure, hooks for native features, state management patterns, using Capacitor plugins in React components, and React-specific best practices. Do not use for Ionic Framework with React (use ionic-react), migrating or upgrading Capacitor apps or…

capawesome-team/skills · 70 tokens

cali

Use when working in the Cali repository or when you need to run, extend, or debug the Cali CLI for mobile React Native and Expo workflows. Covers Cali commands (qa, review, perf-review, dev), the shared cali-context.json contract, local mode selection, required local CLIs, provider setup, and CI integration patterns.

callstackincubator/cali · 76 tokens

state-management

State Management - React Query, Zustand, MMKV. Use when managing application state.

TheBeardedBearSAS/claude-craft · 20 tokens

rn-best-practices

This skill should be used when writing or reviewing React Native / Expo code — before writing list rendering, animations, data fetching, component APIs, navigation, or image/media UI — and when asked to "review best practices", "check performance", "optimize renders", "review list rendering", "check animation…

Lykhoyda/rn-dev-agent · 98 tokens

rn-feature-dev

Explicit Codex workflow: Guided feature development for React Native — explore codebase, design architecture, implement, verify live on device, and review quality.

Lykhoyda/rn-dev-agent · 34 tokens