smithery.ai

run

Build and launch GridRacer in the iOS Simulator

First seen Mar 21, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash, Read

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,120 B
  • docs SUMMARY.md 58 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Build and Run GridRacer

Quick iteration: build the app and launch in simulator.

Steps

  1. Detect simulator:

``bash SIMULATOR=$(xcrun simctl list devices available | grep -E "iPhone (16|15|14)" | grep -v unavailable | head -1 | sed -E 's/.iPhone ([0-9]+)./iPhone \1/') echo "Using: $SIMULATOR" ``

  1. Build (stop on failure):

``bash xcodebuild -scheme GridRacer -configuration Debug -destination 'generic/platform=iOS Simulator' build 2>&1 | grep -E "(error:|warning:|BUILD|FAILED|SUCCEEDED)" | tail -20 ``

  1. Find built app:

``bash APP_PATH=$(find ~/Library/Developer/Xcode/DerivedData -name "GridRacer.app" -path "/Build/Products/Debug-iphonesimulator/" -not -path "Index.noindex" -type d 2>/dev/null | head -1) ``

  1. Boot, install, launch:

``bash xcrun simctl boot "$SIMULATOR" 2>/dev/null || true xcrun simctl install booted "$APP_PATH" xcrun simctl launch booted trouarat.GridRacer open -a Simulator ``