Agent skill · Security

ios-simulator

Manages iOS Simulator devices and app tests with xcrun simctl: lifecycle, install/launch, push and location simulation, privacy permissions, deep links, status-bar overrides, screenshots/video, log streaming, app containers, and targetEnvironment(simulator). Use when scripting Simulator workflows, debugging CoreSimulator boot failures, or deciding which hardware, performance, networking, memory-pressure, and security behaviors require a physical device.

Derek Pearson935★ · +23/wk · 1 repos on radarProfile →
claude-codecodexcursorNOASSERTION
Install
npx skills add dpearson2699/swift-ios-skills --skill ios-simulator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 16 KB
Bundled scripts: none
Path: skills/ios-simulator/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 963 · +28 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# iOS Simulator Load [the simctl command reference](references/simctl-commands.md) when you need complete command tables, JSON parsing, privacy/status-bar values, Logger filter setup, or boot recovery commands. ## Contents - [Device Lifecycle](#device-lifecycle) - [App Install and Launch](#app-install-and-launch) - [Testing Workflows](#testing-workflows) - [Screenshot and Video Recording](#screenshot-and-video-recording) - [Log Streaming](#log-streaming) - [Compile-Time Simulator Detection](#compile-time-simulator-detection) - [Simulator Limitations](#simulator-limitations) - [Common Mistakes](#common-mistakes) - [Review Checklist](#review-checklist) - [References](#references) ## Device Lifecycle ### Listing Devices and Runtimes ```bash # List all available simulators grouped by runtime xcrun simctl list devices available # List installed runtimes xcrun simctl list runtimes # List only booted devices xcrun simctl list devices booted # JSON output for scripting xcrun simctl list -j devices available ``` Parse JSON output to find a specific device programmatically. See [references/simctl-commands.md](references/simctl-commands.md) for `jq` parsing examples. ### Creating a Device ```

What's inside
Steps it walks through
  1. Contents
  2. Device Lifecycle
  3. Listing Devices and Runtimes
  4. Creating a Device
  5. Boot, Shutdown, Erase, Delete
  6. App Install and Launch
  7. Installing an App
  8. Launching and Terminating
  9. App Container Paths
  10. Testing Workflows
  11. Push Notification Simulation
  12. Location Simulation
  13. Privacy Permissions
  14. Deep Links and URLs
Ships with 2 files
  • evals/evals.json
  • references/simctl-commands.md
Commands it runs
List all available simulators grouped by runtime
xcrun simctl list devices available
List installed runtimes
xcrun simctl list runtimes
List only booted devices
xcrun simctl list devices booted
JSON output for scripting
xcrun simctl list -j devices available
Find available device types and runtimes
xcrun simctl list devicetypes
More from swift-ios-skills
All skills →
About this skill
What does the ios-simulator skill do?

Manages iOS Simulator devices and app tests with xcrun simctl: lifecycle, install/launch, push and location simulation, privacy permissions, deep links, status-bar overrides, screenshots/video, log streaming, app containers, and targetEnvironment(simulator). Use when scripting Simulator workflows, debugging CoreSimulator boot failures, or deciding which hardware, performance, networking, memory-pressure, and security behaviors require a physical device.

How do I install it?

Run `npx skills add dpearson2699/swift-ios-skills --skill ios-simulator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From dpearson2699/swift-ios-skills, a repository with 963 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going