Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add AndrewDongminYoo/rn-agents-kit --skill rn-newarch-auditgit clone --depth 1 https://github.com/AndrewDongminYoo/rn-agents-kitWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/andrewdongminyoo/rn-agents-kit/rn-newarch-audit)<a href="https://agentmods.dev/skills/andrewdongminyoo/rn-agents-kit/rn-newarch-audit"><img src="https://agentmods.dev/badge/skills/andrewdongminyoo/rn-agents-kit/rn-newarch-audit/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/andrewdongminyoo/rn-agents-kit/rn-newarch-audit"><img src="https://agentmods.dev/badge/skills/andrewdongminyoo/rn-agents-kit/rn-newarch-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00060 | $0.01566 |
| Opus 5 | $0.00030 | $0.00783 |
| Sonnet 5 | $0.00012 | $0.00313 |
| Haiku 4.5 | $0.00006 | $0.00157 |
Grade A, and why
rn-newarch-audit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 124 lines — stays where its author put it; the contents beside it link to each section on GitHub.
RN New Architecture Audit — Is This App Ready?
Overview
Drives the rn-newarch-ready CLI to produce a read-only New Architecture readiness report for a React Native project: the current New Arch enablement state, every dependency classified by support, archived/unmaintained libraries, and app-local native modules still on legacy APIs.
This skill is the judgment + interpretation layer; rn-newarch-ready does the deterministic parsing and classification.
Nothing is ever modified — the audit is the whole job here.
Performing the migration is a separate, explicitly-consented step.
When to Use
- "is my app ready for the New Architecture?", "what blocks enabling New Arch?"
- Planning an RN version upgrade and scoping the New Arch work
- Auditing dependencies before flipping
newArchEnabled - Deciding which libraries to replace, upgrade, or verify first
Prerequisites
- Node ≥ 20 —
rn-newarch-readyrequires it; install withnvm use 20if needed. - A React Native project with dependencies installed (
node_modulespresent) — classification reads each dependency'scodegenConfig, so an uninstalled dep can only be reportednot-installed. - Network for the directory enrichment step; offline still works (
--offline) with reduced coverage, and the tool says so.
Quick Steps
1 — Run the audit (read-only)
npx rn-newarch-ready # human-readable report for the current project
npx rn-newarch-ready ./path/to/app # a specific project
2 — Capture the machine report when you need to reason over it
npx rn-newarch-ready --json
3 — Interpret and present (see Interpreting the Report)
Summarize the verdict and group the findings by action. Change nothing — this skill stops at the report.
How It Works
package.json + node_modules rn-newarch-ready
each dep's codegenConfig ──► local classify ──► supported / unknown / not-native / not-installed
│
reactnative.directory (cached) ─────┤ enrich unknowns (library-level)
▼
likely-supported + archived flag
android/ ios/ app source ──► legacy-API scan ──► app-local native modules to migrate
roll-up ──► verdict: ready | needs-review (READ-ONLY)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 124 lines · 60 tokens per session scan A 47c1f96cca71
rn-newarch-audit is a skill published in the GitHub repository AndrewDongminYoo/rn-agents-kit (2 stars, last pushed 7d ago), licensed Apache-2.0. It adds 60 tokens to every session and 1,566 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
expo
Use when shipping a React Native app with Expo — EAS Build/Submit/Update, eas.json profiles and channels, config plugins, prebuild/CNG, runtime-version policy, OTA updates that never land, SDK upgrades, the New Architecture. NOT RN UI, navigation or native-module authoring (that is react-native), NOT a Dart app (that…
react-native
Use when writing the JS/TS inside a React Native or Expo app — screens, Expo Router navigation, lists, Reanimated gestures, platform forks, offline state, native modules — or killing jank and render storms. NOT eas build/submit/OTA/config-plugin (that is expo), NOT a Dart app (that is flutter), NOT web React/DOM (that…
stitch-swiftui-components
Converts a Stitch mobile screen, a local HTML file, or a URL into SwiftUI views for native iOS apps — VStack/HStack/ZStack layout mapping, Color asset tokens with dark mode, NavigationStack/TabView routing, and Xcode project structure. Only the Stitch route needs an API key.
stitch-react-native-components
Converts a Stitch mobile screen, a local HTML file, or a URL into React Native / Expo components — TypeScript, StyleSheet, Expo Router, dark mode via useColorScheme, and proper touch targets. Cross-platform iOS and Android. Only the Stitch route needs an API key.
validate-mobile
Run a Maestro flow on an explicitly selected iOS or Android device and report behavioral evidence.
mobile-design
Evaluation criteria for grading rendered mobile UI screens. Use when reviewing, critiquing, or self-checking a mobile UI screenshot — especially after any UI edit in an agentic loop — to decide pass/fail and produce concrete fixes. Targets Compose Multiplatform (Android + iOS), Material 3. The mobile counterpart to…