Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

gsp-accessibility-audit普惠制无障碍审核

Agent Skill

用于辅助无障碍访问检查、页面可用性审计和前端可访问性改进。它适合让 Agent 检查语义标签、键盘操作、颜色对比、ARIA 属性和自动化检测结果。使用时需要结合真实页面和浏览器验证,不应只依赖静态文本判断;涉及修复建议时,应兼顾设计系统、组件复用和 WCAG 等通用无障碍规范。

总安装

324

周安装

13

GitHub Stars

29

下载量

105
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:gsp-accessibility-audit(普惠制无障碍审核)
来源仓库:https://github.com/jubscodes/get-shit-pretty
仓库路径:skills/gsp-accessibility-audit
安装命令:
npx skills add https://github.com/jubscodes/get-shit-pretty --skill gsp-accessibility-audit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jubscodes/get-shit-pretty --skill gsp-accessibility-audit

简介

该技能用于系统性无障碍审计与合规性评估。

  • 适用于 WCAG 标准检查、ARIA 属性验证与自动化报告生成。
  • 支持主流宿主环境,便于集成到 CI/CD 流程中。
  • 安装命令:npx skills add https://github.com/jubscodes/get-shit-pretty --skill gsp-accessibility-audit。
  • 建议定期运行并与人工审核结合,确保修复措施有效。

SKILL.md

For quick contrast checks or token audits, use /gsp-accessibility instead.

Follows the composable pattern: deterministic modes, predictable output paths, filesystem as integration layer.

Input: Mode flag + optional arguments Output: Audit chunks and fix lists in the appropriate project directory Agent: gsp-accessibility-auditor (for design and code modes), inline for statement

Read $ARGUMENTS to determine the mode:

InputModeAgent?Output
(no args)Design audit on .design/ chunksYes (gsp-accessibility-auditor)critique/accessibility-audit.md + accessibility-fixes.md
--codeCodebase audit: ARIA, keyboard, semantic HTMLYes (gsp-accessibility-auditor)review/accessibility-audit.md + accessibility-fixes.md
--statementGenerate accessibility statement from prior auditsNo (inline)exports/accessibility-statement.md

Additional flag: --level AAA overrides conformance level (default: AA).

Step 2: Resolve context

Resolve project from .design/projects/ (one → use it, multiple → ask). Set PROJECT_PATH.

Read {PROJECT_PATH}/config.json to get:

  • accessibility_level — override conformance level (if not set via --level flag)
  • implementation_target — needed for code mode

Read {PROJECT_PATH}/brand.ref to resolve brand path:

  • Set BRAND_PATH = .design/branding/{brand}

Determine final conformance level:

  1. --level flag (highest priority)
  2. accessibility_level from config.json
  3. Default: "WCAG 2.2 AA"

Step 3: Design audit mode (default, no flags)

Verify design chunks exist:

  • Read {PROJECT_PATH}/design/INDEX.md to find screen chunks
  • If no design chunks, tell user to complete design phase first and stop

Load references and agent methodology

Read these files and hold their content for inlining into the agent prompt:

  • ${CLAUDE_SKILL_DIR}/wcag-checklist.md — WCAG checklist reference
  • ${CLAUDE_SKILL_DIR}/methodology/gsp-accessibility-auditor.md — agent methodology

Spawn agent

Spawn gsp-accessibility-auditor with:

  • All design chunks from {PROJECT_PATH}/design/
  • Brand identity context (color system, typography)
  • Brand system context (tokens, components)
  • Conformance level
  • Content of WCAG checklist reference (loaded above)
  • Agent methodology (loaded above)
  • Output path: {PROJECT_PATH}/critique/
  • Instructions: "Audit all design screens against {level}. Write accessibility-audit.md and accessibility-fixes.md to the output path."

Completion

Display result:

  /gsp-accessibility-audit — design audit complete
  ═══════════════════════════════════════

  {PROJECT_PATH}/critique/
  ├── accessibility-audit.md
  └── accessibility-fixes.md

  ─────────────────────────────────────

Use AskUserQuestion:

  • Run token audit — "run /gsp-accessibility --tokens to check design token contrast pairs"
  • Continue to build — "implement designs in the codebase"
  • View audit — "read the accessibility report"
  • Done — "that's all for now"

Step 4: Code audit mode (--code)

Determine codebase scope:

  • Read {PROJECT_PATH}/config.json for implementation_target
  • If build phase completed, read {PROJECT_PATH}/build/BUILD-LOG.md for file paths
  • Otherwise, use implementation_target to determine where to look

Spawn agent

Spawn gsp-accessibility-auditor with:

  • Codebase paths to audit
  • Brand system tokens (for contrast verification against hardcoded values)
  • Conformance level
  • Content of WCAG checklist reference (loaded in Step 3)
  • Agent methodology (loaded in Step 3)
  • Output path: {PROJECT_PATH}/review/
  • Instructions: "Code audit mode. Use Grep and Glob to find accessibility issues in the codebase. Check ARIA, keyboard handlers, semantic HTML, heading hierarchy, alt text, lang attributes, skip-nav, focus management. Write accessibility-audit.md and accessibility-fixes.md to the output path with actual file paths and line numbers."

Completion

Display result:

  /gsp-accessibility-audit --code — code audit complete
  ═══════════════════════════════════════

  {PROJECT_PATH}/review/
  ├── accessibility-audit.md
  └── accessibility-fixes.md

  ─────────────────────────────────────

Use AskUserQuestion:

  • Fix issues — "address the accessibility issues found"
  • Generate statement — "create an accessibility statement"
  • View audit — "read the code accessibility report"
  • Done — "that's all for now"

Step 5: Statement mode (--statement)

Read prior audit results:

  • {PROJECT_PATH}/critique/accessibility-audit.md
  • {PROJECT_PATH}/critique/accessibility-token-audit.md
  • {PROJECT_PATH}/review/accessibility-audit.md

If none exist, tell the user to run an audit first and stop.

Generate statement

Write {PROJECT_PATH}/exports/accessibility-statement.md:

# Accessibility Statement

> Project: {name} | Generated: {DATE}

---

## Conformance Status

**Target:** {level}
**Status:** {Partially Conformant / Fully Conformant}

This {project description} has been evaluated against {level} standards.

## Scope

{Brief description of what was audited — design, code, or both}

## Known Limitations

{List from audit findings — critical/major issues not yet resolved}

- {Issue}: {brief description} — {planned resolution or workaround}

## Testing Methodology

- Design audit: WCAG 2.2 checklist review of all screens
- Token audit: Automated contrast ratio verification of all semantic color pairs
- Code audit: Manual and grep-based review of ARIA, keyboard, semantic HTML
- Tools used: {list from testing methodology}

## Feedback

If you encounter accessibility barriers, please contact:

- **Email:** [placeholder@example.com]
- **Response time:** [X business days]

## Assessment Date

Last reviewed: {DATE}

Completion

Display result and use AskUserQuestion:

  • View statement — "read the accessibility statement"
  • Done — "that's all for now"

Step 6: Update STATE.md

If within a project and files were written:

  • Read {PROJECT_PATH}/STATE.md
  • Note accessibility audit completion in the relevant phase section
  • Do not change phase status — accessibility is a supplementary check

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.63%
按下载量换算37

Claude

27.27%
按下载量换算29

Cursor

19.89%
按下载量换算21

Gemini CLI

8.79%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/jubscodes/get-shit-pretty --skill gsp-accessibility-audit 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills