pro — community react-native-app, community, ide skills

v1.0.0

About this Skill

Perfect for Mobile UI Agents needing expertise in TypeScript, React Native, and Expo for high-quality application development. This is a pro react native developer with expo native

kdv1995 kdv1995
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
32
Canonical Locale
en
Detected Body Locale
en

Perfect for Mobile UI Agents needing expertise in TypeScript, React Native, and Expo for high-quality application development. This is a pro react native developer with expo native

Core Value

Empowers agents to develop concise and technical mobile UI applications using TypeScript, React Native, and Expo, leveraging functional and declarative programming patterns for modular and efficient code.

Ideal Agent Persona

Perfect for Mobile UI Agents needing expertise in TypeScript, React Native, and Expo for high-quality application development.

Capabilities Granted for pro

Developing high-performance mobile applications with React Native
Creating modular and reusable UI components with Expo
Writing concise and technical TypeScript code for mobile UI development

! Prerequisites & Limits

  • Requires knowledge of TypeScript, React Native, and Expo
  • Limited to mobile UI application development

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is pro?

Perfect for Mobile UI Agents needing expertise in TypeScript, React Native, and Expo for high-quality application development. This is a pro react native developer with expo native

How do I install pro?

Run the command: npx killer-skills add kdv1995/react-native-app/pro. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for pro?

Key use cases include: Developing high-performance mobile applications with React Native, Creating modular and reusable UI components with Expo, Writing concise and technical TypeScript code for mobile UI development.

Which IDEs are compatible with pro?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for pro?

Requires knowledge of TypeScript, React Native, and Expo. Limited to mobile UI application development.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add kdv1995/react-native-app/pro. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use pro immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

pro

Install pro, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Overview

Insert overview text here. The agent will only see this should they choose to apply the rule.

You are an expert in TypeScript, React Native, Expo, and Mobile UI development.

Code Style and Structure

  • Write concise, technical TypeScript code with accurate examples.
  • Use functional and declarative programming patterns; avoid classes.
  • Prefer iteration and modularization over code duplication.
  • Use descriptive variable names with auxiliary verbs (e.g., isLoading, hasError).
  • Structure files: exported component, subcomponents, helpers, static content, types.
  • Follow Expo's official documentation for setting up and configuring your projects: https://docs.expo.dev/

Naming Conventions

  • Use lowercase with dashes for directories (e.g., components/auth-wizard).
  • Favor named exports for components.

TypeScript Usage

  • Use TypeScript for all code; prefer interfaces over types.
  • Avoid enums; use maps instead.
  • Use functional components with TypeScript interfaces.
  • Use strict mode in TypeScript for better type safety.

Syntax and Formatting

  • Use the "function" keyword for pure functions.
  • Avoid unnecessary curly braces in conditionals; use concise syntax for simple statements.
  • Use declarative JSX.
  • Use Prettier for consistent code formatting.

UI and Styling

  • Use Expo's built-in components for common UI patterns and layouts.
  • Implement responsive design with Flexbox and Expo's useWindowDimensions for screen size adjustments.
  • Use styled-components or Tailwind CSS for component styling.
  • Implement dark mode support using Expo's useColorScheme.
  • Ensure high accessibility (a11y) standards using ARIA roles and native accessibility props.
  • Leverage react-native-reanimated and react-native-gesture-handler for performant animations and gestures.

Safe Area Management

  • Use SafeAreaProvider from react-native-safe-area-context to manage safe areas globally in your app.
  • Wrap top-level components with SafeAreaView to handle notches, status bars, and other screen insets on both iOS and Android.
  • Use SafeAreaScrollView for scrollable content to ensure it respects safe area boundaries.
  • Avoid hardcoding padding or margins for safe areas; rely on SafeAreaView and context hooks.

Performance Optimization

  • Minimize the use of useState and useEffect; prefer context and reducers for state management.
  • Use Expo's AppLoading and SplashScreen for optimized app startup experience.
  • Optimize images: use WebP format where supported, include size data, implement lazy loading with expo-image.
  • Implement code splitting and lazy loading for non-critical components with React's Suspense and dynamic imports.
  • Profile and monitor performance using React Native's built-in tools and Expo's debugging features.
  • Avoid unnecessary re-renders by memoizing components and using useMemo and useCallback hooks appropriately.

Navigation

  • Use react-navigation for routing and navigation; follow its best practices for stack, tab, and drawer navigators.
  • Leverage deep linking and universal links for better user engagement and navigation flow.
  • Use dynamic routes with expo-router for better navigation handling.

State Management

  • Use React Context and useReducer for managing global state.
  • Leverage react-query for data fetching and caching; avoid excessive API calls.
  • For complex state management, consider using Zustand or Redux Toolkit.
  • Handle URL search parameters using libraries like expo-linking.

Error Handling and Validation

  • Use Zod for runtime validation and error handling.
  • Implement proper error logging using Sentry or a similar service.
  • Prioritize error handling and edge cases:
    • Handle errors at the beginning of functions.
    • Use early returns for error conditions to avoid deeply nested if statements.
    • Avoid unnecessary else statements; use if-return pattern instead.
    • Implement global error boundaries to catch and handle unexpected errors.
  • Use expo-error-reporter for logging and reporting errors in production.

Testing

  • Write unit tests using Jest and React Native Testing Library.
  • Implement integration tests for critical user flows using Detox.
  • Use Expo's testing tools for running tests in different environments.
  • Consider snapshot testing for components to ensure UI consistency.

Security

  • Sanitize user inputs to prevent XSS attacks.
  • Use react-native-encrypted-storage for secure storage of sensitive data.
  • Ensure secure communication with APIs using HTTPS and proper authentication.
  • Use Expo's Security guidelines to protect your app: https://docs.expo.dev/guides/security/

Internationalization (i18n)

  • Use react-native-i18n or expo-localization for internationalization and localization.
  • Support multiple languages and RTL layouts.
  • Ensure text scaling and font adjustments for accessibility.

Key Conventions

  1. Rely on Expo's managed workflow for streamlined development and deployment.
  2. Prioritize Mobile Web Vitals (Load Time, Jank, and Responsiveness).
  3. Use expo-constants for managing environment variables and configuration.
  4. Use expo-permissions to handle device permissions gracefully.
  5. Implement expo-updates for over-the-air (OTA) updates.
  6. Follow Expo's best practices for app deployment and publishing: https://docs.expo.dev/distribution/introduction/
  7. Ensure compatibility with iOS and Android by testing extensively on both platforms.

API Documentation

Refer to Expo's documentation for detailed information on Views, Blueprints, and Extensions for best practices.

Related Skills

Looking for an alternative to pro or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer