Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

xhtml-authorxhtml 作者

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

210

周安装

9

GitHub Stars

1

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/profpowell/vanilla-breeze --skill xhtml-author

简介

xhtml-author 用于辅助安全审计、权限检查、凭据风险和认证流程排查。

  • 适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。
  • 使用时不能把工具输出直接当最终结论,涉及密钥、令牌或生产系统时应先确认最小权限和操作边界。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 可结合来源仓库和 SKILL.md 进一步了解功能边界和使用限制。

SKILL.md

XHTML Authoring Skill

Syntax Rules (MUST follow)

  1. Self-closing void elements: <br/>, <hr/>, <img/>, <meta/>, <link/>, <input/>
  2. Lowercase everything: Tags and attributes must be lowercase
  3. Quote all attributes: Always use double quotes attr="value"
  4. Close all tags: No implicit closing
  5. Single h1: One <h1> per page only
  6. Lowercase doctype: Use <!doctype html> not <!DOCTYPE html>

Semantic Structure (MUST use)

Use semantic HTML5 elements instead of <div>:

ElementPurpose
<header>Page or section header
<nav>Navigation blocks
<main>Primary content (one per page)
<article>Self-contained content
<section>Thematic grouping with heading
<aside>Tangentially related content
<footer>Page or section footer
<figure>Self-contained media with caption
<figcaption>Caption for figure
<hgroup>Heading group

Div Alternatives (NEVER use <div>)

The <div> element is blacklisted in this project. Always use semantic alternatives:

Instead of...Use...
<div class="header"><header>
<div class="nav"><nav>
<div class="footer"><footer>
<div class="sidebar"><aside>
<div class="content"><main> or <article>
<div class="section"><section> with heading
<div class="card"><article> or custom element like <product-card>
<div class="wrapper">Style the parent element directly
<div class="container">Use CSS on <body> or parent landmark
<div class="grid"><ul> or <ol> with CSS grid

Layout Wrappers

For layout constraints (centering, max-width), apply CSS directly to semantic elements:

/* Instead of <div class="header-content"> inside <header> */
header {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* For edge-to-edge backgrounds with centered content */
header {
  background: var(--color-primary);
  /* Use padding for the content area */
  padding: var(--space-md) max(var(--space-md), calc((100% - var(--max-width)) / 2));
}

When No Semantic Element Exists

If you truly need a generic container (rare), use a custom element with semantic naming:

<x-layout-grid>...</x-layout-grid>
<x-card-group>...</x-card-group>

Template

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8"/>
  <meta name="viewport" content="width=device-width, initial-scale=1"/>
  <title>Page Title</title>
</head>
<body>
  <header>
    <nav aria-label="Main navigation">
      <ul>
        <li><a href="#main">Skip to content</a></li>
      </ul>
    </nav>
    <h1>Main Heading</h1>
  </header>

  <main id="main">
    <article>
      <h2>Article Title</h2>
      <p>Content here.</p>
    </article>
  </main>

  <footer>
    <p>Footer content</p>
  </footer>
</body>
</html>

Void Elements (self-closing)

These elements MUST use self-closing syntax:

<area/>
<base/>
<br/>
<col/>
<embed/>
<hr/>
<img src="photo.jpg" alt="Description"/>
<input type="text" name="field"/>
<link rel="stylesheet" href="style.css"/>
<meta charset="utf-8"/>
<source src="video.mp4" type="video/mp4"/>
<track src="captions.vtt" kind="captions"/>
<wbr/>

Custom Elements

  • Defined elements: Check elements.json for available custom elements
  • Ad-hoc elements: Use x-* prefix for one-off custom elements

See SYNTAX.md for complete syntax rules. See ELEMENTS.md for semantic element guidance. See EXAMPLES.md for code examples.

Skills to Consider Before Writing

When creating HTML, also invoke these skills based on content:

Content TypeInvoke SkillWhy
Any icon or visual indicatoriconsUse <icon-wc>, never inline SVG
Form elementsformsUse <form-field> custom element
Imagesresponsive-imagesUse <picture> with srcset
Page head contentmetadataSEO, social, performance hints
Dialogs, popovers, togglesprogressive-enhancementUse command/commandfor attributes
Interactive elementsaccessibility-checkerWCAG2AA compliance

Critical: Icons

NEVER use inline SVGs. When adding any visual indicator, icon button, or toggle with an icon:

<!-- WRONG -->
<svg viewBox="0 0 24 24">...</svg>

<!-- CORRECT - invoke icons skill first -->
<icon-wc name="menu" label="Menu"></icon-wc>

See the icons skill for the full pattern.

Critical: Interactive Elements

Use declarative command/commandfor attributes for dialogs and popovers—never onclick:

<!-- WRONG - inline JavaScript -->
<button onclick="document.getElementById('modal').showModal()">
  Open
</button>

<!-- CORRECT - declarative attributes -->
<button commandfor="modal" command="show-modal">
  Open
</button>
<dialog id="modal">
  <h2>Modal Title</h2>
  <button commandfor="modal" command="close">Close</button>
</dialog>

<!-- CORRECT - popover pattern -->
<button commandfor="menu" command="toggle-popover">
  Menu
</button>
<nav popover id="menu">
  <!-- Navigation items -->
</nav>
CommandTargetEffect
show-modal<dialog>Opens as modal
close<dialog>Closes dialog
toggle-popover[popover]Toggles popover
show-popover[popover]Opens popover
hide-popover[popover]Closes popover

See the progressive-enhancement skill for complete patterns.

Related Skills

  • icons - Lucide icon library with <icon-wc> Web Component
  • forms - HTML-first form patterns with CSS-only validation
  • responsive-images - Modern responsive image techniques
  • metadata - HTML metadata and head content
  • progressive-enhancement - Declarative dialogs/popovers with command/commandfor
  • accessibility-checker - Ensure WCAG2AA accessibility compliance
  • css-author - Modern CSS organization with @layer
  • javascript-author - Vanilla JavaScript for Web Components

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.63%
按下载量换算26

Claude

30.74%
按下载量换算22

Cursor

19.86%
按下载量换算14

Gemini CLI

9.5%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills