Agent skill

ios-visual-debug

Capture and analyze iOS simulator screenshots for visual debugging

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/ios-visual-debug

SKILL.md

iOS Visual Debugging Workflow

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

  1. Check if app is running:
bash
ps aux | grep "com.leavn.app" | grep -v grep
  1. Capture screenshot:
bash
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:

bash
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.

Didn't find tool you were looking for?

Be as detailed as possible for better results