maestro-run

maestro-run is a skill for Claude Code from parisgroup-ai/imersao-ia-setup. It costs 66 tokens per session (1,737 once invoked), scanned A, original, MIT.

A command for running Maestro end-to-end tests on an iOS Simulator. End-to-end tests imitate user actions through a complete mobile app flow, such as signing in or completing a purchase.

In plain words
What is it for?
Use it to discover and run all mobile flows, run a named test category or file, or open Maestro Studio for interactive testing.
Why use it?
It removes much of the manual work of finding the mobile project, locating test flows, and choosing how to run them.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the imersao plugin — 51 skills, 7 commands shipped together

Good fit Use it to discover and run all mobile flows, run a named test category or file, or open Maestro Studio for interactive testing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/parisgroup-ai/imersao-ia-setup/maestro-run
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.

Any agent
npx skills add parisgroup-ai/imersao-ia-setup --skill maestro-run
Clone the repo
git clone --depth 1 https://github.com/parisgroup-ai/imersao-ia-setup

Made for: Claude Code.

Or install imersao, the plugin that ships this one along with the rest of its 51 skills, 7 commands.

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 maestro-run

README.md
[![agentmods](https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/maestro-run/github.svg)](https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/maestro-run)
Your own site
<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/maestro-run"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/maestro-run/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for maestro-run

Your own site · 80×15
<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/maestro-run"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/maestro-run.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,737 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00066 $0.01737
Opus 5 $0.00033 $0.00869
Sonnet 5 $0.00013 $0.00347
Haiku 4.5 $0.00007 $0.00174

Measured 11d ago against content hash 76dbfb0a7c83, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

maestro-run scanned grade A with 1 finding 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 11d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s http://localhost:8081/status 2>/dev/null | grep -q "packager-status:running" || \
plugins/imersao/skills/maestro-run/SKILL.md · 201 lines

How it starts

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

maestro-run - Smart Maestro Test Runner

Run Maestro E2E flows against iOS Simulator with automatic project discovery, category detection, and structured output. Works with any mobile project (Expo, React Native, native Swift/Kotlin, Flutter, etc.).

Usage

/maestro-run                    # Run all flows
/maestro-run smoke              # Category by name
/maestro-run auth               # Another category
/maestro-run <flow-file>        # Specific flow file
/maestro-run studio             # Open Maestro Studio (interactive)

Step 1: Project Discovery

Maestro doesn't enforce a single convention for where flows live. Scan the project to find the right paths — the goal is zero configuration from the user.

# Find .maestro directories (could be at root, in an app subdir, etc.)
find . -name ".maestro" -type d -not -path "*/node_modules/*" -not -path "*/.git/*" 2>/dev/null

# If multiple .maestro dirs found, prefer the one closest to cwd
# If none found, check for maestro/ (without dot) or flows/ at root

# Find config file
# Look for: .maestro/config.yaml, .maestro/config.yml, maestro.yaml

Extract from the discovered structure:

What How Fallback
Flows dir <maestro-dir>/flows/ or <maestro-dir>/ if flows are at root level Ask user
App bundle ID Parse from config.yaml (appId), or app.json/app.config.js (Expo), or *.xcodeproj (native iOS) Ask user
Shared sub-flows <maestro-dir>/shared/ or any _shared//common/ directory None needed
Categories Subdirectories inside flows dir (each subdir = one category) Treat all flows as uncategorized

Important: Do NOT hardcode category names. Discover them dynamically:

# List categories (subdirectories of flows dir)
ls -d <flows-dir>/*/ 2>/dev/null | xargs -I{} basename {}

# List all flow files
find <flows-dir> -name "*.yaml" -o -name "*.yml" | grep -v shared | grep -v _shared | grep -v common

Read the full file on GitHub · 201 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. 11d ago First seen · 201 lines · 66 tokens per session scan A 76dbfb0a7c83

Subscribe to this mod's changes

maestro-run is a skill published in the GitHub repository parisgroup-ai/imersao-ia-setup (1 stars, last pushed 29d ago), licensed MIT. It adds 66 tokens to every session and 1,737 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

test-native-extension

Validate a third-party control repo across four automated layers plus one printed manual recipe. Layer 1 asserts native-source structure (Android getName() and iOS +moduleName to manifest nativeModule; @ReactMethod / RCTEXPORTMETHOD to methods; no @ReactModule) plus load/init readiness (ReactPackage public no-arg…

microsoft/power-platform-skills · 211 tokens

asc-shots-pipeline

Orchestrate iOS screenshot automation with xcodebuild/simctl for build-run, AXe for UI actions, JSON settings and plan files, Koubou-based framing (asc screenshots frame), and screenshot upload (asc screenshots upload). Use when users ask for automated screenshot capture, AXe-driven simulator flows, frame composition…

rorkai/app-store-connect-cli-skills · 79 tokens

mobile-testing-detox

Detox E2E gray-box testing for React Native - matchers, actions, expectations, waitFor, device API, synchronization, mocking, artifacts, CI integration.

agents-inc/skills · 38 tokens

mobile-testing-maestro

Maestro mobile E2E testing - YAML flows, selectors, flow control, environment variables, JavaScript expressions, device interactions, Maestro Studio, Maestro Cloud CI, tags, test suites.

agents-inc/skills · 42 tokens

ios-device-qa

Use when the user runs /ios-device-qa to drive a real iPhone over USB through a debug-bridge daemon and return a device QA report with verified interactions. Do not use for remote, credential, publish, deploy, or irreversible changes.

OutlineDriven/odin-claude-plugin · 55 tokens

xcode-simulator-testing

Use when asked to run /xcode-simulator-testing with a scheme name or current to build and launch an iOS app in a simulator. Not for project regeneration: use ios-build-fix.

OutlineDriven/odin-claude-plugin · 46 tokens