From mobile
Expo and React Native patterns for mobile development with EAS Build, SDK integration, and native module configuration. Use when building Expo apps, configuring native features, or setting up app signing for store deployment.
npx claudepluginhub vanman2024/ai-dev-marketplace --plugin mobileThis skill is limited to using the following tools:
Comprehensive skill for building production mobile apps with Expo and React Native.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
Comprehensive skill for building production mobile apps with Expo and React Native.
Expo provides managed workflow for React Native development:
This skill is automatically invoked when:
CRITICAL: Never commit signing credentials
❌ NEVER commit: .p12, .mobileprovision, keystore files
✅ ALWAYS use: eas secret:create for sensitive values
✅ ALWAYS add to .gitignore: *.jks, *.p12, *.mobileprovision
| Script | Description |
|---|---|
scripts/init-expo-project.sh | Initialize new Expo project with TypeScript |
scripts/setup-eas-build.sh | Configure EAS Build profiles |
scripts/setup-notifications.sh | Set up push notifications |
| Template | Description |
|---|---|
templates/app.json | Expo app configuration |
templates/eas.json | EAS Build configuration |
templates/env.example | Environment variables template |
# Create new project
npx create-expo-app my-app --template tabs
# EAS Build
eas build --platform ios --profile development
eas build --platform android --profile preview
# Submit to stores
eas submit --platform ios
eas submit --platform android