App Store Deployment

SkillCloud & infra

This skill gives your AI the know-how to get iOS and Android apps published to the App Store and Google Play. Once added, your AI can guide you through signing, versioning, build configuration, and the submission process from start to finish. It also covers release management so new versions ship to the right store.

Available today. Use it from your connected AI after setup.

Add the skill, then tell your AI which app you want to publish and to which store. It will walk you through each step of the deployment.

Then ask your AI: use the App Store Deployment skill

What your AI can do with it

  • Deploy iOS apps to the App Store
  • Deploy Android apps to Google Play
  • Handle app signing and versioning
  • Configure release builds
  • Work through the store submission process
  • Manage app releases

What this skill tells your AI

The instructions your AI receives, as published by aj-geddes/useful-ai-prompts in skills/app-store-deployment/SKILL.md and read by ahel’s review.

Table of Contents

  • Overview
  • When to Use
  • Quick Start
  • Reference Guides
  • Best Practices

Overview

Publish mobile applications to official app stores with proper code signing, versioning, testing, and submission procedures.

When to Use

  • Publishing apps to App Store and Google Play
  • Managing app versions and releases
  • Configuring signing certificates and provisioning profiles
  • Automating build and deployment processes
  • Managing app updates and rollouts

Quick Start

Minimal working example:

# Create development and distribution signing certificates
# Step 1: Generate Certificate Signing Request (CSR) in Keychain Access
# Step 2: Create App ID in Apple Developer Portal
# Step 3: Create provisioning profiles (Development, Distribution)

# Xcode configuration for signing
# Set Team ID, Bundle Identifier, and select provisioning profiles
# Build Settings:
# - Code Sign Identity: "iPhone Distribution"
# - Provisioning Profile: Select appropriate profile
# - Code Sign Style: Automatic (recommended)

# Info.plist settings
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
  <key>CFBundleShortVersionString</key>
  <string>1.0.0</string>
  <key>CFBundleVersion</key>
  <string>1</string>
  <key>NSAppTransportSecurity</key>
  <dict>
    <key>NSAllowsArbitraryLoads</key>
    <false/>
  </dict>
// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

GuideContents
iOS Deployment SetupiOS Deployment Setup
Android Deployment SetupAndroid Deployment Setup
Version ManagementVersion Management
Automated CI/CD with GitHub ActionsAutomated CI/CD with GitHub Actions
Pre-Deployment ChecklistPre-Deployment Checklist

Best Practices

✅ DO

  • Use signed certificates and provisioning profiles
  • Automate builds with CI/CD
  • Test on real devices before submission
  • Keep version numbers consistent
  • Document deployment procedures
  • Use environment-specific configurations
  • Implement proper error tracking
  • Monitor app performance post-launch
  • Plan rollout strategy
  • Keep backup of signing materials
  • Test offline functionality
  • Maintain release notes

❌ DON'T

  • Commit signing materials to git
  • Skip device testing
  • Release untested code
  • Ignore store policies
  • Use hardcoded API keys
  • Skip security reviews
  • Deploy without monitoring
  • Ignore crash reports
  • Make large version jumps
  • Use invalid certificates
  • Deploy without backups
  • Release during holidays

Signals

GitHub stars
339
Forks
55
Last commit
Mar 2026
Advanced
Catalog kind
skill
Gateway key
app-store-deployment
Source
github.com/aj-geddes/useful-ai-prompts