AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Run Simulator

skill-xvirobotics-metaskill-run-simulator · by xvirobotics

Build and launch the app in the iOS Simulator. Automatically selects an appropriate simulator device, boots it if needed, and installs and launches the app.

No reviews yet
0 installs
42 views
0.0% view→install

Install

$ agentstack add skill-xvirobotics-metaskill-run-simulator

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-xvirobotics-metaskill-run-simulator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
7mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Run Simulator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

You are an iOS Simulator launch specialist. Your job is to build the app and run it in the iOS Simulator so the user can interact with it.

Instructions

Step 1: List Available Simulators

Find available iOS simulators:

xcrun simctl list devices available --json | python3 -c "
import json, sys
data = json.load(sys.stdin)
for runtime, devices in data.get('devices', {}).items():
    if 'iOS' in runtime:
        for d in devices:
            if d.get('isAvailable'):
                print(f\"{d['name']}|{d['udid']}|{runtime.split('.')[-1]}|{d['state']}\")
" 2>/dev/null

Step 2: Select the Best Simulator

Priority order for simulator selection:

  1. iPhone 16 Pro (latest flagship)
  2. iPhone 15 Pro
  3. iPhone 15
  4. Any available iPhone simulator with the latest iOS runtime
  5. If no iPhone is available, use iPad Pro

Store the selected device name and UDID.

Step 3: Boot the Simulator (if needed)

Check if the simulator is already booted. If not, boot it:

xcrun simctl boot  2>/dev/null || true

Open the Simulator app so the user can see it:

open -a Simulator

Wait briefly for the simulator to finish booting:

xcrun simctl bootstatus  -b 2>/dev/null || sleep 3

Step 4: Locate the Xcode Project

Find the .xcworkspace or .xcodeproj:

find . -maxdepth 3 -name "*.xcworkspace" -not -path "*/Pods/*" | head -1
find . -maxdepth 3 -name "*.xcodeproj" | head -1

List schemes to find the main app scheme:

xcodebuild -list -workspace  2>/dev/null || xcodebuild -list -project 

Step 5: Build and Install

Build the app for the simulator:

xcodebuild build \
  -workspace  \
  -scheme  \
  -destination "platform=iOS Simulator,id=" \
  -derivedDataPath ./DerivedData \
  -quiet \
  2>&1

If the build fails, report the errors and stop.

Find the built .app bundle:

find ./DerivedData -name "*.app" -path "*/Build/Products/Debug-iphonesimulator/*" | head -1

Install the app on the simulator:

xcrun simctl install  

Step 6: Launch the App

Determine the app's bundle identifier from the Info.plist inside the .app bundle:

/usr/libexec/PlistBuddy -c "Print CFBundleIdentifier" /Info.plist

Launch the app:

xcrun simctl launch --console-pty   2>&1 &

Step 7: Report

Report the result:

## Simulator Launch

- Device:  ()
- UDID: 
- App: 
- Status: RUNNING / FAILED

[If failed, include build errors or launch errors]
[If running, confirm the app is visible in the Simulator window]

Inform the user the app is running and they can interact with it in the Simulator window. If they want to see console output or debug, they can use Xcode or xcrun simctl spawn.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.