What problem does it solve? Building interactive web interfaces with htmx requires knowing dozens of attributes, swap strategies, event lifecycles, and server response conventions, and mistakes like wrong trigger syntax or missing out-of-band swap handling cause subtle bugs that are hard to diagnose. ## Core Features & Use Cases - Attribute Reference: Covers hx-get, hx-post, hx-swap, hx-target, hx-trigger, hx-boost, hx-sync, and request/response control attributes with working HTML examples. - Implementation Patterns: Provides ready patterns for active search, infinite scroll, polling, form submission, out-of-band swaps, loading indicators, and view transitions. - Server-Side Guidance: Documents HX-Request header detection, partial template conventions, response headers like HX-Trigger and HX-Redirect, and CSRF/security configuration. - Use Case: When a form submission should update only part of a page with a loading spinner and error targeting, the skill supplies the correct combination of hx-post, hx-indicator, hx-disabled-elt, and the response-targets extension. ## Quick Start Ask the assistant to add htmx-powered active search with debounced input and a loading indicator to your page.