upgrade-react-navigation logo

upgrade-react-navigation

upgrade react navigation

SKILL.md

Full skill instructions

Upgrade React Navigation

Goal

Upgrade React Navigation to the next major version and handle all required breaking changes while preserving existing navigation behavior.

When to use

You are upgrading React Navigation major version (6.x -> 7.x or 7.x -> 8.x).

Adaptation policy

Treat the patterns in this skill as canonical starting points, not an exhaustive list. The absence of an exact matching example is not a blocker.

  • Map local code to the closest pattern here and adapt it; infer an equivalent when the structure differs.
  • Prefer the simplest upgrade that preserves behavior.
  • Keep changes minimal and upgrade only the affected code.

When to ask for clarification

Inspect the local code first.

If, after reading the relevant navigator and the upgrade reference, you cannot determine with high confidence whether an API changed or how to update it, pause and ask the user before editing code.

Ask for clarification when:

  • A navigator uses APIs that are not covered in the official documentation or the upgrade reference.
  • The upgrade would require assumptions about which behavior changes are acceptable.

References

Check @react-navigation/native in package.json first.

Load exactly one reference file unless explicitly comparing versions.

Verification

After upgrading:

  • Determine the package manager from package.json or the lockfile.
  • Run the existing type checker, linter, and relevant tests when scripts are available.
  • Work through the "Automated checks" and "Manual checks" in the loaded reference. If a step cannot run, report why.