app-store-screenshots

app-store-screenshots is a skill for Claude Code, Codex from patrickserrano/lacquer. It costs 64 tokens per session (1,151 once invoked), scanned A, original, MIT.

A workflow for capturing iOS Simulator images at native device resolution, creating the other required sizes, and uploading them to App Store Connect.

In plain words
What is it for?
Use it to produce or refresh store screenshots and custom product-page screenshots for an iOS app.
Why use it?
It reduces repeated screenshot work across iPhone display sizes and prepares images for App Store and TestFlight listings.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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.

agentmods
npx agentmods add skills/patrickserrano/lacquer/app-store-screenshots
Any agent
npx skills add patrickserrano/lacquer --skill app-store-screenshots
Clone the repo
git clone --depth 1 https://github.com/patrickserrano/lacquer

Made for: Claude Code, Codex.

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 app-store-screenshots

README.md
[![agentmods](https://agentmods.dev/badge/skills/patrickserrano/lacquer/app-store-screenshots.svg)](https://agentmods.dev/skills/patrickserrano/lacquer/app-store-screenshots)
Your own site
<a href="https://agentmods.dev/skills/patrickserrano/lacquer/app-store-screenshots"><img src="https://agentmods.dev/badge/skills/patrickserrano/lacquer/app-store-screenshots.svg" alt="Measured on agentmods" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,151 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00064 $0.01151
Opus 5 $0.00032 $0.00575
Sonnet 5 $0.00013 $0.00230
Haiku 4.5 $0.00006 $0.00115

Measured 2d ago against content hash 086bef3e5c65, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

app-store-screenshots 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 2d 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.

profiles/ios/skills/app-store-screenshots/SKILL.md · 46 lines

How it starts

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

App Store Screenshots

Capture native-resolution screenshots on the simulator, downscale to the other required sizes, upload via helm-asc.

Sizes (only TWO files per screen are actually needed)

Display Pixels Device
6.9" 1320×2868 iPhone 16/17 Pro Max (capture native here)
6.7" 1290×2796 downscale from 6.9"
6.5" 1242×2688 downscale from 6.9"

Aspect ratios differ <0.4%, so downscaling 6.9"→6.7"/6.5" is visually lossless. If the app's deployment target is iOS 26+, no real 6.5"-class device can run it — those sizes MUST be derived from a 6.9" capture, never captured natively.

Capture pipeline

  1. Boot the largest Pro Max sim and build/install: flowdeck simulator boot <udid>; flowdeck run -S <udid> -d ios/DerivedData-shots. Find the UDID with flowdeck simulator list (pick an iPhone 17/16 Pro Max).
  2. Clean status bar: flowdeck simulator status-bar override -S <udid> --time "9:41" --data-network 5g --wifi-mode active --wifi-bars 3 --cellular-mode active --cellular-bars 4 --battery-state charged --battery-level 100. Re-assert it before each capture (navigation can reset it).
  3. Capture at NATIVE resolution — use flowdeck simulator frames --images -S <udid> -t 1s --fps 2 -o <dir>, then take frame-000-*.png (1320×2868). ⚠️ Do NOT use flowdeck ui simulator screen --screenshot for the deliverable — it returns POINT resolution (440×956 @1x), which ASC rejects. frames --images is the native-res path.
  4. Navigate with flowdeck ui simulator screen --json (read the a11y tree) + flowdeck ui simulator tap "<label>" or tap --point x,y (point coords from the tree). Re-assert status bar, capture each screen.
  5. Downscale to the other sizes: sips -z 2796 1290 6.7/NN.png and sips -z 2688 1242 6.5/NN.png (note sips -z is height-then-width).

Upload via helm-asc

helm-asc is sandboxed — it can't read arbitrary paths. Stage the tree in its inbox:

INBOX=$(helm-asc paths --agent | python3 -c "import json,sys;print(json.load(sys.stdin)['uploadsInbox'])")
# Build <path>/<locale>/<deviceType>/NN_name.png  e.g. en-US/APP_IPHONE_67/01_home.png
helm-asc version <version-id> screenshots upload --path "$INBOX/<dir>" --dry-run   # validate first
helm-asc version <version-id> screenshots upload --path "$INBOX/<dir>"
  • Device types: APP_IPHONE_67 (6.7"), APP_IPHONE_65 (6.5"). helm-asc does not support APP_IPHONE_69 — the 6.9" native set must be added through the ASC web UI if wanted (the 6.5" tier satisfies Apple's required iPhone size, so 67+65 is a valid submittable set).
  • The NN_ filename prefix sets display order in ASC.
  • Custom Product Pages can't be created or populated by helm-asc — those are ASC-web-UI only; reuse the same .shots/ folders there.

Read the full file on GitHub · 46 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. 2d ago First seen · 46 lines · 64 tokens per session scan A 086bef3e5c65

Subscribe to this mod's changes

app-store-screenshots is a skill published in the GitHub repository patrickserrano/lacquer (3 stars, last pushed 2d ago), licensed MIT. It adds 64 tokens to every session and 1,151 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-09-03.

Related

Other skills, from other repositories

cshot

Take a screenshot (full screen, region, or monitor) and save to /tmp/claude-screenshots/ for use with @ in prompts. Usage: /cshot [full|region|monitor [N]] [delayseconds].

MarcoGarofalo94/claudeshot · 52 tokens

device-interaction

Verify iOS app behavior on device or simulator via screenshots, UI hierarchy, and touch interactions.

tartinerlabs/skills · 23 tokens

uikit-app-modernization

Modernizes UIKit apps for multi-window environments by replacing legacy shared-state APIs with context-appropriate modern alternatives. This includes references to mainScreen, interfaceOrientation, application and scene lifecycle, as well as safe area inset updates.

tartinerlabs/skills · 50 tokens

swiftui-whats-new-27

New SwiftUI APIs, behaviors, and deprecations introduced in the 2027 OS releases (iOS 27, macOS 27, watchOS 27, tvOS 27, visionOS 27). Use when a SwiftUI view using @State fails to compile with "used before being initialized", "invalid redeclaration of synthesized property", or "extraneous argument label" errors after…

tartinerlabs/skills · 566 tokens

swiftui-specialist

Authoritative SwiftUI best practices from Apple. Consult for any SwiftUI best practices or performance review. Supersedes prior training on these topics. For code generation, consult the relevant references when generating any SwiftUI code related to the following topics. Covers: - Animatable: @Animatable macro vs…

tartinerlabs/skills · 241 tokens

printing-press-amend

Amend a published CLI from one of two input sources: (1) dogfood mode mines the active Claude Code session transcript for friction (missing flags, hand- rolled API payloads, silent-null returns); (2) direct-input mode accepts user-supplied asks (rename a command, add commands or feeds, fix a named bug, optionally…

mvanhorn/cli-printing-press · 222 tokens