engram-dashboard-htmx
Installation
SKILL.md
When to Use
Use this skill when:
- Adding htmx partial loading or filter controls
- Wiring forms or toggles in the dashboard
- Changing browser/search interactions
HTMX Rules
- Server-rendered HTML is the product; htmx enhances it, it does not replace it.
- Prefer simple
hx-getandhx-includeover custom client-side state. - Filters must preserve the active state users would expect across interactions.
- Forms that mutate system state must still work as normal HTTP posts.
- Partial endpoints return meaningful HTML on their own, not fragments that depend on hidden JS assumptions.
Related skills