Agent Skills: iOS Visual Debugging Workflow

Capture and analyze iOS simulator screenshots for visual debugging

UncategorizedID: willsigmon/sigstack/ios-visual-debug

Install this agent skill to your local

pnpm dlx add-skill https://github.com/willsigmon/sigstack/tree/HEAD/ops/sigmachines/claude/skills/ios-visual-debug

Skill Files

Browse the full folder contents for ios-visual-debug.

Download Skill

Loading file tree…

ops/sigmachines/claude/skills/ios-visual-debug/SKILL.md

Skill Metadata

Name
ios-visual-debug
Description
Capture and analyze iOS simulator screenshots for visual debugging

iOS Visual Debugging Workflow

Capture and analyze the current state of the iOS app in simulator:

  1. Check if app is running:
ps aux | grep "com.leavn.app" | grep -v grep
  1. Capture screenshot:
xcrun simctl io booted screenshot ~/Desktop/debug_$(date +%s).png
  1. Read and analyze the screenshot using Claude's vision capabilities

  2. Check recent logs:

xcrun simctl spawn booted log show --predicate 'process == "Leavn"' --last 30s --info
  1. Report findings:
  • What's visible on screen
  • Any UI issues (layout, missing content, errors)
  • Recent log errors
  • Recommended next steps

Return screenshot path and analysis.