From react-native-brownfield-migration
Scaffolds React Native libraries with create-react-native-library for standalone libraries, local native modules, or native UI views. Use when creating or working on React Native libraries or adding native functionality in an existing app.
How this skill is triggered — by the user, by Claude, or both
Slash command
/react-native-brownfield-migration:create-react-native-libraryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to scaffold a standalone React Native library or a local library inside an existing app, then continue with the correct implementation docs.
Use this skill to scaffold a standalone React Native library or a local library inside an existing app, then continue with the correct implementation docs.
Examples:
Choose one flow first:
Use this skill when:
create-react-native-library# Inspect current options before scaffolding
npx create-react-native-library@latest --help
# Scaffold a library with turbo modules and the Expo example app
npx create-react-native-library@latest awesome-library \
--no-interactive \
--yes \
--description "A brief description of the library" \
--type turbo-module \
--languages kotlin-objc \
--example expo
# Scaffold a local Turbo Module inside an existing app
cd MyApp
npx create-react-native-library@latest awesome-library \
--local \
--no-interactive \
--yes \
--description "A brief description of the library" \
--type turbo-module \
--languages kotlin-objc
| File | Description |
|---|---|
| scaffold-library.md | Scaffold a new library and default to the Expo example |
| local-library.md | Add a local library to an existing app with autolinking |
| Problem | Start With |
|---|---|
| Need a new library scaffold | scaffold-library |
| Need to add a local native library to an app | local-library |
2plugins reuse this skill
First indexed Jul 7, 2026
npx claudepluginhub callstackincubator/agent-skills --plugin react-native-brownfield-migrationGuides creation of React Native native modules using Expo Modules API, Turbo Modules, or Fabric Components with TypeScript APIs, Swift iOS, and Kotlin Android implementations.
Patterns for production React Native apps with Expo, navigation, native modules, offline sync, and cross-platform development. Helpful for starting projects, implementing navigation, native integrations, and optimizing performance.
Provides production patterns for React Native apps with Expo: navigation, native modules, offline sync, cross-platform development. Use when architecting or building React Native projects.