htmx-interactivity
Coordinate htmx with lightweight browser-side interactivity. Use when adding Alpine.js, _hyperscript, local UI state, custom events, dialogs, transi…
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
htmx Interactivity
Use this skill when htmx handles server trips but the page still needs local browser behavior. Keep the ownership line explicit so server-rendered HTML and client-side state do not fight each other.
Ownership Rules
- htmx owns server requests, fragment swaps, history updates, and server-triggered events.
- The server owns durable state, validation, permissions, and canonical HTML.
- Alpine or plain JavaScript owns local state such as menu open/closed, tabs, disclosure state, temporary filters, focus helpers, and small transitions.
_hyperscriptis best for short event-driven behaviors attached to markup.- Do not mirror the same durable state in both server data and a client store unless there is a reconciliation plan.
Use Alpine When
- A component has local state that changes without a server request.
- You need a dropdown, popover, modal shell, tab set, disclosure, or preview toggle.
- You need to coordinate htmx lifecycle events with UI state.
- The state naturally belongs near the markup and is simple enough to read inline.
Keep persistent Alpine state outside htmx targets that will be replaced. If htmx swaps the element that owns x-data, that state resets.
Use _hyperscript When
- The behavior is a small event script, such as adding a class, waiting, then removing it.
- The script reads like a local interaction, not application business logic.
- The team accepts
_hyperscriptsyntax as part of the template layer.
Avoid _hyperscript for complex state machines, security-sensitive logic, large data transforms, or behavior that needs substantial tests.
Event Boundary Pattern
Use events as the bridge between server results and local browser state:
- The htmx request submits to the server.
- The server returns HTML and optionally triggers a domain event.
- Alpine,
_hyperscript, or plain JavaScript listens for the event. - Local UI state updates, such as closing a modal or focusing a saved row.
Prefer domain event names over implementation names:
<section x-data="{ open: true }" @profile-saved.window="open = false">
<form hx-post="/profile" hx-target="#profile-panel" hx-swap="outerHTML">
...
</form>
</section>
htmx Lifecycle Hooks
Use lifecycle events for cross-cutting behavior:
htmx:configRequestfor headers such as CSRF when the framework needs them.htmx:beforeRequestandhtmx:afterRequestfor instrumentation and loading behavior that attributes cannot express.htmx:beforeSwapfor exceptional status handling.htmx:afterSwaporhtmx:loadfor initializing third-party widgets in swapped content.- WebSocket extension events only in code that owns realtime behavior.
Prefer htmx attributes such as hx-indicator and hx-disabled-elt before writing lifecycle JavaScript.
Swaps And Local State
- Keep long-lived local state outside replaceable htmx targets.
- If a target contains initialized third-party widgets, define how they are destroyed or re-initialized.
- After injecting htmx-enabled markup outside an htmx request, use
htmx.processfrom thehtmx-js-apiskill. - Avoid global listeners that accumulate every time a fragment is swapped.
Data From The Server
- Prefer HTML attributes or inert JSON script blocks for server-provided data.
- Escape all server-rendered values before they enter JavaScript expressions.
- Use text binding APIs for untrusted display text.
- Avoid embedding secrets, signed tokens, or authorization facts in local state.
Accessibility
- Use real buttons for local actions.
- Bind
aria-expanded,aria-controls,aria-selected, andaria-hiddenfrom local state. - Preserve focus when opening/closing dialogs and after successful htmx swaps.
- Support Escape for dismissible overlays.
- Avoid replacing focused elements without a plan to move focus somewhere sensible.
CSP And Security
Alpine, _hyperscript, inline event attributes, and hx-on can all affect Content Security Policy. Use htmx-security when adding or tightening CSP, accepting user-authored HTML, or choosing CSP-compatible builds.
Avoid
- Do not restart Alpine after every htmx swap.
- Do not put durable server truth in a client store just to avoid a small htmx request.
- Do not let local scripts bypass server authorization or validation.
- Do not place broad event handlers in fragments that may be swapped repeatedly.
- Do not use
x-htmlor equivalent APIs for untrusted content.
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
plugins/LVTD-LLC/skills/skills/htmx-interactivity/SKILL.md