swift-app-lifecycle
Installation
SKILL.md
Swift App Lifecycle
Lifecycle Position
Phase 0-1 (Scaffold/Architecture). Load when setting up app entry point, scenes, and system integration. Related: macos-development for macOS-specific architecture patterns.
App Entry Point
@main
struct MyApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}