rn-eas-profile-audit

rn-eas-profile-audit is a skill for Claude Code from AndrewDongminYoo/rn-agents-kit. It costs 32 tokens per session (915 once invoked), scanned A, original, Apache-2.0.

A read-only resolver for one Expo EAS build profile and its inheritance chain in eas.json. Expo EAS is Expo's service and tooling for building apps, and a profile is a named set of build settings.

In plain words
What is it for?
Use it to inspect the final iOS Simulator or other build settings before reviewing a mobile build or continuous-integration workflow.
Why use it?
It reveals the effective settings after inherited values are combined without editing the configuration or running a build.

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 inspect the final iOS Simulator or other build settings before reviewing a mobile build or continuous-integration workflow.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andrewdongminyoo/rn-agents-kit/rn-eas-profile-audit
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-eas-profile-audit
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-eas-profile-audit

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

agentmods 80×15 button for rn-eas-profile-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/andrewdongminyoo/rn-agents-kit/rn-eas-profile-audit"><img src="https://agentmods.dev/badge/skills/andrewdongminyoo/rn-agents-kit/rn-eas-profile-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 915 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.00032 $0.00915
Opus 5 $0.00016 $0.00458
Sonnet 5 $0.00006 $0.00183
Haiku 4.5 $0.00003 $0.00092

Measured 7d ago against content hash 138773903cdd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

rn-eas-profile-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 7d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (rn-eas-profile-audit.mjs, rn-eas-profile-audit.test.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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-eas-profile-audit/SKILL.md · 97 lines

How it starts

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

RN EAS Profile Audit

Overview

Runs the bundled rn-eas-profile-audit.mjs CLI to resolve one eas.json build profile. The CLI follows the selected profile's extends chain and prints the effective JSON configuration. It reads one JSON file and does not edit files, inspect a GitHub Actions workflow, authenticate to EAS, run a build, or identify an artifact. It accepts strict JSON only. Use EAS CLI for an eas.json file that uses JSON5 comments or trailing commas.

When to Use

  • "resolve this EAS build profile"
  • "show the effective iOS simulator setting after profile inheritance"
  • "check an eas.json profile chain before reviewing a CI workflow"

Prerequisites

  • Node.js 18.3.0 or later for node:util.parseArgs and Object.hasOwn.
  • A strict JSON eas.json file with a build object.
  • A named build profile.

Quick Steps

  1. When this skill is active, use its absolute base directory instead of a path in the target React Native project. Set SKILL_DIR to that directory.
  2. Run the reader with one config path and one profile name.
SKILL_DIR="<this skill's base directory>" # absolute path provided when this skill loaded
node "$SKILL_DIR/rn-eas-profile-audit.mjs" --config path/to/eas.json --profile simulator
  1. Read the JSON result. chain lists the inherited profiles from parent to selected profile. effective contains the resolved configuration.

How It Works

 eas.json + selected profile
  -> validate build object and extends chain
  -> merge EAS inheritance fields with child overrides
  -> effective profile JSON

Commands

Intent Command Mutates source?
Resolve a profile node "$SKILL_DIR/rn-eas-profile-audit.mjs" --config path/to/eas.json --profile preview No
Show help node "$SKILL_DIR/rn-eas-profile-audit.mjs" --help No
Run the helper tests node --test "$SKILL_DIR/rn-eas-profile-audit.test.mjs" No

Read the full file on GitHub · 97 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 97 lines · 32 tokens per session scan A 138773903cdd

Subscribe to this mod's changes

rn-eas-profile-audit is a skill published in the GitHub repository AndrewDongminYoo/rn-agents-kit (2 stars, last pushed 8d ago), licensed Apache-2.0. It adds 32 tokens to every session and 915 once invoked, about $0.0002 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-09-05.

Related

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…

ericrisco/rsc-harness · 79 tokens

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

app-store-deployment

Publishes mobile applications to iOS App Store and Google Play with code signing, versioning, and CI/CD automation. Use when preparing app releases, configuring signing certificates, or setting up automated deployment pipelines.

secondsky/claude-skills · 46 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

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

ccc-broadcast

Relay CC Commander build, deploy, CI, task, and cost signals to your team's chat or email so non-devs see what shipped — read-only, no secrets in payloads.

KevinZai/commander · 41 tokens