ios-simulator-reset

📁 willsigmon/sigstack 📅 Jan 25, 2026
2
总安装量
2
周安装量
#74995
全站排名
安装命令
npx skills add https://github.com/willsigmon/sigstack --skill ios-simulator-reset

Agent 安装分布

opencode 2
codex 2
claude-code 2
antigravity 2
gemini-cli 2
windsurf 1

Skill 文档

iOS Simulator Full Reset

When things are really broken, start fresh:

  1. Shutdown all simulators:
xcrun simctl shutdown all
  1. Clean build artifacts:
make clean
rm -rf ~/Library/Developer/Xcode/DerivedData/Leavn-*
  1. Reset simulator (optional – destructive):
# Delete and recreate simulator
xcrun simctl delete [DEVICE_ID]
xcrun simctl create "Leavn Fresh" "iPhone 16 Pro"
  1. Fresh build:
make sim-build
  1. Install and launch:
make sim-run

Use this when:

  • “It works in Xcode but not via make”
  • Persistent runtime errors that don’t make sense
  • Simulator state is corrupted
  • Nothing else works

Return status of each step.