From fastlane-skill
Submits iOS app builds to App Store Connect for review and release using Fastlane. Supports submitting an existing TestFlight build or running a full pipeline with version bump, archive, and auto-release.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fastlane-skill:releaseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Submit the iOS app to App Store Connect for review and release.
Submit the iOS app to App Store Connect for review and release.
fastlane --version 2>/dev/null | grep "fastlane " | head -1 || echo "✗ Not installed - run: brew install fastlane"ls fastlane/Fastfile 2>/dev/null && echo "✓ Found" || echo "✗ Not found - run /setup-fastlane first"[ -n "$FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD" ] && echo "✓ Set" || echo "⚠️ Not set - export FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD='xxxx-xxxx-xxxx-xxxx'"fastlane release (Submit Existing Build)fastlane release_full (Full Pipeline)match skill; the base setup-fastlane lane skips thisversion: provided)auto_release:true)Scope:
release/release_fullupload the binary + app-level metadata/screenshots. They do not upload in-app-purchase / subscription assets (per-IAP Review Information → Screenshot, 1024² Image (Optional) promos) — those are managed by hand in App Store Connect. See thesnapshotskill for screenshot upload details (deliverlayout, RGB/no-alpha, what it does and doesn't cover).
Run from your project directory (where fastlane/ lives):
fastlane release
fastlane release_full version:"1.1.0"
fastlane release_full version:"1.2.0" auto_release:true
This will automatically release to the App Store once Apple approves the build.
fastlane beta to upload to TestFlightfastlane release to submit the tested buildfastlane release_full for a fresh build + submitSet your Apple ID in fastlane/Appfile:
apple_id("[email protected]")
export FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD='xxxx-xxxx-xxxx-xxxx'
The version number already exists. Increment the version:
fastlane release_full version:"1.0.1"
fastlane beta
fastlane release
npx claudepluginhub greenstevester/fastlane-skill --plugin snapshotBuilds and uploads iOS apps to TestFlight for beta testing via Fastlane. Handles certificate syncing, build number incrementing, archiving, and upload.
Orchestrates end-to-end iOS App Store publishing: signing, metadata, screenshots, build upload, TestFlight, App Review submission, and release evidence collection.
App build, code signing, TestFlight, and App Store distribution for all Apple platforms. Use when preparing releases, configuring signing, uploading to TestFlight, or submitting to App Store.