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 tjdrhs90/rn-launch-harness --skill rn-harness-screenshotgit clone --depth 1 https://github.com/tjdrhs90/rn-launch-harnessWrote 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/tjdrhs90/rn-launch-harness/rn-harness-screenshot)<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.
<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>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.00027 | $0.03068 |
| Opus 5 | $0.00014 | $0.01534 |
| Sonnet 5 | $0.00005 | $0.00614 |
| Haiku 4.5 | $0.00003 | $0.00307 |
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`) 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:
- Launches the app on a real iOS Simulator or Android Emulator
- Taps buttons, scrolls, navigates between screens
- Takes PNG screenshots at each screen
- 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 componentuse-interstitial.ts— interstitial hook (skipshow())use-rewarded.ts— rewarded hook (skipshow())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
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 · 371 lines · 27 tokens per session scan C 35dc85e4840f
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.
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.
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…
android-ui-journey-testing
XML-specified Android UI journey testing, interactive step execution, assertion verification, and JSON outcome reporting.
android_ui_verification
Automated end-to-end UI testing and verification on an Android Emulator using ADB.
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.
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.