Token导航 LogoToken导航TokenDH.com
开发规范需要联网github未标认证来源可访问许可证需确认审计通过

expo-best-practices世博会最佳实践

Agent Skill

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

总安装

1,687

周安装

71

GitHub Stars

1

下载量

591
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:expo-best-practices(世博会最佳实践)
来源仓库:https://github.com/ofershap/expo-best-practices
仓库路径:skills/expo-best-practices
安装命令:
npx skills add https://github.com/ofershap/expo-best-practices --skill expo-best-practices
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ofershap/expo-best-practices --skill expo-best-practices

简介

为 Expo 和 React Native 开发提供当前最佳实践指导,避免常见错误模式。

  • 重点规范使用 Expo Router 路由、避免手动原生配置及废弃 API 调用。
  • 通过规则检查确保代码符合现代开发标准,提升项目可维护性和稳定性。
  • 建议在新项目或重构阶段启用,配合 CI/CD 流程进行自动化代码审查。
  • expo-best-practices 属于开发规范类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

When to use

Use this skill when working with Expo or React Native code. It teaches current best practices and prevents common mistakes that AI agents make with outdated patterns, manual native setup, and deprecated APIs.

Critical Rules

1. Use Expo Router for navigation

Wrong (agents do this):

import { createStackNavigator } from "@react-navigation/stack";
const Stack = createStackNavigator();
export default function App() {
  return (
    <NavigationContainer>
      <Stack.Navigator>
        <Stack.Screen name="Home" component={HomeScreen} />
      </Stack.Navigator>
    </NavigationContainer>
  );
}

Correct:

app/
  _layout.tsx
  index.tsx
  settings.tsx

Use the app/ directory convention. Files become routes automatically. New Expo projects include Expo Router by default.

Why: Expo Router is built on React Navigation, provides file-based routing, typed routes, deep linking, and integrates with Expo CLI. Manual React Navigation setup is redundant and misses Expo Router features.

2. Use expo-router layouts for navigation structure

Wrong:

// Each screen manually defines its own layout

Correct:

// app/_layout.tsx
import { Stack } from "expo-router";
export default function RootLayout() {
  return <Stack />;
}

Why: _layout.tsx defines shared navigation structure, tabs, stacks, and nested layouts. It centralizes navigation configuration.

3. Use EAS Build for native builds

Wrong:

expo build:ios
expo build:android

Correct:

eas build --platform ios
eas build --platform android

Why: expo build is deprecated. EAS Build is the current cloud build service with better caching, credentials management, and native module support.

4. Use Expo config plugins for native configuration

Wrong:

# Manually editing
ios/MyApp/Info.plist
android/app/src/main/AndroidManifest.xml

Correct:

// app.config.ts
import { ConfigPlugin } from "expo/config-plugins";
const withMyApiKey: ConfigPlugin<{ apiKey: string }> = (config, { apiKey }) => {
  config = withInfoPlist(config, (c) => {
    c.modResults["MY_API_KEY"] = apiKey;
    return c;
  });
  return config;
};
export default {
  plugins: [["withMyApiKey", { apiKey: process.env.API_KEY }]],
};

Why: Direct edits to native files are overwritten on prebuild. Config plugins modify native files at build time and survive prebuild.

5. Platform-specific code: use platform extensions or Platform.select

Wrong:

if (Platform.OS === "ios") {
  return <IOSComponent />;
}
return <AndroidComponent />;

Correct:

MyComponent.ios.tsx
MyComponent.android.tsx

Or:

import { Platform } from "react-native";
const styles = StyleSheet.create({
  container: Platform.select({
    ios: { paddingTop: 20 },
    android: { paddingTop: 0 },
  }),
});

Why: Platform file extensions let the bundler include only the correct code per platform. Platform.select keeps conditional logic in one file when appropriate.

6. Use expo-image instead of React Native Image

Wrong:

import { Image } from "react-native";
<Image source={{ uri: url }} style={styles.image} />;

Correct:

import { Image } from "expo-image";
<Image source={url} contentFit="cover" style={styles.image} />;

Why: expo-image adds caching, placeholders, blurhash, and better performance. React Native's Image lacks these features.

7. Use expo-font for custom fonts

Wrong:

# Manual font linking via native projects

Correct:

import * as Font from "expo-font";
await Font.loadAsync({
  CustomFont: require("./assets/fonts/CustomFont.ttf"),
});

Why: expo-font handles loading and avoids manual native configuration.

8. Use expo-secure-store for sensitive data

Wrong:

import AsyncStorage from "@react-native-async-storage/async-storage";
await AsyncStorage.setItem("authToken", token);

Correct:

import * as SecureStore from "expo-secure-store";
await SecureStore.setItemAsync("authToken", token);

Why: AsyncStorage is not encrypted. expo-secure-store uses the platform keychain/Keystore for tokens and secrets.

9. Use expo-notifications for push notifications

Wrong:

// Manual Firebase/APNs setup, native configuration

Correct:

import * as Notifications from "expo-notifications";
const token = await Notifications.getExpoPushTokenAsync();

Why: expo-notifications abstracts push setup across iOS and Android. Manual Firebase/APNs configuration is error-prone and platform-specific.

10. Use app.json or app.config.ts for configuration

Wrong:

# Editing Info.plist or AndroidManifest.xml directly

Correct:

{
  "expo": {
    "name": "MyApp",
    "slug": "my-app",
    "plugins": ["expo-router"]
  }
}

Why: Expo manages native config from app.json/app.config.ts. Direct edits are overwritten on prebuild.

11. Use expo-updates for OTA updates

Wrong:

import codePush from "react-native-code-push";
export default codePush(MyApp);

Correct:

import * as Updates from "expo-updates";
await Updates.checkForUpdateAsync();

Why: expo-updates integrates with EAS and Expo's update service. CodePush requires separate setup and is redundant in Expo projects.

12. Use TypeScript with typed navigation params

Wrong:

router.push("/profile");

Correct:

import { router } from "expo-router";
router.push({ pathname: "/profile/[id]", params: { id: userId } });

Define route params in your route files. Expo Router provides typed route helpers when used with TypeScript.

Why: Typed params prevent runtime errors and improve editor support.

Patterns

  • Create routes under app/ with file names that map to URLs
  • Use _layout.tsx for shared layout, tabs, and stacks
  • Put platform-specific components in Component.ios.tsx and Component.android.tsx
  • Use expo config plugins in app.json / app.config.ts for any native config change
  • Use eas.json for EAS Build profiles

Anti-Patterns

  • Do not set up React Navigation manually in Expo projects
  • Do not use expo build (use EAS Build)
  • Do not edit ios/ or android/ directly in managed workflow
  • Do not use AsyncStorage for auth tokens or secrets
  • Do not use React Native's Image when expo-image is available
  • Do not use CodePush in Expo projects (use expo-updates)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.04%
按下载量换算225

Claude

28.59%
按下载量换算169

Cursor

18.88%
按下载量换算112

Gemini CLI

8.55%
按下载量换算51

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills