Systematic debugging workflows for iOS/macOS development. These patterns help identify root causes in minutes rather than hours by following structured diagnostic approaches.
ALWAYS load reference files if there is even a small chance the content may be required. It's better to have the context than to miss a pattern or make a mistake.
| Navigation | NavigationStack not responding, unexpected pops, deep link failures | | Build Issues | SPM resolution, "No such module", dependency conflicts | | Memory | Retain cycles, memory growth, deinit not called | | Build Performance | Slow builds, Derived Data issues, Xcode hangs | | Xcode Debugging | LLDB commands, breakpoints, view debugging |
Используйте при отладке проблем NavigationStack (не отвечает, неожиданные всплывающие окна, сбои), сбоев сборки (разрешение SPM, «Нет такого модуля», зависание сборки) или проблем с памятью (циклы сохранения, утечки, деинит не вызывается). Рабочие процессы систематической диагностики для iOS/macOS. Источник: johnrogers/claude-swift-engineering.