What problem does it solve? Teams building dynamic web UIs often drift into SPA-style patterns—JSON APIs, client-side DOM rebuilding, and heavy JavaScript—that undermine the simplicity of HTMX. This Skill enforces consistent server-driven rendering, correct hx-swap usage, and secure request handling across all frontend work. ## Core Features & Use Cases - Architecture Enforcement: Mandates HTML fragments for HTMX requests, HX-Request header detection, and full layouts for direct browser visits. - Styling & Accessibility Standards: Requires Tailwind CSS utility classes, semantic HTML tags, mobile-first responsive layouts, and visible focus states. - Security & Correctness Rules: Enforces CSRF protection on mutating requests, correct HTTP status codes, hx-push-url history handling, and OOB swaps for multi-target updates. - Use Case: When adding a new settings page to an HTMX app, the Skill ensures the server returns a partial fragment for hx-get navigation, uses hx-push-url for history, and avoids any client-side DOM reconstruction. ## Quick Start Ask the AI to build a new HTMX page fragment with Tailwind styling and proper hx-swap behavior following the project conventions.