React Native HiFi is a complete React Native & Expo development workflow for your coding agents, built on top of a set of composable "skills" and initial instructions that make sure your agent uses them.
Built on Superpowers by Jesse Vincent, with production skills from Software Mansion and Callstack.
It starts from the moment you fire up your coding agent. As soon as it sees that you're building something, it doesn't just jump into trying to write code. Instead, it steps back and asks you what you're really trying to do.
Once it's teased a spec out of the conversation, it shows it to you in chunks short enough to actually read and digest.
After you've signed off on the design, your agent puts together an implementation plan that's clear enough for an enthusiastic junior engineer with poor taste, no judgement, no project context, and an aversion to testing to follow. It emphasizes true red/green TDD with React Native Testing Library, YAGNI (You Aren't Gonna Need It), and DRY.
Next up, once you say "go", it launches a subagent-driven-development process, having agents work through each engineering task, inspecting and reviewing their work, and continuing forward. It's not uncommon for Claude to be able to work autonomously for a couple hours at a time without deviating from the plan you put together.
On top of the core workflow, React Native HiFi includes specialized skills for Expo development: building native UI with SwiftUI and Jetpack Compose, setting up Tailwind CSS, configuring dev clients, creating API routes, fetching data natively, and testing on real devices through the agent-device skill.
Note: Installation differs by platform. Pick your platform below.
Register the marketplace, then install:
/plugin marketplace add bidah/react-native-hifi-marketplace
/plugin install react-native-hifi@react-native-hifi-marketplaceTell Codex:
Fetch and follow instructions from https://raw.githubusercontent.com/bidah/react-native-hifi/refs/heads/main/.codex/INSTALL.md
Detailed docs: docs/README.codex.md
Tell OpenCode:
Fetch and follow instructions from https://raw.githubusercontent.com/bidah/react-native-hifi/refs/heads/main/.opencode/INSTALL.md
Detailed docs: docs/README.opencode.md
gemini extensions install https://github.com/bidah/react-native-hifiTo update:
gemini extensions update react-native-hifiStart a new session in your chosen platform and ask for something that should trigger a skill (for example, "help me plan this feature" or "let's build a new screen"). The agent should automatically invoke the relevant react-native-hifi skill.
- brainstorming - Socratic design refinement before writing any code
- writing-plans - Detailed implementation plans broken into bite-sized tasks
- executing-plans - Batch execution with human checkpoints
- subagent-driven-development - Fast iteration with two-stage review (spec compliance, then code quality)
- dispatching-parallel-agents - Concurrent subagent workflows
- using-git-worktrees - Parallel development branches
- finishing-a-development-branch - Merge/PR decision workflow
- test-driven-development - RED-GREEN-REFACTOR cycle with React Native Testing Library (includes testing anti-patterns reference)
- systematic-debugging - 4-phase root cause process (includes root-cause-tracing, defense-in-depth, condition-based-waiting techniques)
- verification-before-completion - Ensure it's actually fixed
- requesting-code-review - Pre-review checklist
- receiving-code-review - Responding to feedback
- building-native-ui - Build native UI components using platform APIs
- expo-api-routes - Create and manage Expo API routes
- expo-dev-client - Configure and use Expo dev clients for native module development
- expo-tailwind-setup - Set up Tailwind CSS (NativeWind) in Expo projects
- expo-ui-jetpack-compose - Build native Android UI with Jetpack Compose via Expo Modules
- expo-ui-swift-ui - Build native iOS UI with SwiftUI via Expo Modules
- native-data-fetching - Efficient data fetching patterns for React Native
- react-native-testing - React Native Testing Library patterns (RNTL v13/v14), query strategies, async patterns, anti-patterns
- use-dom - Use the
use domdirective for web components in React Native - agent-device - Connect your coding agent to a physical or virtual device for testing
Production-grade patterns and guides from Software Mansion for the New Architecture.
- software-mansion-best-practices - Routing table for sub-skills covering:
- animations - Reanimated 4, CSS transitions, layout animations, 120fps performance
- gestures - Gesture Handler composition, tap handling, Reanimated patterns
- svg - react-native-svg usage, animation patterns, decision guides
- audio - AudioContext, buffer management, visualizations, session handling
- rich-text - react-native-enriched formatting, mentions, links
- on-device-ai - React Native ExecuTorch: LLMs, computer vision, audio, NLP, OCR
- radon-mcp - Radon IDE MCP tools for debugging, logs, screenshots, component trees
- haptics - Haptic feedback patterns (stub)
- multimedia - Media handling (stub)
- multithreading - Threading patterns (stub)
Performance optimization and tooling from Callstack, based on "The Ultimate Guide to React Native Optimization".
- callstack-best-practices - Performance optimization with 29 reference files:
- JS/React - FPS measurement, React profiling, FlashList, atomic state (Jotai/Zustand), React Compiler, Reanimated worklets, bottom sheets, uncontrolled components, memory leaks, concurrent React
- Native - Turbo Modules, native profiling (Xcode Instruments/Android Studio), TTI measurement, threading model, memory patterns, view flattening, Android 16kb alignment
- Bundling - Bundle analysis (source-map-explorer), barrel exports, tree shaking, R8 shrinking, Hermes mmap, Re.Pack code splitting, native assets, library size evaluation
- upgrading-react-native - Full RN upgrade workflow: rn-diff-purge template diffs, dependency triage, React 19 alignment, Expo SDK steps, monorepo targeting, verification checklists
- react-native-brownfield-migration - Incremental adoption of React Native in existing native apps via @callstack/react-native-brownfield (XCFramework/AAR packaging, phased integration)
- github-actions - GitHub Actions workflow patterns for React Native iOS simulator and Android emulator cloud builds with downloadable artifacts
- writing-skills - Create new skills following best practices
- using-react-native-hifi - Introduction to the skills system
-
brainstorming - Activates before writing code. Refines rough ideas through questions, explores alternatives, presents design in sections for validation. Saves design document.
-
using-git-worktrees - Activates after design approval. Creates isolated workspace on new branch, runs project setup, verifies clean test baseline.
-
writing-plans - Activates with approved design. Breaks work into bite-sized tasks (2-5 minutes each). Every task has exact file paths, complete code, verification steps.
-
subagent-driven-development or executing-plans - Activates with plan. Dispatches fresh subagent per task with two-stage review (spec compliance, then code quality), or executes in batches with human checkpoints.
-
test-driven-development - Activates during implementation. Enforces RED-GREEN-REFACTOR with React Native Testing Library: write failing test, watch it fail, write minimal code, watch it pass, commit. Deletes code written before tests.
-
requesting-code-review - Activates between tasks. Reviews against plan, reports issues by severity. Critical issues block progress.
-
finishing-a-development-branch - Activates when tasks complete. Verifies tests, presents options (merge/PR/keep/discard), cleans up worktree.
The agent checks for relevant skills before any task. Mandatory workflows, not suggestions.
- Test-Driven Development - Write tests first using React Native Testing Library. Every component, hook, and screen gets tested before implementation.
- Expo best practices - Leverage Expo SDK, Expo Router, EAS Build, and the managed workflow wherever possible. Use config plugins and dev clients when native code is needed.
- Native-first development - When building custom UI, prefer platform-native approaches (SwiftUI on iOS, Jetpack Compose on Android) via Expo Modules over JavaScript-only workarounds.
- Device testing with agent-device - Real device validation is part of the workflow, not an afterthought. The agent-device skill connects your coding agent directly to physical or virtual devices.
- Systematic over ad-hoc - Process over guessing. Follow the workflow.
- Complexity reduction - Simplicity as primary goal. YAGNI and DRY.
- Evidence over claims - Verify before declaring success. Tests pass, the app runs, the device shows the right screen.
Skills live directly in this repository. To contribute:
- Fork the repository
- Create a branch for your skill
- Follow the
writing-skillsskill for creating and testing new skills - Submit a PR
See skills/writing-skills/SKILL.md for the complete guide.
Skills update automatically when you update the plugin:
/plugin update react-native-hifiMIT License - see LICENSE file for details