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.md
source content

iOS Quick Fix Protocol

Diagnose and fix common iOS development issues:

  1. Run diagnostic:
make verify
  1. 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
  1. Fix based on error type:
  • Build errors: Clean + rebuild
  • Test failures: Check test file locations
  • Runtime crashes: Check simulator logs
  • Missing symbols: Resolve dependencies
  1. Verify fix:
make build

Return what was broken and how it was fixed.