Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计通过

litestar-htmx莱特星 HTMX

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

349

周安装

14

GitHub Stars

5

下载量

113
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:litestar-htmx(莱特星 HTMX)
来源仓库:https://github.com/alti3/litestar-skills
仓库路径:skills/litestar-htmx
安装命令:
npx skills add https://github.com/alti3/litestar-skills --skill litestar-htmx
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alti3/litestar-skills --skill litestar-htmx

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合编写单元测试、端到端测试、测试计划或根据失败日志定位问题。
  • 使用时需确认项目测试框架、运行命令和夹具数据,避免误改真实逻辑。
  • 涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。
  • 安装方式:通过 GitHub 仓库添加,需确认权限与操作边界。

SKILL.md

HTMX

Execution Workflow

  1. Decide whether HTMX should be enabled globally with HTMXPlugin or locally with request_class=HTMXRequest.
  2. Shape handlers around one contract: full page for normal requests, fragment or HTMX-aware response for HTMX requests.
  3. Read request context from request.htmx instead of hand-parsing HTMX headers.
  4. Choose the right response primitive: HTMXTemplate for rendered fragments or the dedicated HTMX response classes for redirect, refresh, swap, retarget, event, history, or polling behavior.
  5. Keep templates small and swap-oriented so each endpoint returns only the markup or signal the target element needs.
  6. Verify both non-HTMX and HTMX behaviors in tests, including headers, redirect semantics, and fragment shape.

Core Rules

  • Use HTMXPlugin() when most of the app should speak HTMX-aware requests.
  • Use request_class=HTMXRequest locally when only one app layer or route needs HTMX support.
  • Prefer request.htmx and HTMXDetails properties over manual header inspection.
  • Keep full-page and fragment rendering intentional; do not accidentally return layout HTML into a fragment swap target.
  • Annotate HTMXTemplate handlers as returning Template, matching the Litestar docs.
  • If you trigger an HTMX event from HTMXTemplate, provide after= and keep it to receive, settle, or swap.
  • Use the dedicated HTMX response classes instead of hand-setting HX-* headers.
  • Treat HTMX handlers as first-class HTTP endpoints with clear success, validation, and fallback behavior.

Decision Guide

  • Use HTMXPlugin() when HTMX is the dominant interaction model.
  • Use HTMXConfig(set_request_class_globally=False) when you want the plugin installed without forcing HTMXRequest at app scope.
  • Use request.htmx truthiness to branch between full-page and fragment responses.
  • Use HTMXTemplate when the response is HTML and may also need push_url, re_swap, re_target, or event triggering.
  • Use ClientRedirect when the browser should redirect with a full reload.
  • Use HXLocation when the client should navigate without a full page reload and may need target, swap, select, headers, or values.
  • Use PushUrl or ReplaceUrl when you want to return content and also mutate browser history or the location bar.
  • Use Reswap, Retarget, or TriggerEvent when the content stays inline but the HTMX client behavior must change.
  • Use ClientRefresh when the whole page must refresh.
  • Use HXStopPolling for polling endpoints that should explicitly stop the HTMX client.

Reference Files

Read only the sections you need:

Recommended Defaults

  • Keep template rendering centralized through normal template_config; layer HTMX on top of existing server-rendered HTML rather than inventing a separate rendering stack.
  • Use HTMXPlugin() when most handlers will need request.htmx.
  • Branch once near the handler boundary between full-page and fragment rendering.
  • Return the smallest useful HTML fragment for the current swap target.
  • Prefer HTMXTemplate and the built-in HTMX response classes over manual header management.
  • Keep route URLs stable so push_url, replace_url, and HXLocation remain predictable in tests and browser history.

Anti-Patterns

  • Parsing raw HX-* headers directly when request.htmx already provides the values.
  • Returning a full layout to an element that expects only a fragment.
  • Annotating handlers as HTMXTemplate instead of Template.
  • Mixing JSON API behavior and fragment HTML behavior without an explicit branching contract.
  • Hand-crafting HTMX response headers when a Litestar response class already models the behavior.
  • Using HTMX response primitives without covering the non-HTMX fallback path when the route can also be opened directly.
  • Treating polling, redirects, or event triggers as frontend-only concerns and leaving the server contract implicit.

Validation Checklist

  • Confirm HTMX enablement is global or local by intent.
  • Confirm non-HTMX requests still receive a valid page or fallback response.
  • Confirm HTMX requests return fragment-sized HTML or the intended HTMX response class.
  • Confirm request.htmx fields used by the handler actually match the client-side HTMX attributes in play.
  • Confirm HTMXTemplate event triggering includes after= when required.
  • Confirm redirect, push, replace, retarget, swap, refresh, and polling behavior use the correct response primitive.
  • Confirm templates do not depend on layout-only context when rendered as fragments.
  • Confirm tests cover both body content and HTMX behavior.

Cross-Skill Handoffs

  • Use litestar-templating for engine setup, template directories, shared layouts, and template helper concerns.
  • Use litestar-responses when the main issue is generic response metadata rather than HTMX-specific headers and flow control.
  • Use litestar-routing when controller/router-level request_class placement or route structure is the real problem.
  • Use litestar-testing to assert fragment HTML, redirects, polling stop behavior, and HTMX header-driven contracts.

Litestar References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.3%
按下载量换算36

Claude

31.62%
按下载量换算36

Cursor

20.85%
按下载量换算24

Gemini CLI

9.41%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills