xcode build analyzer

Systematically analyze and fix Xcode build errors:

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "xcode build analyzer" with this command: npx skills add willsigmon/sigstack/willsigmon-sigstack-xcode-build-analyzer

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

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

dead code eliminator

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

codebase health reporter

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

analyze codebase

No summary provided by upstream source.

Repository SourceNeeds Review