AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Asc Screenshot Upload

skill-abdullah4ai-apple-developer-toolkit-asc-screenshot-upload · by Abdullah4AI

Handle App Store screenshot requirements including automatic simulator capture and validated browser upload. Use when screenshots are missing or need to be uploaded for App Store submission.

No reviews yet
0 installs
12 views
0.0% view→install

Install

$ agentstack add skill-abdullah4ai-apple-developer-toolkit-asc-screenshot-upload

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-abdullah4ai-apple-developer-toolkit-asc-screenshot-upload)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Asc Screenshot Upload? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

ASC Screenshot Upload

Two-Option Screenshot System

During pre-flight step 8, the user chooses how to provide screenshots:

Automatic (Recommended)

Pre-flight builds the app for each required simulator, boots them, installs, launches, and captures the initial launch screen. Simulators are left running so you can capture additional screens.

After pre-flight, use AXe to navigate to key screens and capture more:

# See current screen elements
axe describe-ui --udid 

# Navigate to a screen
axe tap --id  --udid 

# Capture screenshot
xcrun simctl io  screenshot .png

Analyze the app's Swift source to identify important screens (ignore settings/preferences). Capture 3-5 screenshots showing the app's core functionality.

Custom Upload

Browser UI with Apple validation:

  • Requirements checklist at top shows which device types are needed (green checkmarks when fulfilled)
  • Each uploaded image shows a badge: green with device type if dimensions match, red "Invalid size" if not
  • Upload Screenshots button disabled until all required types have valid screenshots
  • Upload Anyway escape hatch for incomplete uploads
  • Summary line: "2/2 required types covered" or "1/2 — iPad 13" still needed"

Device Family Requirements

The device_family field in project_config.json determines what's required:

| Device Family | Required Screenshots | |---|---| | iphone (default) | iPhone 6.9" (or 6.5" fallback) | | ipad | iPad 13" | | universal | iPhone 6.9" AND iPad 13" |

iPad screenshots are mandatory for universal/iPad apps. Submission will fail without them.

Apple Screenshot Dimensions

| Device | Resolution (portrait) | Device Type | |---|---|---| | iPhone 6.9" | 1320x2868, 1290x2796, 1260x2736 | IPHONE69 | | iPhone 6.5" (fallback) | 1284x2778, 1242x2688 | IPHONE65 | | iPad 13" | 2064x2752, 2048x2732 | IPADPRO13 |

Format: PNG or JPEG, RGB, no transparency. 1-10 screenshots per device type per locale.

Screenshot Directory Convention

screenshots/
  auto/       # Automatic simulator captures
  upload/     # User-provided screenshots from browser upload
  framed/     # Framed screenshots ready for upload

Uploading to App Store Connect

# Get the version localization ID
asc localizations list --version "VERSION_ID" --output json

# Upload screenshots
asc screenshots upload \
  --version-localization "LOC_ID" \
  --path "./screenshots/auto" \
  --device-type "IPHONE_69" \
  --output json

Screenshot Status in System Prompt

The system prompt reports screenshot status:

  • available at (device types: IPHONE_69, IPAD_PRO_13) — ready
  • available at (not yet validated) — found but unchecked
  • NOT available — missing, required before submission

If automatic capture was used, simulator UDIDs are provided for multi-screen capture via AXe.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.