rn-harness-screenshot

rn-harness-screenshot is a skill for Claude Code from tjdrhs90/rn-launch-harness. It costs 27 tokens per session (3,068 once invoked), scanned C, original, MIT.

An automated screenshot workflow for a mobile app running on a real iOS Simulator or Android Emulator. It uses Maestro to tap, scroll, navigate, and save PNG images of app screens, with ads hidden during capture.

In plain words
What is it for?
Use it to navigate a development build, capture screens for an app-store listing, and create PNG screenshots from planned screen structures.
Why use it?
It removes the need to capture each store image manually and helps ensure screenshots show the intended app experience without advertisements.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Part of the rn-launch-harness plugin — 17 skills shipped together

Good fit Use it to navigate a development build, capture screens for an app-store listing, and create PNG screenshots from planned screen structures.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tjdrhs90/rn-launch-harness/rn-harness-screenshot
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 tjdrhs90/rn-launch-harness --skill rn-harness-screenshot
Clone the repo
git clone --depth 1 https://github.com/tjdrhs90/rn-launch-harness

Made for: Claude Code.

Or install rn-launch-harness, the plugin that ships this one along with the rest of its 17 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-harness-screenshot

README.md
[![agentmods](https://agentmods.dev/badge/skills/tjdrhs90/rn-launch-harness/rn-harness-screenshot/github.svg)](https://agentmods.dev/skills/tjdrhs90/rn-launch-harness/rn-harness-screenshot)
Your own site
<a href="https://agentmods.dev/skills/tjdrhs90/rn-launch-harness/rn-harness-screenshot"><img src="https://agentmods.dev/badge/skills/tjdrhs90/rn-launch-harness/rn-harness-screenshot/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-harness-screenshot

Your own site · 80×15
<a href="https://agentmods.dev/skills/tjdrhs90/rn-launch-harness/rn-harness-screenshot"><img src="https://agentmods.dev/badge/skills/tjdrhs90/rn-launch-harness/rn-harness-screenshot.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,068 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.00027 $0.03068
Opus 5 $0.00014 $0.01534
Sonnet 5 $0.00005 $0.00614
Haiku 4.5 $0.00003 $0.00307

Measured 11d ago against content hash 35dc85e4840f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade C, and why

rn-harness-screenshot scanned grade C with 2 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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

- Maestro CLI (`curl -Ls "https://get.maestro.mobile.dev" | bash`)

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- Maestro CLI (`curl -Ls "https://get.maestro.mobile.dev" | bash`)
skills/rn-harness-screenshot/SKILL.md · 371 lines

How it starts

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

rn-harness-screenshot — Phase 9: Store Screenshots

Capture store screenshots by running the app on a real simulator/emulator with Maestro. Ads are hidden during capture via environment variable.

How It Works

This is NOT image generation. Maestro physically controls the simulator:

  1. Launches the app on a real iOS Simulator or Android Emulator
  2. Taps buttons, scrolls, navigates between screens
  3. Takes PNG screenshots at each screen
  4. You can watch it happen live on the simulator

Trigger

Called by the orchestrator as Phase 9.

Input

  • docs/harness/plans/YYYY-MM-DD-prd.md (screen structure)
  • Actual project code
  • Development build installed on simulator/emulator

Prerequisites

  • Maestro CLI (curl -Ls "https://get.maestro.mobile.dev" | bash)
  • iOS Simulator or Android Emulator running
  • Development build installed (from Phase 8)

Process

Step 0: Hide Ads for Screenshots

Store screenshots must NOT show ads. Before capturing, ensure the ad-hiding mechanism is in place.

0a. Verify AdBanner has EXPO_PUBLIC_HIDE_ADS support

Check src/features/ads/ui/AdBanner.tsx:

export function AdBanner({ size = BannerAdSize.ANCHORED_ADAPTIVE_BANNER }: IAdBannerProps) {
  // Hide ads during screenshot capture
  if (process.env.EXPO_PUBLIC_HIDE_ADS === 'true') return null;
  
  return (
    <BannerAd
      unitId={getAdUnitId('BANNER')}
      size={size}
      requestOptions={{ requestNonPersonalizedAdsOnly: true }}
    />
  );
}

If not present, add the EXPO_PUBLIC_HIDE_ADS check to:

  • AdBanner.tsx — banner component
  • use-interstitial.ts — interstitial hook (skip show())
  • use-rewarded.ts — rewarded hook (skip show())
  • use-app-open-ad.ts — app open ad hook (skip)
0b. Start app with ads hidden
EXPO_PUBLIC_HIDE_ADS=true npx expo start --dev-client

Or if using expo run:*:

EXPO_PUBLIC_HIDE_ADS=true npx expo run:ios
EXPO_PUBLIC_HIDE_ADS=true npx expo run:android

Step 1: Choose Screenshot Screens

Read the full file on GitHub · 371 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. 11d ago First seen · 371 lines · 27 tokens per session scan C 35dc85e4840f

Subscribe to this mod's changes

rn-harness-screenshot is a skill published in the GitHub repository tjdrhs90/rn-launch-harness (9 stars, last pushed 10d ago), licensed MIT. It adds 27 tokens to every session and 3,068 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). 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

flutter-testing

A testing guide for Flutter mobile apps and NestJS backends used across multiple regions. It covers unit tests, screen tests, end-to-end tests, regional build variants called flavors, and rules for testing payments, tenants, and external services with test doubles.

lh17708357536-gif/flutter-cn-overseas-app-skills · 114 tokens

ui-crawler-max

Autonomous UI crawler for iOS simulator apps — rapid, element-precise data collection. Use whenever the user says "crawl my app", "auto-test the UI", "click/tap through every screen", "monkey test", "explore the app and find errors/crashes", "collect screenshots of all screens", "smoke test the whole app", or asks for…

Dev869/swift-tothemax · 179 tokens

android-ui-journey-testing

XML-specified Android UI journey testing, interactive step execution, assertion verification, and JSON outcome reporting.

sickn33/agentic-awesome-skills · 27 tokens

android_ui_verification

Automated end-to-end UI testing and verification on an Android Emulator using ADB.

sickn33/agentic-awesome-skills · 22 tokens

dogfood

Systematically explore and test a mobile app on iOS/Android with agent-device to find bugs, UX issues, and other problems. Use when asked to dogfood, QA, exploratory test, find issues, bug hunt, or test this app on mobile.

callstack/agent-device · 55 tokens

solopi-ai

A command-line framework for testing Android apps and devices with SoloPi, including on-device or cloud AI decision models. It manages devices, test cases, recorded interactions, replays, performance history, and evidence.

alipay/SoloPi · 127 tokens