smithery.ai

mobile-navigation

React Navigation patterns for mobile apps including stack, tab, drawer navigators, deep linking, and typed navigation with TypeScript. Use when building navigation structure, handling deep links, or implementing authentication flows.

First seen Apr 29, 2026

Installation

$ npx skills add https://smithery.ai

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 smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

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

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash, Read, Write, Edit, Grep, Glob, WebFetch

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,131 B
  • docs SUMMARY.md 258 B

History

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

SKILL.md

Mobile Navigation

Comprehensive skill for implementing navigation in React Native/Expo apps.

Overview

React Navigation provides flexible navigation for mobile:

  • Stack, Tab, and Drawer navigators
  • Deep linking and universal links
  • Type-safe navigation with TypeScript
  • Authentication flow handling

Use When

This skill is automatically invoked when:

  • Setting up app navigation structure
  • Implementing authentication flows
  • Configuring deep linking
  • Building complex nested navigators

Available Scripts

Script Description
scripts/setup-navigation.sh Install navigation dependencies
scripts/generate-types.sh Generate TypeScript navigation types

Available Templates

Template Description
templates/root-layout.tsx Root layout with auth flow
templates/tabs-layout.tsx Tab navigator layout
templates/navigation-types.ts TypeScript type definitions
templates/linking-config.ts Deep linking configuration

Navigation Structure

app/
├── _layout.tsx           # Root (auth check)
├── (tabs)/
│   ├── _layout.tsx       # Tab navigator
│   ├── index.tsx         # Home tab
│   └── profile.tsx       # Profile tab
├── auth/
│   ├── login.tsx
│   └── register.tsx
└── [id].tsx              # Dynamic route

Best Practices

  1. Use expo-router for file-based routing
  2. Keep navigation types in dedicated file
  3. Implement auth at root level
  4. Configure deep links for both schemes