accesslint-scan

仓库创建 2026年1月15日最近提交 21 天前SkillHot 收录 20 天前
▸ 精选理由

产出可执行的选择器级工作项,便于开发快速修复。

▸ 风险提示

可能需要访问目标页面及使用DOM调试接口。

这个 Skill 做什么

扫描实时页面并定位每个WCAG违规,生成精确的选择器级修复清单。

扫描一个线上页面,精确定位每个违反 WCAG 的点,并给出基于选择器的修复清单,但不直接改动页面。需要把无障碍问题定位到代码级选择器、方便前端按位修复时用。特别适合在回归或提单修复前输出可复现、可定位的修复项,减少来回沟通。

▸ 展开 SKILL.md 英文原文

Audit a live page for accessibility issues, locate each WCAG violation precisely, and return a selector-grounded fix worklist without editing.

开发编程无障碍页面审计修复清单通用
4.2w
Stars
6.8k
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/skills/accesslint-scan/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/skills/accesslint-scan/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
Audit a live page and report what's broken and where. Locate; don't fix. If no URL in `$ARGUMENTS`, ask for one.

## When to Use
- Use this skill when the task matches this description: Audit a live page for accessibility issues, locate each WCAG violation precisely, and return a selector-grounded fix worklist without editing.

## 1. Audit

```bash
PORT=$(npx -y @accesslint/chrome@latest ensure | node -e 'process.stdin.on("data",d=>process.stdout.write(""+JSON.parse(d).port))')
npx -y @accesslint/cli@latest "<url>" --port "$PORT" --format json
```

Flags as needed: `--selector`, `--wait-for "<selector>"`, `--include-aaa`, `--disable <rules>`.

## 2. Report

Counts by impact, then one entry p
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有