Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计通过

mobile-app-developer移动应用程序开发商

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

3,011

周安装

128

GitHub Stars

76

下载量

1,055
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mobile-app-developer(移动应用程序开发商)
来源仓库:https://github.com/404kidwiz/claude-supercode-skills
仓库路径:skills/mobile-app-developer
安装命令:
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill mobile-app-developer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill mobile-app-developer

简介

mobile-app-developer 用于辅助前端页面、组件和样式开发,适合生成 React、Vue 或 Tailwind 相关代码。

  • 适用于需要审查组件结构或定位布局问题的场景。
  • 使用时需结合项目现有设计系统和路由,避免生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Mobile App Developer

Purpose

Provides cross-platform mobile development expertise specializing in React Native and Flutter. Builds high-performance mobile applications with offline-first architectures, native module integration, and optimized delivery pipelines for iOS and Android.

When to Use

  • Building new mobile apps targeting both iOS and Android
  • Migrating web applications to mobile (React Native)
  • Implementing complex native features (Bluetooth, Biometrics, AR) in cross-platform apps
  • Optimizing app performance (startup time, frame drops, bundle size)
  • Designing offline-first data synchronization layers
  • Setting up mobile CI/CD pipelines (Fastlane, EAS, Codemagic)


2. Decision Framework

Framework Selection (2026 Standards)

Which framework fits the project?
│
├─ **React Native (0.76+)**
│  ├─ Team knows React? → **Yes** (Fastest ramp-up)
│  ├─ Need OTA Updates? → **Yes** (Expo Updates / CodePush)
│  ├─ Heavy Native UI? → **Maybe** (New Architecture makes this easier, but complex)
│  └─ Ecosystem? → **Massive** (npm, vast library support)
│
├─ **Flutter (3.24+)**
│  ├─ Pixel Perfection needed? → **Yes** (Skia/Impeller rendering guarantees consistency)
│  ├─ Heavy Animation? → **Yes** (60/120fps default)
│  ├─ Desktop support needed? → **Yes** (First-class Windows/macOS/Linux)
│  └─ Dart knowledge? → **Required** (Learning curve for JS devs)
│
└─ **Expo (Managed RN)**
   ├─ Rapid MVP? → **Yes** (Zero config, EAS Build)
   ├─ Custom Native Code? → **Yes** (Config Plugins handle 99% of cases)
   └─ Ejecting? → **No** (Prebuild allows native code without ejecting)

State Management & Architecture

ArchitectureReact NativeFlutterBest For
MVVMMobX / Legend-StateProvider / RiverpodReactive UI, clean separation
Redux-styleRedux Toolkit / ZustandBLoC / CubitComplex enterprise apps, strict flow
AtomicRecoil / JotaiRiverpodFine-grained updates, high performance
Offline-FirstWatermelonDB / RealmHive / Isar / DriftApps needing robust sync

Performance Constraints

MetricTargetOptimization Strategy
Cold Start< 1.5sHermes (RN), Lazy Loading, Deferred initialization
Frame Rate60fps (min) / 120fps (target)Memoization, release thread (JS) vs UI thread, Impeller (Flutter)
Bundle Size< 30MB (Universal)ProGuard/R8, Split APKs, Asset Optimization
Memory< 200MB (Avg)Image caching, List recycling (FlashList)

Red Flags → Escalate to mobile-developer (Native):

  • Requirements for kernel-level driver interaction
  • App is a "wrapper" around a single heavy 3D view (Unity integration might be better)
  • Strict requirement for < 10MB app size
  • Dependency on private/undocumented iOS APIs


3. Core Workflows

Workflow 1: React Native New Architecture Setup

Goal: Initialize a high-performance React Native app with Fabric & TurboModules.

Steps:

  1. Initialization (Expo) npx create-expo-app@latest my-app -t default cd my-app npx expo install expo-router react-native-reanimated
  2. Configuration (app.json) {"expo": {"newArchEnabled": true, "plugins": ["expo-router", "expo-font", ["expo-build-properties", {"ios": {"newArchEnabled": true}, "android": {"newArchEnabled": true}}]]}}
  3. Directory Structure (File-based Routing) /app /_layout.tsx # Root layout (Provider setup) /index.tsx # Home screen /(tabs)/ # Tab navigation group /_layout.tsx # Tab configuration /home.tsx /settings.tsx /product/[id].tsx # Dynamic route /components # UI Components /services # API & Logic /store # State Management
  4. Navigation Implementation // app/_layout.tsx import {Stack} from 'expo-router'; import {QueryClientProvider} from '@tanstack/react-query'; export default function RootLayout() {return (<QueryClientProvider client={queryClient}> <Stack screenOptions={{headerShown: false}}> <Stack.Screen name="(tabs)" /> <Stack.Screen name="modal" options={{presentation: 'modal'}} /> </Stack> </QueryClientProvider>);}


Workflow 3: Performance Optimization (FlashList)

Goal: Render 10,000+ list items at 60fps.

Steps:

  1. Replace FlatList import {FlashList} from "@shopify/flash-list"; const MyList = ({data}) => {return (<FlashList data={data} renderItem={({item}) => <ListItem item={item} />} estimatedItemSize={100} // Critical for performance keyExtractor={item => item.id} onEndReached={loadMore} onEndReachedThreshold={0.5} />);};
  2. Memoize List Items const ListItem = React.memo(({item}) => {return (<View style={styles.item}> <Text>{item.title}</Text> </View>);}, (prev, next) => prev.item.id === next.item.id);
  3. Image Optimization

- Use expo-image (uses SDWebImage/Glide native caching). - Enable cachePolicy="memory-disk". - Use transition={200} for smooth loading.



4. Patterns & Templates

Pattern 1: Native Module (Expo Config Plugin)

Use case: Adding native code without ejecting.

// plugins/withCustomNative.js
const { withAndroidManifest } = require('@expo/config-plugins');

const withCustomNative = (config) => {
  return withAndroidManifest(config, async (config) => {
    const androidManifest = config.modResults;

    // Add permission
    androidManifest.manifest['uses-permission'].push({
      $: { 'android:name': 'android.permission.BLUETOOTH' }
    });

    return config;
  });
};

module.exports = withCustomNative;

Pattern 2: Biometric Authentication Hook

Use case: Secure login with FaceID/TouchID.

import * as LocalAuthentication from 'expo-local-authentication';

export function useBiometrics() {
  const authenticate = async () => {
    const hasHardware = await LocalAuthentication.hasHardwareAsync();
    if (!hasHardware) return false;

    const isEnrolled = await LocalAuthentication.isEnrolledAsync();
    if (!isEnrolled) return false;

    const result = await LocalAuthentication.authenticateAsync({
      promptMessage: 'Login with FaceID',
      fallbackLabel: 'Use Passcode',
    });

    return result.success;
  };

  return { authenticate };
}

Pattern 3: The "Smart" API Layer

Use case: Handling auth tokens, retries, and network errors gracefully.

import axios from 'axios';
import * as SecureStore from 'expo-secure-store';

const api = axios.create({ baseURL: 'https://api.example.com' });

api.interceptors.request.use(async (config) => {
  const token = await SecureStore.getItemAsync('auth_token');
  if (token) {
    config.headers.Authorization = `Bearer ${token}`;
  }
  return config;
});

api.interceptors.response.use(
  (response) => response,
  async (error) => {
    if (error.response?.status === 401) {
      // Trigger token refresh logic
      // If refresh fails, redirect to login
    }
    return Promise.reject(error);
  }
);


6. Integration Patterns

backend-developer:

  • Handoff: Backend provides OpenAPI (Swagger) spec → Mobile dev generates TypeScript clients (openapi-generator).
  • Collaboration: Designing "Mobile-First" APIs (pagination, partial responses, minimal payload).
  • Tools: Postman, GraphQL.

ui-designer:

  • Handoff: Designer provides Figma with Auto-Layout → Dev maps to Flexbox (flexDirection, justifyContent).
  • Collaboration: Exporting SVGs vs PNGs (use SVGs/VectorDrawable).
  • Tools: Zeplin, Figma Dev Mode.

qa-expert:

  • Handoff: Dev provides test builds (TestFlight/Firebase) → QA runs regression.
  • Collaboration: Providing test IDs for E2E automation (testID="login_btn").
  • Tools: Appium, Detox, Maestro.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

26.03%
按下载量换算275

Codex

23.03%
按下载量换算243

Cursor

16.21%
按下载量换算171

OpenCode

13.24%
按下载量换算140

Gemini CLI

7.21%
按下载量换算76

windsurf

3.23%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills