ios-visual-debug
2
总安装量
2
周安装量
#69214
全站排名
安装命令
npx skills add https://github.com/willsigmon/sigstack --skill ios-visual-debug
Agent 安装分布
opencode
2
codex
2
claude-code
2
antigravity
2
gemini-cli
2
windsurf
1
Skill 文档
iOS Visual Debugging Workflow
Capture and analyze the current state of the iOS app in simulator:
- Check if app is running:
ps aux | grep "com.leavn.app" | grep -v grep
- Capture screenshot:
xcrun simctl io booted screenshot ~/Desktop/debug_$(date +%s).png
-
Read and analyze the screenshot using Claude’s vision capabilities
-
Check recent logs:
xcrun simctl spawn booted log show --predicate 'process == "Leavn"' --last 30s --info
- 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.