Claude Code Plugins

Community-maintained marketplace

Feedback

Fast diagnosis and fix for common iOS build/runtime issues

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name ios-quick-fix
description Fast diagnosis and fix for common iOS build/runtime issues
model sonnet

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.