What problem does it solve? Debugging macOS app behavior is hard without visibility into what actually happens at runtime. This Skill guides you through adding lightweight, structured logging with Apple's unified logging system and verifying that events actually fire, without turning the codebase into a logging landfill. ## Core Features & Use Cases - Structured Logger Instrumentation: Add Logger from the OSLog framework with clear subsystem/category pairs for features like Windowing, Sidebar, Commands, MenuBar, Sync, and Import. - Runtime Verification Workflow: Build, run, and confirm events fired using Console.app or log stream with process, subsystem, and category predicates. - Privacy and Noise Guardrails: Keep secrets, tokens, and personal data out of logs, and demote or remove noisy debug logs before finishing. - Use Case: You suspect a sidebar selection handler is not firing. Add a single info-level log in the selection path, run the app, and verify the event with log stream --predicate 'subsystem == "com.example.app" && category == "Sidebar"'. ## Quick Start Use the telemetry skill to add Logger instrumentation to my macOS sidebar selection handler and verify the event fires with log stream.