.claude/skills/ts-fastlane/SKILL.md
Automate mobile app builds, signing, and deployment with Fastlane — CI/CD for iOS and Android. Use when someone asks to "automate App Store deployment", "Fastlane", "automate iOS build", "CI/CD for mobile", "automate Play Store upload", "code signing automation", or "mobile release pipeline". Covers build automation, code signing, TestFlight, Play Store, screenshots, and CI.
npx skillsauth add eliferjunior/Claude fastlaneInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fastlane automates the tedious parts of mobile app releases — building, code signing, uploading to TestFlight/Play Store, taking screenshots, and managing certificates. One command to go from code to production. Used by most professional mobile teams to eliminate manual Xcode/Google Play Console workflows.
# Install
brew install fastlane # macOS
# Or: gem install fastlane
# Initialize in your project
cd my-app
fastlane init
# fastlane/Fastfile — iOS build and deploy automation
default_platform(:ios)
platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
# Increment build number
increment_build_number(
build_number: latest_testflight_build_number + 1
)
# Build the app
build_app(
workspace: "MyApp.xcworkspace",
scheme: "MyApp",
export_method: "app-store",
)
# Upload to TestFlight
upload_to_testflight(
skip_waiting_for_build_processing: true,
)
# Notify team
slack(
message: "New iOS beta uploaded to TestFlight! 🚀",
slack_url: ENV["SLACK_WEBHOOK"],
)
end
desc "Deploy to App Store"
lane :release do
build_app(
workspace: "MyApp.xcworkspace",
scheme: "MyApp",
export_method: "app-store",
)
upload_to_app_store(
force: true, # Skip HTML preview verification
submit_for_review: true,
automatic_release: true,
precheck_include_in_app_purchases: false,
)
end
desc "Manage code signing with match"
lane :certificates do
match(
type: "appstore",
app_identifier: "com.mycompany.myapp",
readonly: true,
)
end
end
# fastlane/Fastfile — Android build and deploy
platform :android do
desc "Build and upload to Google Play internal testing"
lane :beta do
gradle(
task: "clean assembleRelease",
properties: {
"android.injected.signing.store.file" => ENV["KEYSTORE_PATH"],
"android.injected.signing.store.password" => ENV["KEYSTORE_PASSWORD"],
"android.injected.signing.key.alias" => ENV["KEY_ALIAS"],
"android.injected.signing.key.password" => ENV["KEY_PASSWORD"],
},
)
upload_to_play_store(
track: "internal",
aab: "./app/build/outputs/bundle/release/app-release.aab",
)
end
desc "Promote internal to production"
lane :release do
upload_to_play_store(
track: "internal",
track_promote_to: "production",
rollout: "0.1", # 10% rollout
)
end
end
# Initialize match (stores certs in Git repo or cloud)
fastlane match init
# Generate certificates
fastlane match development
fastlane match appstore
# On CI — read-only mode (don't create new certs)
fastlane match appstore --readonly
# .github/workflows/release-ios.yml
name: iOS Release
on:
push:
tags: ["v*"]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with: { bundler-cache: true }
- name: Install CocoaPods
run: pod install --project-directory=ios
- name: Deploy to TestFlight
env:
APP_STORE_CONNECT_API_KEY: ${{ secrets.ASC_KEY }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_URL: ${{ secrets.MATCH_REPO }}
run: fastlane ios beta
User prompt: "Automate our iOS and Android builds — build on every PR, deploy to TestFlight/Play Store on tag."
The agent will create Fastlane lanes for building, signing, and deploying, set up match for code signing, and configure GitHub Actions workflows.
User prompt: "Generate App Store screenshots in all required sizes automatically."
The agent will set up Fastlane snapshot with UI tests, capture screenshots in multiple device sizes and languages, and frame them with device bezels.
fastlane beta for testing, fastlane release for production — separate lanesmatch for code signing — stores certs in Git, all team members use the same onesincrement_build_number or increment_version_code.env files for secrets — keystore passwords, API keysAppfile for app metadata — app identifier, Apple ID, team IDsupply for Play Store metadata — descriptions, changelogs, screenshotsprecheck validates before submission — catches common rejection reasonsfastlane-plugin-firebase_app_distribution etc.development
Expert guidance for Fireworks AI, the platform for running open-source LLMs (Llama, Mixtral, Qwen, etc.) with enterprise-grade speed and reliability. Helps developers integrate Fireworks' inference API, fine-tune models, and deploy custom model endpoints with function calling and structured output support.
development
Convert any website into clean, structured data with Firecrawl — API-first web scraping service. Use when someone asks to "turn a website into markdown", "scrape website for LLM", "Firecrawl", "extract website content as clean text", "crawl and convert to structured data", or "scrape website for RAG". Covers single-page scraping, full-site crawling, structured extraction, and LLM-ready output.
tools
Expert guidance for Firebase, Google's platform for building and scaling web and mobile applications. Helps developers set up authentication, Firestore/Realtime Database, Cloud Functions, hosting, storage, and analytics using Firebase's SDK and CLI.
development
When the user needs to build file upload functionality for a web application. Use when the user mentions "file upload," "image upload," "upload endpoint," "multipart upload," "presigned URL," "S3 upload," "file validation," "upload to cloud storage," or "accept user files." Handles upload endpoints, file validation (type, size, magic bytes), cloud storage integration, and upload status tracking. For image/video processing after upload, see media-transcoder.