asc-app-create-ui
rudrankriyam/app-store-connect-cli-skills
Create App Store Connect app records via browser automation when API is unavailable.
What is asc-app-create-ui?
Automates the App Store Connect web UI to create new app records. Use this when you need an agent to fill out the New App form, handle platform selection, and submit—requiring a browser session and pre-registered bundle ID.
- Navigates to App Store Connect and opens the New App creation form
- Fills platform, name, primary language, bundle ID, SKU, and user access fields
- Handles asynchronous bundle ID dropdown loading and custom radio button overlays
- Clicks Create and waits for navigation to the new app page
- Verifies creation via API and hands off to post-create setup workflows
How to install asc-app-create-ui
npx skills add https://github.com/rudrankriyam/app-store-connect-cli-skills --skill asc-app-create-ui- Browser automation tool available (Playwright, Cursor browser MCP, or equivalent)
- User signed in to App Store Connect (or able to complete login + 2FA)
- Bundle ID must already be registered in Apple Developer portal
- Required inputs: app name, bundle ID, SKU, platform, primary language, user access level
How to use asc-app-create-ui
- 1.Register the bundle ID via asc bundle-ids create if not already registered
- 2.Verify no existing app record with asc apps list --bundle-id
- 3.Navigate to https://appstoreconnect.apple.com/apps and confirm sign-in
- 4.Click the New App button dropdown and select the New App menu item
- 5.Select platform checkbox(es) and wait for Bundle ID dropdown to load
- 6.Fill Name (max 30 chars), Primary Language, Bundle ID, and SKU fields
- 7.Select User Access (Full Access or Limited Access) radio button
- 8.Click Create and wait for navigation to the new app page
Use cases
- Bulk-creating multiple app records when bundle IDs are pre-registered
- Automating app creation as part of a larger onboarding workflow
- Creating apps programmatically without waiting for Apple to release a public creation API
- Testing app creation workflows in CI/CD pipelines with browser automation
- DevOps engineers automating App Store Connect setup
- Mobile app teams building internal tooling for app lifecycle management
- Agents using browser automation (Playwright, Cursor MCP) to drive UI workflows
asc-app-create-ui FAQ
Apple's Ember.js forms use custom change handlers. Try retyping a value slowly (character-by-character) in at least one text field, or click the field, clear it, and type again to trigger validation.
Scroll the radio element into view using scrollIntoView, then click the radio ref directly instead of via offset or label click to bypass the styled span overlay.
Wait for the dropdown to finish loading and become enabled after selecting a platform. Do not attempt to select until the options are fully populated.
Yes, this skill can be used in a loop for bulk creation, but each app requires a pre-registered bundle ID and the user must be signed in to App Store Connect.
Stop and request user help. Capture a screenshot, report the last known step, and check the browser for validation errors. Do not retry the Create click automatically.
Full instructions (SKILL.md)
Source of truth, from rudrankriyam/app-store-connect-cli-skills.
name: asc-app-create-ui description: Create a new App Store Connect app record via browser automation. Use when there is no public API for app creation and you need an agent to drive the New App form.
asc app create (UI automation)
Use this skill to create a new App Store Connect app by driving the web UI. This is opt-in, local-only automation that requires the user to be signed in.
Preconditions
- A browser automation tool is available (Playwright, Cursor browser MCP, or equivalent).
- User is signed in to App Store Connect (or can complete login + 2FA).
- The bundle ID must already be registered in the Apple Developer portal.
- Required inputs are known:
- app name (max 30 characters)
- bundle ID (must exist and be unused by another app)
- SKU
- platform (iOS, macOS, tvOS, visionOS)
- primary language
- user access (Full Access or Limited Access)
Safety Guardrails
- Never export or store cookies.
- Use a visible browser session only.
- Pause for a final confirmation before clicking "Create" (for standalone scripts).
- Do not retry the Create action automatically on failure.
Workflow
1. Preflight: register bundle ID and verify no existing app
# Register the bundle ID via public API (if not already registered)
asc bundle-ids create --identifier "com.example.app" --name "My App" --platform IOS
# Confirm no app record exists yet
asc apps list --bundle-id "com.example.app" --output json
2. Open App Store Connect
Navigate to https://appstoreconnect.apple.com/apps and ensure the user is signed in.
3. Open the New App form
The "New App" button (blue "+" icon) opens a dropdown menu, not a dialog directly.
- Click the "New App" button to open the dropdown.
- Click the "New App" menu item inside the dropdown.
- The creation dialog/modal appears.
4. Fill required fields (in order)
Platform (checkboxes)
The platforms are checkboxes (not radio buttons). Click the checkbox for the desired platform(s):
- iOS, macOS, tvOS, visionOS
- Multiple can be selected.
Name (text input)
- Label:
Name - Max 30 characters.
Primary Language (select/combobox)
- Label:
Primary Language - Use
select_optionor equivalent with the language label (e.g.,"English (U.S.)").
Bundle ID (select/combobox)
- Label:
Bundle ID - This is a
<select>dropdown. The options load asynchronously after platform selection. - Wait for the dropdown to finish loading (it shows "Loading..." initially).
- Select by matching the label text which includes both the name and identifier:
"My App - com.example.app"
SKU (text input)
- Label:
SKU
User Access (radio buttons) -- REQUIRED
- This field is required. The Create button stays disabled until one option is selected.
- Options:
Limited AccessorFull Access. - These are custom radio buttons with
<span>overlays. - Known issue: Accessibility-based clicks may be intercepted by the overlay
<span>. - Workaround: Use
scrollIntoViewon the radio element first, then click the radio ref directly. This bypasses the overlay interception.
5. Click Create
- The "Create" button is disabled until all required fields are filled and User Access is selected.
- After clicking, the button text changes to "Creating" while processing.
- Wait for navigation to the new app's page (URL pattern:
/apps/<APP_ID>/...).
6. Verify creation via API
asc apps view --id "APP_ID" --output json --pretty
# or
asc apps list --bundle-id "com.example.app" --output json
7. Hand off to post-create setup
asc app-setup info set --app "APP_ID" --primary-locale "en-US"
asc app-setup categories set --app "APP_ID" --primary GAMES
asc web apps availability create \
--app "APP_ID" \
--territory "USA,GBR" \
--available-in-new-territories true
Use the experimental web flow above only for the first availability bootstrap. If app availability already exists, switch to asc pricing availability edit --app "APP_ID" ... for later territory changes.
Known UI Automation Issues
"New App" is a dropdown menu, not a direct action
The first click opens a menu with "New App" and "New App Bundle". You must click the menu item, not just the button.
User Access radio buttons have span overlays
Apple's custom radio buttons wrap the <input type="radio"> in styled <span> elements. Direct ref-based clicks may fail with "click target intercepted". The fix is:
- Scroll the radio element into view (
scrollIntoView). - Click the radio ref directly (not via offset or label click).
Bundle ID dropdown loads asynchronously
After selecting a platform, the Bundle ID dropdown shows "Loading..." and is disabled. Wait for it to become enabled and populated before selecting.
browser_fill may not trigger form validation
Apple's Ember.js forms use custom change handlers. browser_fill (atomic set) may not trigger validation. If the Create button stays disabled after filling all fields:
- Retype the value slowly (character-by-character) in at least one text field.
- Or click the field, clear it, and type slowly.
Failure Handling
- If any field or button cannot be located, stop and request user help.
- Capture a screenshot and report the last known step.
- Do not retry the Create click automatically.
- On failure, the user should check the browser for validation errors (red outlines, inline messages).
Notes
- This skill is a workaround for a missing public API. Apple's docs explicitly state: "Don't use this API to create new apps; instead, create new apps on the App Store Connect website."
- UI selectors can change without notice. Prefer role/label/text selectors over CSS.
- The only manual step should be signing in. Everything else is agent-drivable.
Related skills
More from rudrankriyam/app-store-connect-cli-skills and the wider catalog.

asc-aso-audit
Run offline ASO audits on App Store metadata and surface keyword gaps via Astro MCP.

asc-build-lifecycle
Track build processing, find latest builds, and clean up old builds with App Store Connect CLI.

asc-cli-usage
Guidance for running asc CLI commands against App Store Connect with proper flags, auth, and discovery techniques.

asc-crash-triage
Triage TestFlight crashes, beta feedback, and performance diagnostics from App Store Connect.

asc-id-resolver
Resolve App Store Connect IDs from human-friendly names for use in other asc commands.

asc-localize-metadata
Automatically translate and sync App Store metadata to multiple languages using LLM and asc CLI.