← Back to list

xcode-build-analyzer
by willsigmon
Website for sigstack.dev - Claude Code stack showcase
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
name: Xcode Build Analyzer description: Analyze Xcode build failures, categorize errors by type, identify cascade issues, and provide systematic fix plan for Leavn iOS app allowed-tools: Bash, Read, Grep
Xcode Build Analyzer
Instructions
Systematically analyze and fix Xcode build errors:
-
Get error summary:
xcodebuild -project Leavn.xcodeproj -scheme Leavn -destination 'platform=iOS Simulator,name=LeavnTest' build 2>&1 | grep "error:" | cut -d: -f4- | sort -u -
Categorize by type:
- Import issues: Missing SwiftData, UIKit, etc.
- Type mismatches: Wrong return types, protocol conformances
- Actor isolation: @MainActor property access from nonisolated
- Property wrappers: @ObservedObject on @Observable types
- Missing types: Deleted files still referenced
- Binding issues: $var on non-@Bindable types
-
Identify cascade errors:
- One missing type → 50 errors
- One @Observable migration → 10 binding errors
- Find the root cause, fix once
-
Priority fix order:
- Missing imports (unlock many files)
- Missing types (cascade fixes)
- Property wrappers (mechanical fixes)
- Actor isolation (add nonisolated)
- Complex type inference (last)
-
Quick wins:
- Count errors between fixes
- Commit when 50%+ reduction achieved
- Disable broken code temporarily if needed
Use this skill when: Build fails with many errors, refactoring breaks build, need systematic error fixing
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon