Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

rn-upgrade升级

Agent Skill

rn-upgrade 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

240

周安装

10

GitHub Stars

公开资料未说明

下载量

80
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rn-upgrade(升级)
来源仓库:https://github.com/nielsmadan/agentic-coding
仓库路径:skills/rn-upgrade
安装命令:
npx skills add https://github.com/nielsmadan/agentic-coding --skill rn-upgrade
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/nielsmadan/agentic-coding --skill rn-upgrade

简介

用于 React Native 项目升级相关的信息检索。

  • 适合查找版本迁移指南或依赖冲突解决方案。rn-upgrade 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可辅助分析原生模块兼容性和构建配置变更。
  • 安装前建议确认是否会触发网络请求或文件读写。
  • 需结合项目当前版本和目标版本核验升级路径。

SKILL.md

React Native Upgrade Command

You are tasked with upgrading a React Native application to the version specified in $ARGUMENTS (or the latest version if not specified).

Usage

/rn-upgrade 0.76
/rn-upgrade 0.75.4
/rn-upgrade          # upgrades to latest stable

Gotchas

  • The rn-diff-purge diff reflects a pristine RN template only. Custom native code (modified MainApplication.kt, AppDelegate.swift) may be silently overwritten because it's not in the diff.
  • Multi-version jumps (e.g., 0.73 → 0.76) require building and testing at each intermediate version. A breakage at 0.74 that is masked until 0.76 is much harder to diagnose.

Instructions

  1. Determine versions:

- Check the current React Native version in package.json - If $ARGUMENTS is not specified, fetch the latest stable version from https://github.com/facebook/react-native/releases - Record: current version = X, target version = Y

  1. Research and validate:

- Fetch the release notes for the target version from https://github.com/facebook/react-native/releases/tag/v{target} - Use research-online if release notes mention major changes (e.g., New Architecture default, Kotlin/Swift migration) - List any breaking changes that affect this project

  1. Fetch the upgrade diff:

- Construct the diff URL: https://raw.githubusercontent.com/react-native-community/rn-diff-purge/diffs/diffs/{current}..{target}.diff - Fetch and analyze the diff to understand all required changes - If the diff is unavailable, fall back to the Upgrade Helper UI: https://react-native-community.github.io/upgrade-helper/?from={current}&to={target}

  1. Check dependency compatibility:

- List all third-party native modules from package.json - For each critical dependency, check its GitHub repo releases/changelog for target RN version support: - Firebase: https://github.com/invertase/react-native-firebase/releases - Navigation: https://github.com/react-navigation/react-navigation/releases - Reanimated: https://github.com/software-mansion/react-native-reanimated/releases - Gesture Handler: https://github.com/software-mansion/react-native-gesture-handler/releases - Custom native modules in the project - Flag any library that hasn't released a compatible version yet and recommend: pin, fork, or find alternative

  1. Plan the upgrade:

- Create a task list with TaskCreate, broken into phases: - Phase 1: Dependency updates (package.json) - Phase 2: Android native changes (MainApplication, Gradle, gradle.properties) - Phase 3: iOS native changes (AppDelegate, Podfile, Info.plist,.pbxproj) - Phase 4: Library-specific migrations - Phase 5: Install dependencies and pods - Use EnterPlanMode to present the plan to the user for approval before making changes

  1. Execute the upgrade:

- Update package.json with new React Native and React versions - Update all @react-native/* packages to match the target version - Apply native code changes from the diff, preserving: - Custom package names/bundle identifiers - Third-party SDK integrations (e.g., Firebase, analytics, crash reporting) - Custom build configurations - Existing native modules - Update Gradle wrapper if required by the diff - Enable/configure New Architecture if required - Install dependencies: yarn install (or npm install) - Install iOS pods: cd ios && pod install

  1. Important considerations:

- ALWAYS preserve custom native code integrations - Replace template package names (e.g., com.helloworld) with the project's actual package names - Check for react-native-fast-image compatibility (may need @d11/react-native-fast-image fork) - Update related dependencies if needed (e.g., react-native-bootsplash, react-native-safe-area-context) - Never skip steps without user confirmation

  1. Post-upgrade checklist:

- Provide a testing checklist including: - Clean builds for both platforms (cd android &&./gradlew clean, Xcode clean build folder) - New Architecture verification (if enabled) - Third-party integrations testing - Navigation and animations - Device-specific features (camera, location, notifications, etc.)

  1. Documentation:

- Summarize all changes made - List any manual follow-up actions required - Note any dependencies that still need updates - Provide links to relevant release notes

Examples

Single version upgrade:

/rn-upgrade 0.76

Upgrades from current version (e.g., 0.75.3) to 0.76. Fetches the diff from rn-diff-purge, checks dependency compatibility, plans changes, and executes after approval.

Multi-version jump:

/rn-upgrade 0.76

When current version is 0.73 or older, the skill upgrades incrementally: 0.73 -> 0.74 -> 0.75 -> 0.76, one major version at a time, validating builds between each jump.

Troubleshooting

ProblemSolution
pod install fails with version conflictsRun cd ios && pod repo update && pod install. If still failing, delete Podfile.lock and Pods/ then retry.
Gradle build fails after upgradeClear caches: cd android &&./gradlew clean. Check that gradle-wrapper.properties matches the version from the diff.
Metro bundler can't resolve modulesClear Metro cache: npx react-native start --reset-cache. Also delete node_modules and reinstall.
Xcode build fails with "framework not found"Run cd ios && pod deintegrate && pod install. If using use_frameworks!, check compatibility with native modules.
New Architecture bridge errorsVerify all native modules support the New Architecture. Check newArchEnabled in gradle.properties (Android) and Podfile flags (iOS).
Diff URL returns 404The exact patch version may not exist in rn-diff-purge. Use the nearest available version or the Upgrade Helper UI.

Guidelines

  • Use the manual upgrade approach with diff analysis (not react-native upgrade CLI)
  • Upgrade incrementally (one major version at a time) when jumping multiple versions
  • Enable New Architecture in current version before upgrading if it's required in target
  • Clear all caches after upgrade (Metro, Gradle, Pods, Derived Data)
  • Test thoroughly on both iOS and Android before considering upgrade complete

Resources


Start by determining the current and target versions, then proceed with research and planning before making any changes.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.48%
按下载量换算26

Claude

31.65%
按下载量换算25

Cursor

20.8%
按下载量换算17

Gemini CLI

8.8%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills