Ios simulator
Public Claude Code skills and agents from simiancraft. Marketplace-installable.
npx -y skills add simiancraft/simiancraft-skills --skill ios-simulatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Drive an iOS Simulator headlessly on macOS: discover and boot a device, install and launch an app, drive its UI by accessibility (AXe) rather than brittle coordinates, capture screenshots, and navigate the simulator's own chrome, menus, and execution modes. The iOS analog of android-emulator-harness and playwright-harness. Project-agnostic core; Expo/React-Native specifics live in expo-ios-simulator, and "make the app driveable" lives in mobile-accessibility. Use for any task that is "boot/run an iOS simulator", "drive an iOS screen", "screenshot the simulator", or "automate an iOS flow".
SKILL.md
4.6 KB, as published. Nobody here has run it
iOS Simulator (core, project-agnostic)
The kernel for driving an iOS Simulator on macOS. Layers sit ON TOP of this:
expo-ios-simulator (the Expo/React-Native runtime), mobile-accessibility (the
tree you drive against), ios-simulator-triage (when it breaks), and
ios-simulator-flow-evidence (capturing proof). Everything here goes through
xcrun simctl and AXe; the Simulator app window is touched only for what the CLI cannot do.
Before anything
Run the checks and install the driver: prerequisites.md. In short, macOS with Xcode
(so xcrun simctl), a booted simulator, and AXe (brew install cameroncooke/axe/axe).
The loop
- Boot, install, launch an app on a device (
references/lifecycle.md): find the booted UDID,simctl install,simctl launch. - Drive by accessibility, not coordinates (
references/driving.md):axe tap --idor--label,axe type,axe swipeorgesture. See mobile-accessibility for what makes an app addressable. - Capture (
references/capture.md):simctl io ... screenshot; the screenshot is the device framebuffer, so window size and position never matter. Verify it with vision. - Set device state and permissions (
references/permissions.md,references/device-state.md):simctl privacyto skip dialogs; appearance, status bar, location, media, clipboard, and push to put the device in a known state. - The app's own chrome (
references/simulator-ui.md): menu-only features, the window geometry, and opening a URL on the device.
Rules
The first three are laws about how this environment fails; internalize them before the first command, because the failures they prevent emit no error.
- Trust effects, not exit codes. Every actuation channel here confirms delivery, not
processing: AXe synthesizes HID events (
references/driving.md), an AppleScript menu click returns success even when Simulator is backgrounded and the click never lands (references/simulator-ui.md), andsimctl launch/openurlreturn before the app is interactive (observed, reproducible; the readiness gates in expo-ios-simulatorreferences/development-builds.mdexist for exactly this). After any step whose outcome matters, verify the state actually changed: re-runaxe describe-ui, or screenshot and read it. - Gate on readiness signals, never fixed sleeps. Wait on something provably true:
simctl bootstatus -bfor boot (references/lifecycle.md),--wait-timeoutfor an element, the accessibility tree growing labels for a screen. A sleep that worked once is a flake that has not fired yet. Layer skills add their own signals (Metro's/statusprobe and the first-bundle wait in expo-ios-simulator). - Ask what is on top before blaming the target. iOS stacks surfaces over the app:
permission and app alerts, the software keyboard, and (on Expo) the dev menu, the LogBox
toast, and the inspector overlay. When a tap silently does nothing or the tree looks
wrong, dump the label inventory (
references/driving.md) and clear the overlay first; ios-simulator-triagereferences/automation-failures.mdwalks the causes. - Prefer
simctland AXe (accessibility) over the window and coordinates, and identity over coordinates (the targeting ladder inreferences/driving.md). Read the Simulator's state; never resize or full-screen it. - Every factual claim here and in the references cites a primary source (the tool's own help, Apple, AXe); a prior-art skill is never a source.
Where to go next
- Running an Expo or React Native app, the dev menu, the recurring launch prompts: expo-ios-simulator.
- A build, runtime, or automation failure: ios-simulator-triage.
- Screenshots and video as proof artifacts: ios-simulator-flow-evidence.