$npx -y skills add rorkai/app-store-connect-cli-skills --skill asc-wall-submitSubmit or update a Wall of Apps entry in the App-Store-Connect-CLI repository using asc apps wall submit. Use when the user says "submit to wall of apps", "add my app to the wall", or "wall-of-apps".
| 1 | # asc wall submit |
| 2 | |
| 3 | Use this skill to add or update a Wall of Apps entry with the built-in CLI flow. |
| 4 | |
| 5 | ## When to use |
| 6 | |
| 7 | - User wants to submit an app to the Wall of Apps |
| 8 | - User wants to update an existing Wall of Apps entry |
| 9 | - User asks for the exact Wall submission flow |
| 10 | |
| 11 | ## Required inputs |
| 12 | |
| 13 | Use one of these input paths: |
| 14 | |
| 15 | - Standard App Store flow: `app` ID |
| 16 | - Manual/pre-release flow: `link` plus `name` |
| 17 | |
| 18 | ## Submission workflow |
| 19 | |
| 20 | 1. Run commands from the `App-Store-Connect-CLI` repository root. |
| 21 | 2. Preview first: |
| 22 | - `asc apps wall submit --app "1234567890" --dry-run` |
| 23 | - or `asc apps wall submit --link "https://testflight.apple.com/join/ABCDEFG" --name "My Beta App" --dry-run` |
| 24 | 3. Apply with confirmation: |
| 25 | - `asc apps wall submit --app "1234567890" --confirm` |
| 26 | - or `asc apps wall submit --link "https://testflight.apple.com/join/ABCDEFG" --name "My Beta App" --confirm` |
| 27 | 4. Review the generated PR plan and resulting change to `docs/wall-of-apps.json`. |
| 28 | |
| 29 | ## Guardrails |
| 30 | |
| 31 | - Do not modify unrelated entries in `docs/wall-of-apps.json`. |
| 32 | - If submission fails due to invalid input, fix the inputs and rerun the CLI command. |
| 33 | - Keep submission path PR-based unless maintainers define an issue-based intake flow. |
| 34 | |
| 35 | ## Examples |
| 36 | |
| 37 | Add new app: |
| 38 | |
| 39 | `asc apps wall submit --app "1234567890" --confirm` |
| 40 | |
| 41 | Submit a non-App-Store/TestFlight entry: |
| 42 | |
| 43 | `asc apps wall submit --link "https://testflight.apple.com/join/ABCDEFG" --name "My Beta App" --confirm` |