Claude-skill-registry ios-quick-fix
Fast diagnosis and fix for common iOS build/runtime issues
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-quick-fix" ~/.claude/skills/majiayu000-claude-skill-registry-ios-quick-fix && rm -rf "$T"
manifest:
skills/data/ios-quick-fix/SKILL.mdsource content
iOS Quick Fix Protocol
Diagnose and fix common iOS development issues:
- Run diagnostic:
make verify
- Check for common issues:
- SPM package resolution failures →
make spm-reset - Derived data corruption →
make clean - Simulator issues →
xcrun simctl list devices - Missing dependencies →
make resolve
- Fix based on error type:
- Build errors: Clean + rebuild
- Test failures: Check test file locations
- Runtime crashes: Check simulator logs
- Missing symbols: Resolve dependencies
- Verify fix:
make build
Return what was broken and how it was fixed.