Claude-skill-registry ios-visual-debug

Capture and analyze iOS simulator screenshots for visual debugging

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/ios-visual-debug" ~/.claude/skills/majiayu000-claude-skill-registry-ios-visual-debug && rm -rf "$T"
manifest: skills/data/ios-visual-debug/SKILL.md
source content

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.