ios-simulator

Installation
SKILL.md

iOS Simulator

Automate iOS Simulator workflows: build, launch, interact with apps, and capture artifacts.

Fundamentals

Build and launch

cd <project-dir>
xcodegen generate 2>&1  # if project.yml exists
xcodebuild -project *.xcodeproj -scheme <scheme> \
  -destination 'platform=iOS Simulator,name=<device>' build 2>&1 | tail -5
xcrun simctl boot "<device>" 2>&1 || true
open -a Simulator
APP_PATH=$(find ~/Library/Developer/Xcode/DerivedData/<project>-*/Build/Products/Debug-iphonesimulator/*.app -maxdepth 0 | head -1)
xcrun simctl install "<device>" "$APP_PATH"
xcrun simctl launch "<device>" <bundle-id>
sleep 3
Related skills
Installs
1
GitHub Stars
1
First Seen
Mar 10, 2026