Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
199-biotechnologies avatar

App Store Connect

  • 2 installs
  • 4 repo stars
  • Updated April 6, 2026
  • 199-biotechnologies/app-store-connect-skill

app-store-connect is a Claude Code skill that manages App Store Connect operations (metadata, screenshots, reviews, TestFlight, IAP, releases) through the Apple App Store Connect REST API and xcodebuild.

About

app-store-connect is a Claude Code skill that drives the Apple App Store Connect REST API and xcodebuild CLI from natural-language requests. It handles metadata and localization, screenshots, customer reviews, TestFlight, in-app purchases, pricing, submissions, phased releases, and sales/finance report downloads. A developer uses it to update store listings and ship iOS builds without clicking through the App Store Connect web UI. It uses progressive disclosure with a core SKILL.md and nine reference files.

  • Manages App Store Connect metadata, screenshots, keywords, reviews, TestFlight, IAP and releases via the Apple REST API
  • Updates metadata across 30+ locales and downloads sales/finance reports from the terminal
  • Progressive-disclosure design: SKILL.md core plus 9 reference files and a TestFlight-card script

App Store Connect by the numbers

  • 2 all-time installs (skills.sh)
  • Ranked #1,839 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

app-store-connect capabilities & compatibility

Free skill; requires a user-supplied App Store Connect API key (.p8). No subscription fees per the README.

Capabilities
app store metadata · testflight management · review responses · app submission · iap management · sales reports
Use cases
marketing · seo
Pricing
Bring your own API key
From the docs

What app-store-connect says it does

Complete App Store Connect management via REST API and xcodebuild CLI.
SKILL.md
Covers the full Apple App Store Connect REST API (v1/v2) plus xcodebuild CI/CD pipeline.
SKILL.md
No subscription fees. No config files. No memorising API endpoints.
README.md
npx skills add https://github.com/199-biotechnologies/app-store-connect-skill --skill app-store-connect

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2
repo stars4
Last updatedApril 6, 2026
Repository199-biotechnologies/app-store-connect-skill

What it does

A developer updates App Store listing metadata across locales, manages TestFlight testers, responds to reviews, and submits an iOS build for review from the terminal.

Who is it for?

iOS/macOS developers who want to update store metadata, manage TestFlight, respond to reviews, and submit builds without the App Store Connect web UI

Skip if: Operations Apple has no API for, which the skill documents as confirmed impossible via the REST API

When should I use this skill?

The user asks to upload to the App Store, update app metadata, manage TestFlight, respond to reviews, set pricing, or submit an app version for review

What you get

Store metadata, screenshots, reviews, TestFlight, IAP, and releases are managed through natural-language API calls instead of manual web-UI clicks.

  • updated store metadata and localizations
  • uploaded screenshots and app previews
  • submitted app versions and phased releases

By the numbers

  • 9-file reference set
  • metadata across 30+ locales
  • 4 TestFlight-card colour themes

Files

SKILL.mdMarkdownGitHub ↗

App Store Connect — Full Management Skill

Complete App Store Connect management via REST API and xcodebuild CLI.

Credentials

Load credentials from config/credentials.local.md (gitignored). That file contains:

  • Key ID, Issuer ID, Private Key path, Team ID
  • Default contact info (company, email, phone, copyright)

Authentication (Required for All API Calls)

import jwt, time, requests

# Load these values from config/credentials.local.md
KEY_ID = "YOUR_KEY_ID"           # See config/credentials.local.md
ISSUER_ID = "YOUR_ISSUER_ID"    # See config/credentials.local.md
KEY_PATH = "/path/to/AuthKey.p8" # See config/credentials.local.md

with open(KEY_PATH, 'r') as f:
    private_key = f.read()

payload = {"iss": ISSUER_ID, "iat": int(time.time()), "exp": int(time.time()) + 1200, "aud": "appstoreconnect-v1"}
token = jwt.encode(payload, private_key, algorithm="ES256", headers={"kid": KEY_ID})
headers = {"Authorization": f"Bearer {token}", "Content-Type": "application/json"}

Core ID Resolution (Always Do First)

Most operations require these IDs. Resolve them before any update:

# 1. Get APP_ID
response = requests.get("https://api.appstoreconnect.apple.com/v1/apps", headers=headers)
for app in response.json()['data']:
    print(f"{app['attributes']['name']} - {app['attributes']['bundleId']} (ID: {app['id']})")
APP_ID = "the-app-id"

# 2. Get VERSION_ID
response = requests.get(f"https://api.appstoreconnect.apple.com/v1/apps/{APP_ID}/appStoreVersions", headers=headers)
VERSION_ID = response.json()['data'][0]['id']

# 3. Get LOCALIZATION_ID (for version-level metadata)
response = requests.get(f"https://api.appstoreconnect.apple.com/v1/appStoreVersions/{VERSION_ID}/appStoreVersionLocalizations", headers=headers)
LOCALIZATION_ID = response.json()['data'][0]['id']

# 4. Get APP_INFO_ID and APP_INFO_LOC_ID (for app-level metadata)
response = requests.get(f"https://api.appstoreconnect.apple.com/v1/apps/{APP_ID}/appInfos", headers=headers)
APP_INFO_ID = response.json()['data'][0]['id']
response = requests.get(f"https://api.appstoreconnect.apple.com/v1/appInfos/{APP_INFO_ID}/appInfoLocalizations", headers=headers)
APP_INFO_LOC_ID = response.json()['data'][0]['id']

Operations Index

AreaOperationsReference File
Metadata & LocalizationDescription, keywords, subtitle, copyright, category, promo text, multi-locale, AI translationreferences/metadata-and-localization.md
Screenshots & PreviewsUpload screenshots, app previews, simulator automation, screenshot sizesreferences/screenshots-and-previews.md
Customer ReviewsList reviews, respond, delete responses, AI-assisted responsesreferences/reviews-and-ratings.md
TestFlightBeta groups, testers, builds, beta review submission, invitationsreferences/testflight.md
Submissions & ReleasesSubmit for review, phased release, version increment, nominationsreferences/submissions-and-releases.md
IAP & SubscriptionsIn-app purchases, subscription groups, promo offers, pricingreferences/iap-and-subscriptions.md
Reports & AnalyticsSales reports, finance reports, download TSV datareferences/reports-and-analytics.md
Advanced FeaturesIn-app events, custom product pages, app clipsreferences/advanced-features.md
Build & DeployXcode archive, upload, ExportOptions, one-line deployreferences/build-and-deploy.md

API Permissions

  • GET apps, versions, localizations, reviews, builds, reports
  • UPDATE metadata, screenshots, categories, reviews, TestFlight, releases
  • CREATE versions, localizations, screenshots, IAPs, subscriptions, events

Hard Limitations (Cannot Be Done via API)

These operations are confirmed impossible via the App Store Connect REST API as of April 2026. Do NOT attempt these programmatically — they will fail or have no endpoint.

OperationWhy NotWhat to Do Instead
Create a new appNo POST /v1/apps endpoint exists. API keys get 403 FORBIDDEN. Fastlane produce also cannot do this with API keys.Create manually at https://appstoreconnect.apple.com -> Apps -> + -> New App
Configure App PrivacyNo API endpoints exist for the privacy questionnaire (data collection types, tracking declarations). Apple provides only a web-based wizard.Configure manually: ASC -> Apps -> [App] -> App Privacy -> Get Started
Upload or change app iconIcons are embedded in the Xcode asset catalog and bundled into the binary. There is no separate icon upload endpoint. Changing an icon requires a new build.Set icon in Xcode: Assets.xcassets -> AppIcon, then archive and upload a new build
Retrieve app icon imageLimited: iconAssetToken on build resources may return icon URLs, but there is no dedicated icon download endpoint. Results vary.Best approach: extract from the Xcode project asset catalog, or use the App Store marketing artwork URL
Delete an appApps cannot be deleted via API. They can be removed from sale or fully removed (if never published).Remove manually: ASC -> Apps -> [App] -> Remove App (see Apple docs)
Transfer an appApp transfers are a multi-step manual process between two developer accounts. No API support.Initiate manually: ASC -> Apps -> [App] -> Transfer App
Manage agreements/contractsPaid/free app agreements, tax forms, and banking details have no API.Manage at https://appstoreconnect.apple.com/agreements/
Configure Privacy ManifestsPrivacyInfo.xcprivacy files are part of the Xcode project, not ASC metadata.Add PrivacyInfo.xcprivacy to Xcode project before building

Note on age rating: Despite being listed as "manual" in some guides, age ratings CAN be configured via API using PATCH /v1/ageRatingDeclarations/{id}. This skill covers it in references/metadata-and-localization.md.

Common Errors

ErrorSolution
whatsNew cannot be editedRemove whatsNew for new apps (only available for updates)
403 FORBIDDEN on CREATE appsThis is a hard API limitation, not a permissions issue. Create app manually in ASC portal
Invalid bundle IDEnsure bundle ID is registered in Developer portal first
JWT expiredTokens last 20 minutes max; regenerate before each session
ENTITY_ERROR.RELATIONSHIPCheck that relationship IDs exist and are correct type
Pending AgreementsAccept latest agreements at https://appstoreconnect.apple.com/agreements/

Full Workflow Checklist

New App Release

  • [ ] MANUAL Create app in App Store Connect (no API — see Hard Limitations)
  • [ ] MANUAL Configure App Privacy questionnaire (no API — see Hard Limitations)
  • [ ] MANUAL Set app icon in Xcode asset catalog (icon is bundled in build, no API)
  • [ ] Resolve IDs: APP_ID, VERSION_ID, LOCALIZATION_ID, APP_INFO_ID
  • [ ] Update description, keywords, promotionalText, supportUrl
  • [ ] Set subtitle (max 30 chars), copyright, category
  • [ ] Set age rating declaration (API supported)
  • [ ] Set content rights declaration
  • [ ] Upload screenshots for each device size
  • [ ] Set review contact info
  • [ ] Archive and upload build via xcodebuild
  • [ ] Set marketing/support/privacy URLs
  • [ ] Submit for App Review
  • [ ] Optionally enable phased release

App Update

  • [ ] Create new version (or auto-increment)
  • [ ] Update whatsNew (release notes) for all locales
  • [ ] Update screenshots if UI changed
  • [ ] Upload new build
  • [ ] Submit for review
  • [ ] Monitor phased release

Ongoing Management

  • [ ] Monitor and respond to customer reviews
  • [ ] Manage TestFlight beta testers and builds
  • [ ] Download sales and finance reports
  • [ ] Create in-app events for promotions
  • [ ] Update pricing and availability as needed

App Privacy (Manual)

App Privacy must be configured manually in App Store Connect: 1. App Store Connect -> Apps -> [App] -> App Privacy 2. For apps with no data collection: select "Data Not Collected" 3. Privacy Policy URL: https://yourcompany.com/privacy

Creating a New App (Manual)

1. Go to https://appstoreconnect.apple.com 2. Apps -> + -> New App 3. Platform: iOS, Primary Language: English (U.S.) 4. Bundle ID: select from registered IDs (NOT widget extensions) 5. SKU: unique identifier (e.g., appname001)

Related skills

FAQ

What credentials does this skill need?

An App Store Connect API key: a Key ID, Issuer ID, and a downloaded .p8 private key, loaded from a gitignored config/credentials.local.md file.

Can it do everything App Store Connect can do?

No. The skill documents operations that are confirmed impossible via the App Store Connect REST API and tells Claude not to attempt them programmatically.

Automation & Workflowsdistributioncontent

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.