From 23c15011b2cd8d4f88c31e3f344988d8390e9e4f Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 10 Feb 2026 10:32:46 +0000 Subject: [PATCH 1/6] Add skills package with upgrade-react-native skill MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Introduces a new `skills/` directory at the repo root, distributed as `@react-native-community/skills`. This follows the pattern established by expo/skills — installable in Claude Code (via plugin marketplace) and Cursor (via Remote Rules). The first skill, `upgrade-react-native`, guides an AI agent through upgrading a React Native Community CLI project by: - Detecting the current react-native version from package.json - Fetching the unified diff from rn-diff-purge (the same data source as the Upgrade Helper web UI) - Mapping template paths (RnDiffApp/) to the actual project - Categorizing changes and presenting a plan before applying - Providing a post-upgrade checklist https://claude.ai/code/session_019uZymRV1PLDAHFYuHxAndc --- skills/.claude-plugin/marketplace.json | 17 ++ skills/README.md | 37 +++++ .../.claude-plugin/plugin.json | 6 + skills/plugins/react-native-upgrade/README.md | 28 ++++ .../skills/upgrade-react-native/SKILL.md | 145 ++++++++++++++++++ .../references/upgrade-helper-api.md | 68 ++++++++ 6 files changed, 301 insertions(+) create mode 100644 skills/.claude-plugin/marketplace.json create mode 100644 skills/README.md create mode 100644 skills/plugins/react-native-upgrade/.claude-plugin/plugin.json create mode 100644 skills/plugins/react-native-upgrade/README.md create mode 100644 skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md create mode 100644 skills/plugins/react-native-upgrade/skills/upgrade-react-native/references/upgrade-helper-api.md diff --git a/skills/.claude-plugin/marketplace.json b/skills/.claude-plugin/marketplace.json new file mode 100644 index 000000000..f0015f464 --- /dev/null +++ b/skills/.claude-plugin/marketplace.json @@ -0,0 +1,17 @@ +{ + "name": "react-native-community-skills", + "owner": { + "name": "React Native Community", + "url": "https://github.com/react-native-community" + }, + "metadata": { + "description": "Official skills for React Native Community CLI projects" + }, + "plugins": [ + { + "name": "react-native-upgrade", + "source": "./plugins/react-native-upgrade", + "description": "Upgrade React Native versions in Community CLI projects using the upgrade helper diff." + } + ] +} diff --git a/skills/README.md b/skills/README.md new file mode 100644 index 000000000..92843eda5 --- /dev/null +++ b/skills/README.md @@ -0,0 +1,37 @@ +# @react-native-community/skills + +Official AI coding agent skills for React Native Community CLI projects. Installable in [Claude Code](https://docs.anthropic.com/en/docs/claude-code) and [Cursor](https://cursor.sh). + +## Available plugins + +| Plugin | Description | +|--------|-------------| +| [react-native-upgrade](./plugins/react-native-upgrade/) | Upgrade React Native versions using the upgrade helper diff | + +## Installation + +### Claude Code + +```sh +# Add the marketplace +/plugin marketplace add react-native-community/react-native-cli skills + +# Install a plugin +/plugin install react-native-upgrade +``` + +### Cursor + +Open **Settings → Rules & Commands → Project Rules → Add Rule → Remote Rule (GitHub)** and enter: + +``` +https://github.com/react-native-community/react-native-cli.git +``` + +Skills are auto-discovered by Cursor based on their descriptions. + +### Other agents + +```sh +bunx skills add react-native-community/react-native-cli skills +``` diff --git a/skills/plugins/react-native-upgrade/.claude-plugin/plugin.json b/skills/plugins/react-native-upgrade/.claude-plugin/plugin.json new file mode 100644 index 000000000..236dbad83 --- /dev/null +++ b/skills/plugins/react-native-upgrade/.claude-plugin/plugin.json @@ -0,0 +1,6 @@ +{ + "name": "react-native-upgrade", + "version": "1.0.0", + "description": "Upgrade React Native versions in Community CLI projects using the upgrade helper diff.", + "author": "React Native Community " +} diff --git a/skills/plugins/react-native-upgrade/README.md b/skills/plugins/react-native-upgrade/README.md new file mode 100644 index 000000000..41fbba9ec --- /dev/null +++ b/skills/plugins/react-native-upgrade/README.md @@ -0,0 +1,28 @@ +# React Native Upgrade + +A skill for upgrading React Native versions in Community CLI projects. Uses diffs from the [React Native Upgrade Helper](https://react-native-community.github.io/upgrade-helper/) to apply changes. + +## Skills + +| Skill | Description | +|-------|-------------| +| [upgrade-react-native](./skills/upgrade-react-native/) | Upgrade react-native to a target version using the upgrade helper diff | + +## Installation + +### Claude Code + +``` +/plugin marketplace add react-native-community/react-native-cli skills +/plugin install react-native-upgrade +``` + +### Cursor + +Open **Settings → Rules & Commands → Project Rules → Add Rule → Remote Rule (GitHub)** and enter: + +``` +https://github.com/react-native-community/react-native-cli.git +``` + +Cursor will auto-discover skills based on their descriptions. diff --git a/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md b/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md new file mode 100644 index 000000000..e9d016b07 --- /dev/null +++ b/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md @@ -0,0 +1,145 @@ +--- +name: upgrade-react-native +description: > + Use when upgrading react-native to a newer version. Handles version bumps, + native project changes (Android/iOS), dependency updates, and breaking change + migration. Invoke with `/upgrade-react-native `. +version: 1.0.0 +license: MIT +--- + +# Upgrade React Native + +Upgrade a React Native Community CLI project to a target version by fetching +and applying the diff from the +[React Native Upgrade Helper](https://react-native-community.github.io/upgrade-helper/). + +## Invocation + +``` +/upgrade-react-native +``` + +- `` — the React Native version to upgrade to (e.g. `0.79.0`). + +## Step-by-step procedure + +Follow every step below **in order**. Do not skip steps. + +### 1. Detect the current React Native version + +Read the project's root `package.json` and extract the `react-native` version +from `dependencies` (or `devDependencies`). Strip any semver range prefix +(`^`, `~`, `>=`, etc.) to get the exact current version string. + +If the current version cannot be determined, stop and ask the user. + +### 2. Validate the target version + +- The target version must be a valid semver string (e.g. `0.79.0`). +- It must be **greater than** the current version. +- Verify the target version exists by checking: + ``` + https://raw.githubusercontent.com/react-native-community/rn-diff-purge/master/RELEASES + ``` + Fetch this file and confirm the target version is listed. If not, report the + closest available versions and ask the user to choose. + +### 3. Fetch the upgrade diff + +Fetch the unified diff between the two versions: + +``` +https://raw.githubusercontent.com/react-native-community/rn-diff-purge/diffs/diffs/...diff +``` + +For example, to upgrade from `0.73.0` to `0.74.0`: + +``` +https://raw.githubusercontent.com/react-native-community/rn-diff-purge/diffs/diffs/0.73.0..0.74.0.diff +``` + +If the diff cannot be fetched (404), it may be because exact patch versions are +not available. Try the nearest minor versions (e.g. `0.73.0` instead of +`0.73.2`). Report what you tried and ask the user if needed. + +### 4. Parse the diff and map file paths + +The diff uses the template project name `RnDiffApp`. Map every path in the diff +to the actual project: + +| Diff path prefix | Actual project path | +|------------------|---------------------| +| `RnDiffApp/` | Project root (`./`) | + +Additionally, replace occurrences of the template identifiers with the project's +actual names: + +| Template value | Replace with | +|----------------|--------------| +| `RnDiffApp` | The project's app name (from `app.json` → `name`, or the `name` field in `package.json`) | +| `rndiffapp` | Lowercase version of the project's app name | +| `com.rndiffapp` | The project's Android package name (from `android/app/build.gradle` or `android/app/src/main/AndroidManifest.xml`) | + +### 5. Review the diff and plan changes + +Before making any edits, review the entire diff and categorize changes: + +1. **Direct applies** — files that exist in the project and whose original + content matches the diff's `-` lines. These can be applied as-is. +2. **Conflicts** — files where the project's content has diverged from the + template (custom modifications). These need manual merging. +3. **New files** — files in the diff that don't exist in the project yet. Create + them. +4. **Deleted files** — files the diff removes. Delete them only if the project + hasn't added custom content to them. + +Present this plan to the user before proceeding. Group changes by area: + +- **Root config files** (`package.json`, `metro.config.js`, `.eslintrc.js`, etc.) +- **iOS native files** (`ios/` directory) +- **Android native files** (`android/` directory) +- **JavaScript/TypeScript source** (if any template source files changed) + +### 6. Apply changes + +Apply the changes following the plan from step 5: + +- For **direct applies**: edit the file to match the diff's `+` lines. +- For **conflicts**: apply the upgrade changes while preserving the project's + customizations. Use your judgement to merge. If uncertain, show both versions + and ask the user. +- For **new files**: create them at the mapped path. +- For **deleted files**: remove them. + +**Important considerations:** + +- When updating `package.json`, update the `react-native` version and any + related dependencies mentioned in the diff (e.g. `react`, `@react-native/*` + packages, Gradle versions, CocoaPods versions). +- Do NOT run `npm install` / `yarn install` / `pod install` automatically. + Inform the user these steps are needed after the upgrade. +- Refer to the [references](#references) section for version-specific guidance + on breaking changes and migration notes. + +### 7. Post-upgrade checklist + +After applying all changes, present the user with a checklist: + +- [ ] Run `npm install` or `yarn install` to update JS dependencies +- [ ] Run `cd ios && bundle exec pod install` (or `npx pod-install`) to update + native iOS dependencies +- [ ] Run a clean build for Android: `cd android && ./gradlew clean` +- [ ] Run a clean build for iOS: `cd ios && xcodebuild clean` +- [ ] Run the app on both platforms to verify it launches +- [ ] Run the project's test suite +- [ ] Review any conflict resolutions for correctness +- [ ] Check the [React Native changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG.md) for additional breaking changes +- [ ] Check the [Upgrade Helper web UI](https://react-native-community.github.io/upgrade-helper/?from=&to=) for any supplementary notes + +## References + +Consult these for version-specific migration guidance: + +- [references/upgrade-helper-api.md](./references/upgrade-helper-api.md) — How + to fetch diffs and version lists programmatically diff --git a/skills/plugins/react-native-upgrade/skills/upgrade-react-native/references/upgrade-helper-api.md b/skills/plugins/react-native-upgrade/skills/upgrade-react-native/references/upgrade-helper-api.md new file mode 100644 index 000000000..22be7240c --- /dev/null +++ b/skills/plugins/react-native-upgrade/skills/upgrade-react-native/references/upgrade-helper-api.md @@ -0,0 +1,68 @@ +# Upgrade Helper API Reference + +The [React Native Upgrade Helper](https://react-native-community.github.io/upgrade-helper/) +uses pre-computed diffs from +[react-native-community/rn-diff-purge](https://github.com/react-native-community/rn-diff-purge). + +## Endpoints + +All endpoints are plain HTTP GET requests with no authentication required. + +### List available versions + +``` +GET https://raw.githubusercontent.com/react-native-community/rn-diff-purge/master/RELEASES +``` + +Returns a plain-text file with one version per line. + +### Fetch a diff between two versions + +``` +GET https://raw.githubusercontent.com/react-native-community/rn-diff-purge/diffs/diffs/{fromVersion}..{toVersion}.diff +``` + +Returns a standard unified diff (same format as `git diff` output). + +**Example:** + +``` +https://raw.githubusercontent.com/react-native-community/rn-diff-purge/diffs/diffs/0.73.0..0.74.0.diff +``` + +### View a file at a specific version + +``` +GET https://raw.githubusercontent.com/react-native-community/rn-diff-purge/release/{version}/RnDiffApp/{path} +``` + +### GitHub compare view + +``` +https://github.com/react-native-community/rn-diff-purge/compare/release/{fromVersion}..release/{toVersion} +``` + +### Web UI with pre-filled versions + +``` +https://react-native-community.github.io/upgrade-helper/?from={fromVersion}&to={toVersion} +``` + +## Diff format notes + +- All file paths are prefixed with `RnDiffApp/` (the template project name). +- The default app name is `RnDiffApp` with Android package `com.rndiffapp`. +- When applying diffs, replace these template names with the actual project's + app name and package identifiers. +- Binary files (e.g. Gradle wrapper JAR) appear as binary patch deltas and + should be downloaded directly from the target version's branch instead of + applying the diff. + +## Platform variants + +| Platform | Repository | Diff URL pattern | +|----------|-----------|-----------------| +| React Native (iOS/Android) | `react-native-community/rn-diff-purge` | `diffs/{from}..{to}.diff` | +| React Native macOS | `acoates-ms/rnw-diff` | `diffs/mac/{from}..{to}.diff` | +| React Native Windows (C++) | `acoates-ms/rnw-diff` | `diffs/cpp/{from}..{to}.diff` | +| React Native Windows (C#) | `acoates-ms/rnw-diff` | `diffs/cs/{from}..{to}.diff` | From 109e4ceadb1091efba11c7e49b3886a4d6d44b20 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 10 Feb 2026 10:39:14 +0000 Subject: [PATCH 2/6] Set skill version to 0.1.0 and use npx instead of bunx https://claude.ai/code/session_019uZymRV1PLDAHFYuHxAndc --- skills/README.md | 2 +- skills/plugins/react-native-upgrade/.claude-plugin/plugin.json | 2 +- .../react-native-upgrade/skills/upgrade-react-native/SKILL.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/skills/README.md b/skills/README.md index 92843eda5..679e1a004 100644 --- a/skills/README.md +++ b/skills/README.md @@ -33,5 +33,5 @@ Skills are auto-discovered by Cursor based on their descriptions. ### Other agents ```sh -bunx skills add react-native-community/react-native-cli skills +npx skills add react-native-community/react-native-cli skills ``` diff --git a/skills/plugins/react-native-upgrade/.claude-plugin/plugin.json b/skills/plugins/react-native-upgrade/.claude-plugin/plugin.json index 236dbad83..1180dfa2c 100644 --- a/skills/plugins/react-native-upgrade/.claude-plugin/plugin.json +++ b/skills/plugins/react-native-upgrade/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "react-native-upgrade", - "version": "1.0.0", + "version": "0.1.0", "description": "Upgrade React Native versions in Community CLI projects using the upgrade helper diff.", "author": "React Native Community " } diff --git a/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md b/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md index e9d016b07..255c734d9 100644 --- a/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md +++ b/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md @@ -4,7 +4,7 @@ description: > Use when upgrading react-native to a newer version. Handles version bumps, native project changes (Android/iOS), dependency updates, and breaking change migration. Invoke with `/upgrade-react-native `. -version: 1.0.0 +version: 0.1.0 license: MIT --- From d2a0eaf5aef3ec1c056274824df44816739481f1 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 10 Feb 2026 10:47:36 +0000 Subject: [PATCH 3/6] Add step to upgrade third-party native dependencies Adds step 7 to the upgrade-react-native skill which scans project dependencies for third-party React Native libraries with native code, fetches their README for a version compatibility table, and proposes version bumps where documented support for the target RN version exists. https://claude.ai/code/session_019uZymRV1PLDAHFYuHxAndc --- .../skills/upgrade-react-native/SKILL.md | 35 ++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md b/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md index 255c734d9..4a69222e2 100644 --- a/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md +++ b/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md @@ -100,6 +100,8 @@ Present this plan to the user before proceeding. Group changes by area: - **iOS native files** (`ios/` directory) - **Android native files** (`android/` directory) - **JavaScript/TypeScript source** (if any template source files changed) +- **Third-party native dependencies** (from step 7 — include any version bumps + identified there) ### 6. Apply changes @@ -122,7 +124,38 @@ Apply the changes following the plan from step 5: - Refer to the [references](#references) section for version-specific guidance on breaking changes and migration notes. -### 7. Post-upgrade checklist +### 7. Update third-party native dependencies + +Scan the project's `dependencies` and `devDependencies` in `package.json` for +third-party React Native libraries that contain **native code** (i.e. they have +an `ios/` or `android/` directory, or are known native modules). Common examples +include `react-native-screens`, `react-native-reanimated`, +`react-native-gesture-handler`, `@react-native-async-storage/async-storage`, +`react-native-svg`, `react-native-safe-area-context`, etc. + +For each candidate dependency: + +1. **Fetch the library's README** from its GitHub repository or npm page. +2. **Look for a React Native version compatibility table or section** — many + native libraries document which versions of their package support which React + Native versions (e.g. a "Compatibility" or "Version Support" table). +3. **If the README contains a compatibility table** that maps the target React + Native version to a specific library version, include that library version + bump in the upgrade plan. +4. **If the README does not mention version compatibility with React Native + versions**, skip the library — do not guess or assume an upgrade is needed. + +Present all proposed dependency bumps alongside the diff-based changes in step 5 +(grouped under a **Third-party native dependencies** section). For each: + +- State the current version, the proposed version, and link to the compatibility + info you found. +- If multiple major versions are compatible, prefer the latest stable version + that supports the target React Native version. + +Apply these version bumps to `package.json` as part of step 6. + +### 8. Post-upgrade checklist After applying all changes, present the user with a checklist: From 7d393a44f5ca6e0b9c5694edd3113770c293e24e Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 11 Feb 2026 11:08:07 +0000 Subject: [PATCH 4/6] Flatten skills directory and simplify install path Remove the intermediate plugins/react-native-upgrade/ layer. Skills now live directly under skills//. This enables a simpler install command: npx skills add react-native-community/skills Merge marketplace.json and plugin.json into a single plugin.json at the skills root. https://claude.ai/code/session_019uZymRV1PLDAHFYuHxAndc --- skills/.claude-plugin/marketplace.json | 17 ----------- skills/.claude-plugin/plugin.json | 16 +++++++++++ skills/README.md | 16 ++++------- .../.claude-plugin/plugin.json | 6 ---- skills/plugins/react-native-upgrade/README.md | 28 ------------------- .../skills => }/upgrade-react-native/SKILL.md | 0 .../references/upgrade-helper-api.md | 0 7 files changed, 22 insertions(+), 61 deletions(-) delete mode 100644 skills/.claude-plugin/marketplace.json create mode 100644 skills/.claude-plugin/plugin.json delete mode 100644 skills/plugins/react-native-upgrade/.claude-plugin/plugin.json delete mode 100644 skills/plugins/react-native-upgrade/README.md rename skills/{plugins/react-native-upgrade/skills => }/upgrade-react-native/SKILL.md (100%) rename skills/{plugins/react-native-upgrade/skills => }/upgrade-react-native/references/upgrade-helper-api.md (100%) diff --git a/skills/.claude-plugin/marketplace.json b/skills/.claude-plugin/marketplace.json deleted file mode 100644 index f0015f464..000000000 --- a/skills/.claude-plugin/marketplace.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "react-native-community-skills", - "owner": { - "name": "React Native Community", - "url": "https://github.com/react-native-community" - }, - "metadata": { - "description": "Official skills for React Native Community CLI projects" - }, - "plugins": [ - { - "name": "react-native-upgrade", - "source": "./plugins/react-native-upgrade", - "description": "Upgrade React Native versions in Community CLI projects using the upgrade helper diff." - } - ] -} diff --git a/skills/.claude-plugin/plugin.json b/skills/.claude-plugin/plugin.json new file mode 100644 index 000000000..76c028255 --- /dev/null +++ b/skills/.claude-plugin/plugin.json @@ -0,0 +1,16 @@ +{ + "name": "@react-native-community/skills", + "version": "0.1.0", + "description": "Official skills for React Native Community CLI projects", + "owner": { + "name": "React Native Community", + "url": "https://github.com/react-native-community" + }, + "skills": [ + { + "name": "upgrade-react-native", + "source": "./upgrade-react-native", + "description": "Upgrade React Native versions in Community CLI projects using the upgrade helper diff." + } + ] +} diff --git a/skills/README.md b/skills/README.md index 679e1a004..9f7c17646 100644 --- a/skills/README.md +++ b/skills/README.md @@ -2,22 +2,18 @@ Official AI coding agent skills for React Native Community CLI projects. Installable in [Claude Code](https://docs.anthropic.com/en/docs/claude-code) and [Cursor](https://cursor.sh). -## Available plugins +## Available skills -| Plugin | Description | -|--------|-------------| -| [react-native-upgrade](./plugins/react-native-upgrade/) | Upgrade React Native versions using the upgrade helper diff | +| Skill | Description | +|-------|-------------| +| [upgrade-react-native](./upgrade-react-native/) | Upgrade React Native versions using the upgrade helper diff | ## Installation ### Claude Code ```sh -# Add the marketplace -/plugin marketplace add react-native-community/react-native-cli skills - -# Install a plugin -/plugin install react-native-upgrade +npx skills add react-native-community/skills ``` ### Cursor @@ -33,5 +29,5 @@ Skills are auto-discovered by Cursor based on their descriptions. ### Other agents ```sh -npx skills add react-native-community/react-native-cli skills +npx skills add react-native-community/skills ``` diff --git a/skills/plugins/react-native-upgrade/.claude-plugin/plugin.json b/skills/plugins/react-native-upgrade/.claude-plugin/plugin.json deleted file mode 100644 index 1180dfa2c..000000000 --- a/skills/plugins/react-native-upgrade/.claude-plugin/plugin.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "react-native-upgrade", - "version": "0.1.0", - "description": "Upgrade React Native versions in Community CLI projects using the upgrade helper diff.", - "author": "React Native Community " -} diff --git a/skills/plugins/react-native-upgrade/README.md b/skills/plugins/react-native-upgrade/README.md deleted file mode 100644 index 41fbba9ec..000000000 --- a/skills/plugins/react-native-upgrade/README.md +++ /dev/null @@ -1,28 +0,0 @@ -# React Native Upgrade - -A skill for upgrading React Native versions in Community CLI projects. Uses diffs from the [React Native Upgrade Helper](https://react-native-community.github.io/upgrade-helper/) to apply changes. - -## Skills - -| Skill | Description | -|-------|-------------| -| [upgrade-react-native](./skills/upgrade-react-native/) | Upgrade react-native to a target version using the upgrade helper diff | - -## Installation - -### Claude Code - -``` -/plugin marketplace add react-native-community/react-native-cli skills -/plugin install react-native-upgrade -``` - -### Cursor - -Open **Settings → Rules & Commands → Project Rules → Add Rule → Remote Rule (GitHub)** and enter: - -``` -https://github.com/react-native-community/react-native-cli.git -``` - -Cursor will auto-discover skills based on their descriptions. diff --git a/skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md b/skills/upgrade-react-native/SKILL.md similarity index 100% rename from skills/plugins/react-native-upgrade/skills/upgrade-react-native/SKILL.md rename to skills/upgrade-react-native/SKILL.md diff --git a/skills/plugins/react-native-upgrade/skills/upgrade-react-native/references/upgrade-helper-api.md b/skills/upgrade-react-native/references/upgrade-helper-api.md similarity index 100% rename from skills/plugins/react-native-upgrade/skills/upgrade-react-native/references/upgrade-helper-api.md rename to skills/upgrade-react-native/references/upgrade-helper-api.md From 8fd6dd163f1f8ce5432926f74d361bd6af66a109 Mon Sep 17 00:00:00 2001 From: Alex Hunt Date: Wed, 11 Feb 2026 14:56:08 +0000 Subject: [PATCH 5/6] Tweak naming, fix install ref --- skills/.claude-plugin/plugin.json | 2 +- skills/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/skills/.claude-plugin/plugin.json b/skills/.claude-plugin/plugin.json index 76c028255..3b103e5fa 100644 --- a/skills/.claude-plugin/plugin.json +++ b/skills/.claude-plugin/plugin.json @@ -1,5 +1,5 @@ { - "name": "@react-native-community/skills", + "name": "react-native-community-skills", "version": "0.1.0", "description": "Official skills for React Native Community CLI projects", "owner": { diff --git a/skills/README.md b/skills/README.md index 9f7c17646..4b525718a 100644 --- a/skills/README.md +++ b/skills/README.md @@ -13,7 +13,7 @@ Official AI coding agent skills for React Native Community CLI projects. Install ### Claude Code ```sh -npx skills add react-native-community/skills +npx skills add https://github.com/react-native-community/cli/tree/main/skills ``` ### Cursor @@ -29,5 +29,5 @@ Skills are auto-discovered by Cursor based on their descriptions. ### Other agents ```sh -npx skills add react-native-community/skills +npx skills add https://github.com/react-native-community/cli/tree/main/skills ``` From 78fc4e73f81d3c2f06885a97529157da964f5a7c Mon Sep 17 00:00:00 2001 From: Alex Hunt Date: Wed, 11 Feb 2026 15:01:48 +0000 Subject: [PATCH 6/6] Update README --- skills/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/skills/README.md b/skills/README.md index 4b525718a..acd1e1047 100644 --- a/skills/README.md +++ b/skills/README.md @@ -1,6 +1,6 @@ -# @react-native-community/skills +# react-native-community-skills (experimental) -Official AI coding agent skills for React Native Community CLI projects. Installable in [Claude Code](https://docs.anthropic.com/en/docs/claude-code) and [Cursor](https://cursor.sh). +Official Agent Skills for React Native Community CLI projects. ## Available skills @@ -31,3 +31,7 @@ Skills are auto-discovered by Cursor based on their descriptions. ```sh npx skills add https://github.com/react-native-community/cli/tree/main/skills ``` + +## License + +MIT