simulator-workflows

simulator-workflows is a skill for Claude Code, Codex from conorluddy/xclaude-plugin. It costs 49 tokens per session (3,628 once invoked), scanned A, original, MIT.

A set of rules for managing iOS simulators through one simulator-control tool. An iOS simulator is a computer program that runs and tests iPhone or iPad apps without a physical device.

In plain words
What is it for?
Use it for simulator and app lifecycle tasks such as launching, managing, or inspecting iOS test environments.
Why use it?
It keeps simulator operations consistent and prevents the workflow from using unsupported command-line alternatives.

Skill for Claude CodeCodex

Part of the xclaude-plugin plugin — 8 skills, 2 MCP servers shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/conorluddy/xclaude-plugin/simulator-workflows
Any agent
npx skills add conorluddy/xclaude-plugin --skill simulator-workflows
Clone the repo
git clone --depth 1 https://github.com/conorluddy/xclaude-plugin

Made for: Claude Code, Codex.

Or install xclaude-plugin, the plugin that ships this one along with the rest of its 8 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for simulator-workflows

README.md
[![agentmods](https://agentmods.dev/badge/skills/conorluddy/xclaude-plugin/simulator-workflows.svg)](https://agentmods.dev/skills/conorluddy/xclaude-plugin/simulator-workflows)
Your own site
<a href="https://agentmods.dev/skills/conorluddy/xclaude-plugin/simulator-workflows"><img src="https://agentmods.dev/badge/skills/conorluddy/xclaude-plugin/simulator-workflows.svg" alt="Measured on agentmods" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,628 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00049 $0.03628
Opus 5 $0.00024 $0.01814
Sonnet 5 $0.00010 $0.00726
Haiku 4.5 $0.00005 $0.00363

Measured 4d ago against content hash 8dcd70c68f75, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

simulator-workflows scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/simulator-workflows/SKILL.md · 597 lines

How it starts

The opening of the file, as written. The whole thing — 597 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Simulator Workflows

Use the execute_simulator_command MCP tool for all simulator management

The xclaude-plugin provides the execute_simulator_command MCP tool which consolidates all simctl operations into a single, token-efficient dispatcher.

⚠️ CRITICAL: Always Use MCP Tools First

This is the most important rule: When working with iOS simulators, you MUST use the execute_simulator_command MCP tool.

  • DO: Invoke execute_simulator_command for all device/app lifecycle operations
  • DO: If the MCP tool fails, adjust parameters and retry
  • DO: Read error messages and debug the parameters
  • NEVER: Fall back to bash xcrun simctl commands
  • NEVER: Use simctl directly in bash
  • NEVER: Run xcrun simctl commands in a terminal

Why? The MCP tool provides:

  • Structured error handling
  • Token efficiency (consolidated into 1 tool vs. verbose bash output)
  • Proper integration with the xclaude-plugin architecture
  • Consistent response formatting

If execute_simulator_command fails, the issue is with parameters or device state - not that you should use bash.

When to Use Bash (And When NOT to)

❌ NEVER Use Bash For These (Use MCP Tools Instead)

Task ❌ WRONG (Bash) ✅ RIGHT (MCP Tool)
List devices xcrun simctl list execute_simulator_command op: "list"
Boot simulator xcrun simctl boot <UDID> execute_simulator_command op: "device-lifecycle" sub: "boot"
Install app xcrun simctl install <UDID> <app.app> execute_simulator_command op: "app-lifecycle" sub: "install"
Launch app xcrun simctl launch <UDID> <bundle-id> execute_simulator_command op: "app-lifecycle" sub: "launch"
Screenshot xcrun simctl io <UDID> screenshot execute_simulator_command op: "io" sub: "screenshot"

✅ Bash is Acceptable For (Non-Simulator Tasks)

  • File operations: mkdir, cp, rm, ls, etc.
  • Text inspection: grep, find, cat, etc.
  • Git operations: git status, git log, etc.
  • Environment checks: which, simctl --version, etc.
  • Project exploration: find . -name "*.app", etc.

Read the full file on GitHub · 597 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 597 lines · 49 tokens per session scan A 8dcd70c68f75

Subscribe to this mod's changes

simulator-workflows is a skill published in the GitHub repository conorluddy/xclaude-plugin (182 stars, last pushed 6mo ago), licensed MIT. It adds 49 tokens to every session and 3,628 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

platform-specialist

Doc-driven platform integration expert. Converts a web app to LINE MINI App (LIFF SDK), PWA (Next.js 16), and Capacitor (iOS/Android). Expo & Tauri are secondary/legacy. ปรัชญาหลัก: ดึง docs จริงล่าสุดก่อนเขียนโค้ดเสมอ — ไม่ freeze snippet ที่จะ rot. Triggers: "LINE MINI App", "LIFF", "LINE OA", "convert to app"…

wasintoh/toh-framework · 161 tokens

goga-cell-kotlin

Kotlin rules for implementing CODEMANIFEST contracts.

qarium/goga · 15 tokens

goga-cell-swift

Swift CODEMANIFEST contract implementation rules.

qarium/goga · 13 tokens

planflow

Draft a plan and get it approved as an editable flowchart in the user's browser before executing. Use when the user asks to plan a task with PlanFlow, or wants to review, edit, or approve a plan before any code changes are made.

davejj1530/planflow-greenlight · 53 tokens

skill-reviewer

Reviews DeerFlow skill packages for readiness, triggers, safety boundaries, resources, and evidence. Invoke when users ask to audit, grade, or production-check an existing skill.

bytedance/deer-flow · 38 tokens

surprise-me

Create a delightful, unexpected "wow" experience for the user by dynamically discovering and creatively combining other enabled skills. Triggers when the user says "surprise me" or any request expressing a desire for an unexpected creative showcase. Also triggers when the user is bored, wants inspiration, or asks for…

bytedance/deer-flow · 67 tokens