What problem does it solve? SwiftUI macOS apps often need windows with different roles—main browsers, About panels, media players, welcome screens—but default window chrome, restoration, and placement rarely fit each role. This Skill guides you through tuning each window's toolbar, drag regions, behavior, and placement using native SwiftUI scene and window modifiers. ## Core Features & Use Cases - Toolbar and Title Customization: Hide titles or toolbar backgrounds with .toolbar(removing: .title) and .toolbarBackgroundVisibility while keeping accessibility intact. - Drag Regions and Borderless Windows: Add WindowDragGesture overlays and .windowStyle(.plain) for custom chrome that stays movable. - Behavior and Placement Control: Configure minimize, restoration, launch behavior, and default/ideal placement using sizeThatFits and visibleRect. - Use Case: Build a media player window that hides its toolbar background, preserves aspect ratio when zoomed, clamps to the visible display area, and still drags from a custom overlay. ## Quick Start Use the window-management skill to customize my SwiftUI macOS window's toolbar, drag region, restoration behavior, and default placement.