What problem does it solve? Standalone HTML fragments often break or misalign when viewed across mobile and desktop viewports, and wiring navigation, history, and partial page updates by hand is error-prone. This Skill structures page fragments into a consistent responsive layout shell with correct HTMX behavior. ## Core Features & Use Cases - Responsive Layout Wrapping: Structures content with CSS Grid and Flexbox utilities from Tailwind CSS, adapting from small mobile screens to ultra-wide desktop monitors. - Persistent Navigation: Implements sticky navigation patterns, using a bottom bar on mobile and a sidebar or top bar on desktop. - HTMX History and Swaps: Applies hx-push-url, hx-replace-url, hx-history-elt, hx-target, and hx-select-oob so fragment swaps update the right regions without breaking browser history. - Use Case: When building a new dashboard view, use this Skill to wrap the content fragment in a layout where the server returns only content fragments while navigation and sidebars stay intact. ## Quick Start Wrap my dashboard HTML fragment into a responsive layout with a mobile bottom bar and desktop sidebar using HTMX fragment swaps.