rn-project-snapshot

rn-project-snapshot is a skill for Claude Code from AndrewDongminYoo/rn-agents-kit. It costs 73 tokens per session (1,225 once invoked), scanned A, original, Apache-2.0.

A read-only snapshot tool for checking a React Native or Expo project's versions, architecture settings, JavaScript engine, package manager, and key configuration files. React Native is a framework for mobile apps, while Expo is a toolkit built around it.

In plain words
What is it for?
Use it to identify whether a project uses Expo or bare React Native, inspect New Architecture and Hermes settings, and find its package manager and configuration files.
Why use it?
It provides a quick starting picture of an unfamiliar mobile project before a deeper audit or upgrade.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the rn-agents-kit plugin — 10 skills shipped together

Good fit Use it to identify whether a project uses Expo or bare React Native, inspect New Architecture and Hermes settings, and find its package manager and configuration files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andrewdongminyoo/rn-agents-kit/rn-project-snapshot
Install

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.

Any agent
npx skills add AndrewDongminYoo/rn-agents-kit --skill rn-project-snapshot
Clone the repo
git clone --depth 1 https://github.com/AndrewDongminYoo/rn-agents-kit

Made for: Claude Code.

Or install rn-agents-kit, the plugin that ships this one along with the rest of its 10 skills.

Wrote 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.

agentmods badge for rn-project-snapshot

README.md
[![agentmods](https://agentmods.dev/badge/skills/andrewdongminyoo/rn-agents-kit/rn-project-snapshot/github.svg)](https://agentmods.dev/skills/andrewdongminyoo/rn-agents-kit/rn-project-snapshot)
Your own site
<a href="https://agentmods.dev/skills/andrewdongminyoo/rn-agents-kit/rn-project-snapshot"><img src="https://agentmods.dev/badge/skills/andrewdongminyoo/rn-agents-kit/rn-project-snapshot/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.

agentmods 80×15 button for rn-project-snapshot

Your own site · 80×15
<a href="https://agentmods.dev/skills/andrewdongminyoo/rn-agents-kit/rn-project-snapshot"><img src="https://agentmods.dev/badge/skills/andrewdongminyoo/rn-agents-kit/rn-project-snapshot.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,225 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00073 $0.01225
Opus 5 $0.00036 $0.00613
Sonnet 5 $0.00015 $0.00245
Haiku 4.5 $0.00007 $0.00122

Measured 5d ago against content hash 59f0bed4812e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

rn-project-snapshot 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 5d 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.

skills/rn-project-snapshot/SKILL.md · 114 lines

How it starts

The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.

RN Project Snapshot — Read-Only Environment & Config Overview

Overview

Surfaces a React Native project's high-level environment and config state by reading stable files (and, optionally, the project's own env command), then routes you to the focused audits for deeper work. This is a read-only reader: it inspects and reports, never mutates, and introduces no new CLI. It stays shallow on purpose — dependency readiness and asset analysis live in their dedicated skills, not here.

When to Use

  • "what's the state of this RN project?", "is the New Architecture on here?", "bare or Expo?"
  • First look at an unfamiliar RN repo, before deciding what to audit or upgrade
  • Quick pre-upgrade orientation

Prerequisites

  • A React Native or Expo project
  • Node for the optional npx enrichment; offline still works from file reads alone (with a stated caveat)
  • Read-only — no clean git tree required

Quick Steps (all read-only)

1 — Detect project type and versions

cat package.json                 # react-native / expo / react versions, scripts
ls package-lock.json yarn.lock pnpm-lock.yaml bun.lockb 2>/dev/null   # package manager

2 — Read New Architecture + Hermes flags across platforms

cat android/gradle.properties 2>/dev/null    # newArchEnabled, hermesEnabled
cat app.json app.config.* 2>/dev/null        # Expo newArchEnabled
ls ios/Podfile ios/*.xcworkspace 2>/dev/null # iOS native shell present?

3 — Optional enrichment (network)

npx react-native info        # bare projects — environment report
npx expo config --json       # Expo projects — resolved config

4 — Present the snapshot and route

Show the values as a compact snapshot. Where a flag differs across platforms, surface the difference — do not decide readiness here. Then route to the right audit (see Routing).

How It Works

package.json + lockfiles ─┐
android/gradle.properties ─┤   read stable files
app.json / app.config.*  ─┤   (+ optional npx env command)   ──►  compact snapshot
ios/Podfile              ─┘                                         (versions · flags · config presence)
                                                                          │
                                                                          ▼  interpret + route (no readiness verdict)
                                                       rn-asset-hygiene · rn-newarch-audit

Read the full file on GitHub · 114 lines

Changes

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.

  1. 5d ago Changed · +73 tokens per session 59f0bed4812e
  2. 10d ago First seen · 114 lines · 0 tokens per session scan A c7c2e25c385d

Subscribe to this mod's changes

rn-project-snapshot is a skill published in the GitHub repository AndrewDongminYoo/rn-agents-kit (2 stars, last pushed 6d ago), licensed Apache-2.0. It adds 73 tokens to every session and 1,225 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

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…

ericrisco/rsc-harness · 90 tokens

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…

ericrisco/rsc-harness · 79 tokens

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.

gabelul/stitch-kit · 69 tokens

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.

gabelul/stitch-kit · 65 tokens

validate-mobile

Run a Maestro flow on an explicitly selected iOS or Android device and report behavioral evidence.

johnkozaris/jko-claude-plugins · 20 tokens

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…

ShipWithAI/shipwithai-plugins · 85 tokens