---
name: Wall Of Apps Submit
slug: wall-of-apps-submit
category: DevOps
description: Wall Of Apps Submit adds or updates a Wall of Apps entry using the `asc apps wall submit` CLI flow. Use it when submitting an app by App Store ID or a TestFlight link and name.
github: "https://github.com/rorkai/app-store-connect-cli-skills/tree/main/skills/asc-wall-submit"
language: Python
stars: 971
forks: 55
install: "npx degit https://github.com/rorkai/app-store-connect-cli-skills/tree/main/skills/asc-wall-submit ~/.claude/skills/asc-wall-submit"
installs_to: ~/.claude/skills/asc-wall-submit
source_path: skills/asc-wall-submit/SKILL.md
collection_size: 25
category_size: 798
collection_url: "https://dirskills.com/collections/rorkai/app-store-connect-cli-skills"
added: 2026-08-21T05:15:00.385Z
last_synced: 2026-08-21T05:15:00.385Z
canonical_url: "https://dirskills.com/skills/wall-of-apps-submit"
---

# Wall Of Apps Submit

Wall Of Apps Submit adds or updates a Wall of Apps entry using the `asc apps wall submit` CLI flow. Use it when submitting an app by App Store ID or a TestFlight link and name.

**Install:**

```bash
npx degit https://github.com/rorkai/app-store-connect-cli-skills/tree/main/skills/asc-wall-submit ~/.claude/skills/asc-wall-submit
```

## README

# asc wall submit

Use this skill to add or update a Wall of Apps entry with the built-in CLI flow.

## When to use

- User wants to submit an app to the Wall of Apps
- User wants to update an existing Wall of Apps entry
- User asks for the exact Wall submission flow

## Required inputs

Use one of these input paths:

- Standard App Store flow: `app` ID
- Manual/pre-release flow: `link` plus `name`

## Submission workflow

1. Run commands from the `App-Store-Connect-CLI` repository root.
2. Preview first:
   - `asc apps wall submit --app "1234567890" --dry-run`
   - or `asc apps wall submit --link "https://testflight.apple.com/join/ABCDEFG" --name "My Beta App" --dry-run`
3. Apply with confirmation:
   - `asc apps wall submit --app "1234567890" --confirm`
   - or `asc apps wall submit --link "https://testflight.apple.com/join/ABCDEFG" --name "My Beta App" --confirm`
4. Review the generated PR plan and resulting change to `docs/wall-of-apps.json`.

## Guardrails

- Do not modify unrelated entries in `docs/wall-of-apps.json`.
- If submission fails due to invalid input, fix the inputs and rerun the CLI command.
- Keep submission path PR-based unless maintainers define an issue-based intake flow.

## Examples

Add new app:

`asc apps wall submit --app "1234567890" --confirm`

Submit a non-App-Store/TestFlight entry:

`asc apps wall submit --link "https://testflight.apple.com/join/ABCDEFG" --name "My Beta App" --confirm`
