When to use this skill ALWAYS use this skill when the user mentions: - Native window menus or menu bars - Menu item click events and handlers - Keyboard shortcuts or accelerators in menus Trigger phrases include: - "window menu", "menu bar", "menu item", "keyboard shortcut", "accelerator", "context menu" How to use this skill 1. Build a menu in your Tauri app setup: 2. Assign keyboard accelerators using the format 3. Handle menu events in the callback with match on event IDs 4. Adapt for platform conventions : macOS has the app menu (About, Preferences, Quit); Windows uses File/Edit/Help 5. U…