tokens&
For enterprises
Submit
Sign in
tokens&

Build better AI stacks, claim useful opportunities, and give AI infrastructure companies a source-labeled adoption readout they can trust.

For buildersFor enterprises

Product

  • For builders
  • Category rankings
  • Startup credits and perks
  • Agent Skills
  • Platform
  • Submit project, tool, product, or perk

Enterprise

  • Start free company workspace

Community

  • Community
  • Newsletter
  • Events
Xin

© 2026 tokensand, LLC. All rights reserved.

  • Terms
  • Privacy
  • Security
  • Data Processing
  • Status
Agent Skills/React Native library creator
CallstackFrontendSKILL.mdVerified source

Agent Skill

React Native library creator

Create a React Native library with the Callstack incubator workflow and package checks.

Install this skillView repository

Vendor-authored source · MIT license.

Raw SKILL.mdInstall the Tokens& Agent Pack

Skill specification

Declared by Callstack in the package front matter. Trigger conditions are what the coding agent matches on before it loads the skill.

View package fields
React Native library creator SKILL.md front matter fields
Skill namecreate-react-native-library
Trigger conditionsScaffolds React Native libraries with create-react-native-library for standalone libraries or local native modules and views. Use when creating or working on React Native libraries or adding native functionality in an existing app.
Declared licenseMIT

Install create-react-native-library

In a terminal with Node.js, npm and Git, run the command for your agent. The Skills CLI installs the complete package directory, including referenced files within it. Review its install prompt, then start a new agent session. A skill package does not set up an MCP server connection.

Claude Code

.claude/skills/create-react-native-library/SKILL.md

Project skills are committed with the repo. Use the user directory for a personal install across every project.

Project install

npx skills add 'https://github.com/callstackincubator/agent-skills/tree/main/skills/create-react-native-library' --skill 'create-react-native-library' --agent 'claude-code'
Install for all projects instead

Personal install

npx skills add 'https://github.com/callstackincubator/agent-skills/tree/main/skills/create-react-native-library' --skill 'create-react-native-library' --agent 'claude-code' --global

Codex

.agents/skills/create-react-native-library/SKILL.md

Codex reads `.agents/skills/` as its primary location, which is also the cross-platform default other clients honour.

Project install

npx skills add 'https://github.com/callstackincubator/agent-skills/tree/main/skills/create-react-native-library' --skill 'create-react-native-library' --agent 'codex'
Install for all projects instead

Personal install

npx skills add 'https://github.com/callstackincubator/agent-skills/tree/main/skills/create-react-native-library' --skill 'create-react-native-library' --agent 'codex' --global

Cursor

.agents/skills/create-react-native-library/SKILL.md

Cursor also loads `.agents/skills/`, `.claude/skills/`, and `.codex/skills/`, so one committed copy can serve several clients.

Project install

npx skills add 'https://github.com/callstackincubator/agent-skills/tree/main/skills/create-react-native-library' --skill 'create-react-native-library' --agent 'cursor'
Install for all projects instead

Personal install

npx skills add 'https://github.com/callstackincubator/agent-skills/tree/main/skills/create-react-native-library' --skill 'create-react-native-library' --agent 'cursor' --global

GitHub Copilot

.agents/skills/create-react-native-library/SKILL.md

The Skills CLI uses the shared `.agents/skills/` directory for Copilot project installs.

Project install

npx skills add 'https://github.com/callstackincubator/agent-skills/tree/main/skills/create-react-native-library' --skill 'create-react-native-library' --agent 'github-copilot'
Install for all projects instead

Personal install

npx skills add 'https://github.com/callstackincubator/agent-skills/tree/main/skills/create-react-native-library' --skill 'create-react-native-library' --agent 'github-copilot' --global

SKILL.md

View raw source

Published by Callstack under MIT. Rendered from the package in github.com/callstackincubator/agent-skills/tree/main/skills/create-react-native-library.

Read full skill instructions

Create React Native Library

Overview

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:

  • JS-only library that may use other React Native libraries
  • Native modules that expose native functionality to JavaScript
  • Native UI components that render native views in React Native

Choose one flow first:

  • Use [scaffold-library.md][scaffold-library] when creating a new library that may be published to npm
  • Use [local-library.md][local-library] when exposing native functionality in a React Native app

When to Apply

Use this skill when:

  • Creating or working on a React Native library with create-react-native-library
  • Creating a native module or view in an existing app
  • Wrapping native SDKs and exposing them to React Native

Quick Reference

# 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

References

FileDescription
[scaffold-library.md][scaffold-library]Scaffold a new library and default to the Expo example
[local-library.md][local-library]Add a local library to an existing app with autolinking

Problem -> Skill Mapping

ProblemStart With
Need a new library scaffold[scaffold-library][scaffold-library]
Need to add a local native library to an app[local-library][local-library]

[scaffold-library]: references/scaffold-library.md [local-library]: references/local-library.md

More Callstack Agent Skills

All Agent Skills

React Native upgrader

Upgrade React Native projects with version checks, migration steps, and validation commands.

Frontend