What problem does it solve? Building a global command palette (⌘K) with fuzzy search, grouped commands, keyboard shortcuts, and async loading requires wiring together many pieces; this Skill provides ready-to-use cmdk patterns so you don't start from scratch. ## Core Features & Use Cases - Command Palette Setup: Complete React component with CommandInput, CommandList, CommandGroup, and CommandItem wired for search and selection. - Fuzzy Search & Highlighting: Fuse.js integration for ranked results with match highlighting, plus a simple built-in filter alternative. - Advanced Patterns: Debounced async loading, global ⌘K keyboard listener hook, contextual commands, and MRU (recent commands) history via localStorage. - Use Case: Add a ⌘K command palette to a Next.js app where users search global and page-specific actions, see recent commands, and trigger actions with keyboard shortcuts. ## Quick Start Ask the agent to add a command palette with ⌘K shortcut and fuzzy search to your React app using cmdk.