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

web-severity-scoring网络严重性评分

Agent Skill

web-severity-scoring 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,976

周安装

124

GitHub Stars

256

下载量

992
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:web-severity-scoring(网络严重性评分)
来源仓库:https://github.com/community-access/accessibility-agents
仓库路径:skills/web-severity-scoring
安装命令:
npx skills add https://github.com/community-access/accessibility-agents --skill web-severity-scoring
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/community-access/accessibility-agents --skill web-severity-scoring

简介

用于查找、检索和筛选相关信息,支持关键词或任务场景快速定位候选结果。

  • 适用于需要根据来源线索在 Codex、Claude、Cursor、Gemini CLI 中获取信息时使用。
  • 可结合来源仓库和原始 README 进一步核验具体用法和功能边界。
  • 安装命令:npx skills add https://github.com/community-access/accessibility-agents --skill web-severity-scoring。
  • 安装前建议确认权限范围、维护状态及是否涉及联网、命令执行或文件读写。

SKILL.md

Web Severity Scoring

Severity Scoring Formula

Page Score = 100 - (sum of weighted findings)

Weights:
  Critical (confirmed, all three sources):   -18 points
  Critical (high confidence, both sources):  -15 points
  Critical (high confidence, single source): -10 points
  Critical (medium confidence):               -7 points
  Critical (low confidence):                  -3 points
  Serious (high confidence):                  -7 points
  Serious (medium confidence):                -5 points
  Serious (low confidence):                   -2 points
  Moderate (high confidence):                 -3 points
  Moderate (medium confidence):               -2 points
  Moderate (low confidence):                  -1 point
  Minor:                                      -1 point

Floor: 0 (minimum score)

Score Grades

ScoreGradeMeaning
90-100AExcellent - minor or no issues, meets WCAG AA
75-89BGood - some issues, mostly meets WCAG AA
50-74CNeeds Work - multiple issues, partial WCAG AA compliance
25-49DPoor - significant accessibility barriers
0-24FFailing - critical barriers, likely unusable with AT

Confidence Levels

LevelWeightWhen to Use
Confirmed120%Validated by all three sources: axe-core + agent review + Playwright behavioral testing
High100%Confirmed by axe-core + agent, or definitively structural (missing alt, no labels, no lang)
Medium70%Found by one source, likely issue (heading edge cases, questionable ARIA, possible keyboard traps)
Low30%Possible issue, needs human review (alt text quality, reading order, context-dependent link text)

Source Correlation

Issues found by both axe-core AND agent review are automatically upgraded to high confidence regardless of individual confidence ratings.

Issues found by all three sources (axe-core + agent review + Playwright behavioral testing) are upgraded to confirmed confidence with a 1.2x weight multiplier. This applies when:

  • axe-core reports a violation
  • Agent code review identifies the same issue
  • Playwright behavioral scan confirms the issue at runtime (e.g., keyboard trap confirmed by actual Tab traversal, contrast failure confirmed by rendered CSS computation)

When Playwright is not available, the maximum achievable confidence remains High (100%). The confirmed tier is additive — it never downgrades findings.

Scorecard Format

Single Page

## Accessibility Score

| Metric | Value |
|--------|-------|
| Page | [URL] |
| Score | [0-100] |
| Grade | [A-F] |
| Critical | [count] |
| Serious | [count] |
| Moderate | [count] |
| Minor | [count] |

Multi-Page

## Accessibility Scorecard

| Page | Score | Grade | Critical | Serious | Moderate | Minor |
|------|-------|-------|----------|---------|----------|-------|
| / | 82 | B | 0 | 2 | 3 | 1 |
| /login | 91 | A | 0 | 0 | 2 | 1 |
| /dashboard | 45 | D | 2 | 4 | 3 | 2 |
| **Average** | **72.7** | **C** | **2** | **6** | **8** | **4** |

Cross-Page Pattern Classification

Pattern TypeDefinitionRemediation ROI
SystemicSame issue on every audited pageHighest - usually layout/nav, fix once
TemplateSame issue on pages sharing a componentHigh - fix the shared component
Page-specificUnique to one pageNormal - fix individually

Remediation Tracking

Change Classification

StatusDefinition
FixedIssue was in previous report but no longer present
NewIssue not in previous report, appears now
PersistentIssue remains from previous report
RegressedIssue was previously fixed but has returned

Progress Metrics

  • Issue reduction: (fixed / previous_total) * 100
  • Score change: current_score - previous_score
  • Pages improved: count of pages with higher scores than previous audit
  • Trend: improving (score up 5+), stable (within 5), declining (score down 5+)

Issue Severity Categories

Critical

  • No keyboard access to essential functionality
  • Missing form labels on required fields
  • Images conveying critical information have no alt text
  • Color is the sole means of conveying information
  • Keyboard traps with no escape

Serious

  • Missing skip navigation
  • Poor heading hierarchy (skipped levels)
  • Focus not visible on interactive elements
  • Form errors not programmatically associated
  • Missing ARIA on custom widgets

Moderate

  • Redundant ARIA on semantic elements
  • Suboptimal heading structure (multiple H1s)
  • Missing autocomplete on identity fields
  • Links to new tabs without warning
  • Missing table captions

Minor

  • Redundant title attributes
  • Suboptimal button text
  • Missing landmark roles where semantic elements exist
  • Decorative images with non-empty alt text

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.81%
按下载量换算355

Claude

29.34%
按下载量换算291

Cursor

18.48%
按下载量换算183

Gemini CLI

9.79%
按下载量换算97

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills