macos-window-architect — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited macos-window-architect (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use SwiftUI scene/window modifiers first; switch to macos-appkit-bridge only when SwiftUI cannot express the behavior.
macos-runtime-debugger. WindowGroup("Destination Video") {
CatalogView()
.toolbar(removing: .title)
.toolbarBackgroundVisibility(.hidden, for: .windowToolbar)
} Window("About", id: "about") {
AboutView()
.toolbar(removing: .title)
.toolbarBackgroundVisibility(.hidden, for: .windowToolbar)
.containerBackground(.thickMaterial, for: .window)
}
.windowMinimizeBehavior(.disabled)
.restorationBehavior(.disabled) WindowGroup("Player", for: Video.self) { $video in
PlayerView(video: video)
}
.defaultWindowPlacement { content, context in
WindowPlacement(size: clampToDisplay(content.sizeThatFits(.unspecified),
displayBounds: context.defaultDisplay.visibleRect))
}
.windowIdealPlacement { content, context in
let size = zoomToFit(content.sizeThatFits(.unspecified),
displayBounds: context.defaultDisplay.visibleRect)
return WindowPlacement(centeredPosition(for: size, in: context.defaultDisplay.visibleRect), size: size)
} Color.clear
.frame(height: 48)
.contentShape(Rectangle())
.gesture(WindowDragGesture())
.allowsWindowActivationEvents(true) Window("Welcome", id: "welcome") { WelcomeView() }
.windowStyle(.plain)
.defaultLaunchBehavior(.presented).toolbar(removing: .title) for visual title removal, not semantic title removal..toolbarBackgroundVisibility(.hidden, for: .windowToolbar) for top-edge content; .toolbarVisibility(.hidden, for: .windowToolbar) only when the toolbar disappears entirely.WindowDragGesture() on a non-control overlay when toolbar drag affordance is lost..containerBackground(.thickMaterial, for: .window) for utility/About glass-like backdrops instead of hardcoded translucency.content.sizeThatFits(.unspecified) plus context.defaultDisplay.visibleRect; consider external, small, and rotated displays..windowStyle(.plain) windows need obvious move/close affordances.NSWindow before checking SwiftUI modifiers: .windowMinimizeBehavior, .restorationBehavior, .defaultWindowPlacement, .windowIdealPlacement, .windowStyle, .defaultLaunchBehavior.Use macos-swiftui-architect for broader scene architecture, macos-liquid-glass-designer for visual material adoption, and macos-appkit-bridge for true NSWindow/NSPanel needs.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.