ryanthedev/react-native-foundations.skill · Archived

docs

Search React Native official documentation.

First seen Mar 11, 2026

Installation

$ npx skills add ryanthedev/react-native-foundations.skill --skill docs

Summary

  • Search React Native official documentation.
  • Use when answering questions about React Native APIs, components, hooks, layout, navigation, native modules, or platform-specific behavior.
  • Triggers on "React Native", "RN docs", "how does View work", "FlatList props", "native module", "new architecture".

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from ryanthedev/react-native-foundations.skill.

npx skills add ryanthedev/react-native-foundations.skill

Browse all from ryanthedev/react-native-foundations.skill

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 9
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Grep, Glob

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,041 B
  • docs SUMMARY.md 311 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Skill: docs

On load: Read ../../.claude-plugin/plugin.json from this skill's base directory. Display docs v{version} before proceeding.

Search the official React Native documentation to answer questions accurately.


Docs Location

All documentation lives at:

${CLAUDE_SKILL_DIR}/../../refs/react-native-docs/

Workflow

  1. Read ${CLAUDESKILLDIR}/references/manifest.md to find relevant files by title
  2. Grep the docs directory for specific terms if the manifest isn't enough
  3. Read the matched files to extract the answer
  4. Cite the filename when referencing documentation

Search Strategy

Need Tool Example
Find which file covers a topic Read references/manifest.md, scan titles "Which file covers FlatList?"
Find specific API/prop/method Grep docs directory Grep "onEndReached"
Find all files mentioning a concept Grep with glob *.md Grep "useAnimatedStyle" --glob "*.md"
Read a known doc Read the file directly Read docs/flatlist.md

File Structure

  • Docs are Docusaurus markdown with YAML frontmatter (id, title, description)
  • Most files are self-contained API reference pages (~200 lines)
  • Subdirectories: the-new-architecture/, releases/, legacy/
  • Files starting with _ are partials (imported by other docs)

Tips

  • Component docs include props tables — grep for prop names directly
  • API docs (e.g., animated.md, layoutanimation.md) cover usage patterns and method signatures
  • The the-new-architecture/ subdirectory covers Turbo Modules, Fabric, and the new renderer
  • Files with in the title are deprecated APIs