Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计通过

expo-bulletproof-structure世博会防弹结构

Agent Skill

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

总安装

210

周安装

9

GitHub Stars

公开资料未说明

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/b4r7x/agent-skills --skill expo-bulletproof-structure

简介

为 Expo/React Native 应用提供健壮的项目结构模板,适配文件路由体系。

  • 采用 features 层集中业务逻辑,app 层仅负责路由映射的单向依赖架构。
  • 包含认证流、标签页导航和动态路由的完整目录组织示例。
  • 适用于中大型项目初始化,确保代码分层清晰且易于扩展维护。
  • expo-bulletproof-structure 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Bulletproof Expo Structure

Project structure pattern for Expo/React Native apps. Adapted from Bulletproof React for the mobile ecosystem with Expo Router's file-based routing.

Core Principle

The app/ directory is a thin routing layer. All business logic lives in features/. Shared code lives in top-level directories. The dependency graph flows one direction only.

Directory Structure

app/                    # ROUTING ONLY — maps URLs to screens
  (tabs)/               # Tab group layout
    index.tsx           # Home tab route
    explore.tsx         # Explore tab route
    _layout.tsx         # Tab navigator config
  (auth)/               # Auth flow group
    sign-in.tsx
    sign-up.tsx
    _layout.tsx
  _layout.tsx           # Root layout (providers, theme, navigation container)
  modal.tsx             # Modal routes

features/               # BUSINESS LOGIC — one folder per feature domain
  home/
    components/         # UI specific to this feature
    hooks/              # Hooks specific to this feature
    api/                # Data fetching (queries, mutations)
    utils/              # Feature-specific utilities
    store/              # Feature-local state (Zustand slice, context)
    types.ts            # Feature types
    index.ts            # Public API — REQUIRED

components/             # SHARED UI — used across multiple features
  ui/                   # Primitives: button, input, card, icon
  layout/               # Screen wrappers, safe area, containers

lib/                    # GLOBAL UTILITIES — API client, storage, analytics
hooks/                  # GLOBAL HOOKS — use-color-scheme, use-theme-color
constants/              # GLOBAL CONSTANTS — theme, colors, config
types/                  # GLOBAL TYPES — navigation types, API types
providers/              # CONTEXT PROVIDERS — auth, theme, app-providers
assets/                 # Static files — images, fonts

What Goes Where

CodeLocationExample
Route/screen entry pointapp/app/(tabs)/index.tsx
Feature screen UI + logicfeatures/<name>/components/features/home/components/home-screen.tsx
Feature data fetchingfeatures/<name>/api/features/home/api/use-get-stamps.ts
Feature hooksfeatures/<name>/hooks/features/home/hooks/use-stamps.ts
Reusable button/card/inputcomponents/ui/components/ui/button.tsx
Layout wrapperscomponents/layout/components/layout/screen-wrapper.tsx
API client setuplib/lib/api-client.ts
Global hookshooks/hooks/use-color-scheme.ts
Theme configconstants/constants/theme.ts

Dependency Rule

app/ --> features/ --> components/, lib/, hooks/, constants/, types/, providers/
  • app/ imports from features/ (and shared code for layouts)
  • features/ imports from shared code
  • Shared code NEVER imports from features/ — this is the most critical rule
  • Cross-feature imports go through index.ts only

Route Files Must Be Thin

Route files in app/ exist only to connect a URL to a screen:

// app/(tabs)/index.tsx — CORRECT
import { HomeScreen } from '@/features/home';

export default function HomeRoute() {
  return <HomeScreen />;
}

NEVER put in route files:

  • Data fetching
  • Business logic
  • Complex component trees
  • State management
  • Styled components beyond basic wrappers

Feature Module Anatomy

Every feature MUST have an index.ts barrel file. Subfolders are created on-demand.

Required

  • index.ts — public API. Other code imports ONLY from here.

On-Demand (create when needed)

  • components/ — feature-specific UI
  • hooks/ — feature-specific hooks
  • api/ — data fetching (React Query hooks, fetch wrappers)
  • utils/ — feature-specific helpers
  • store/ — feature-local state (Zustand slice or context)
  • types.ts — feature types

Public API Pattern

// features/home/index.ts
export { HomeScreen } from './components/home-screen';
export { useStamps } from './hooks/use-stamps';
export type { Stamp } from './types';

Other features and app/ files MUST import from @/features/home, never from @/features/home/components/home-screen.

Expo Router Conventions

Layouts

  • _layout.tsx — defines the navigator for a directory (Stack, Tabs, Drawer)
  • Every route group MUST have a _layout.tsx

Route Groups

  • (tabs)/ — bottom tab navigator
  • (auth)/ — auth flow (sign-in, sign-up)
  • (app)/ — authenticated app shell
  • Groups with () don't affect the URL path

File Naming

  • index.tsx — default route for a directory
  • [id].tsx — dynamic route parameter
  • [...rest].tsx — catch-all route
  • modal.tsx — presented as modal (configured in parent layout)
  • +not-found.tsx — 404 handler

Settings

// app/_layout.tsx
export const unstable_settings = {
  anchor: '(tabs)', // Initial route group
};

Decision Guide

"Where do I put this code?"

  1. Is it a screen that maps to a URL? → app/ (thin, imports from features)
  2. Is it business logic for one feature? → features/<name>/
  3. Is it a UI component used by 2+ features? → components/
  4. Is it a primitive UI element (button, input)? → components/ui/
  5. Is it a utility used by 2+ features? → lib/
  6. Is it a hook used by 2+ features? → hooks/
  7. Is it a type used by 2+ features? → types/
  8. Is it a context provider? → providers/

"Should this be in features/ or components/?"

  • If it contains business logic or data fetching → features/
  • If it's pure UI with props and no domain knowledge → components/
  • If in doubt, start in features/. Move to components/ when a second feature needs it.

File Naming Conventions

  • kebab-case for all files and directories
  • Component files: stamp-card.tsx
  • Hook files: use-stamps.ts
  • Type files: types.ts
  • Barrel files: index.ts
  • Test files: stamp-card.test.tsx (colocated with source)
  • Platform-specific: icon-symbol.ios.tsx, icon-symbol.tsx (default)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.18%
按下载量换算26

Claude

28.68%
按下载量换算21

Cursor

18.85%
按下载量换算14

Gemini CLI

8.67%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/b4r7x/agent-skills --skill expo-bulletproof-structure 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills