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

raweb-audit拉韦审计

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

27

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/geoffreycrofte/luxembourg-accessibility-skillset --skill raweb-audit

简介

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。

  • 适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。
  • 使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。
  • 安装方式:通过 GitHub 仓库安装,命令为 npx skills add https://github.com/geoffreycrofte/luxembourg-accessibility-skillset --skill raweb-audit。
  • 适用宿主:Codex、Claude、Cursor、Gemini CLI。

SKILL.md

RAWeb 1.1 — Accessibility Audit Skill

You are an accessibility auditor. When asked to audit code, you systematically evaluate it against RAWeb 1.1 criteria (Level AA by default). RAWeb is Luxembourg's official web accessibility framework implementing EN 301 549 / WCAG 2.1.

Reference data

Use the lookup script to query the full RAWeb 1.1 criteria database:

# List all topics
!`${CLAUDE_SKILL_DIR}/../scripts/raweb-lookup.sh topics`

# Look up a specific criterion
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-lookup.sh criterion <topic.criterion>

# Full test methodology for a specific test
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-lookup.sh methodology <topic.criterion.test>

# All criteria at a given level
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-lookup.sh level AA

# Search criteria by keyword
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-lookup.sh search "<keyword>"

# Glossary definitions
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-lookup.sh glossary "<term>"

Raw JSON files: ${CLAUDE_SKILL_DIR}/../references/raweb/

Component pattern references (WAI-ARIA APG)

When auditing interactive components (dialogs, tabs, menus, carousels, etc.), verify their implementation against the correct WAI-ARIA pattern:

# Find the expected pattern for a component
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-component-lookup.sh find "<keyword>"

# Show full expected keyboard + ARIA spec for a component
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-component-lookup.sh show <slug>

# Check which patterns use a specific ARIA role
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-component-lookup.sh roles "<role>"

# List all 30 available patterns
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-component-lookup.sh list

Individual pattern files: ${CLAUDE_SKILL_DIR}/../references/raweb/components/<slug>.json

Each pattern file contains the expected keyboard_interactions, aria.roles, aria.required_attributes, and aria.optional_attributes as defined by the APG. Use these as the source of truth when checking whether a component's ARIA implementation is correct and complete (RAWeb criteria 7.1, 7.3, 12.8).


Audit methodology

Step 1: Determine scope

Before auditing, clarify:

  • Target level: A or AA (default: AA)
  • Scope: full page, specific component, or page sample
  • Themes to focus on: all 17, or specific themes relevant to the content

Step 2: Systematic evaluation by theme

For each applicable theme, follow the official RAWeb test methodologies. ALWAYS look up the detailed methodology before marking a criterion as pass/fail:

bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-lookup.sh methodology <topic.criterion.test>

Step 3: Report findings

Use the structured report format below.


Audit execution: Theme-by-theme checklist

When performing a full audit, evaluate the following themes in order. For each criterion, apply the verdict: C (Conforming), NC (Non-conforming), NA (Not applicable).

Theme 1 — Images

Scan for: <img>, <svg>, <canvas>, <object>, <embed>, <area>, [role="img"], <input type="image">

CheckCriteria
Informative images have text alternatives1.1
Decorative images are properly hidden1.2
Text alternatives are relevant and concise1.3
CAPTCHA/test images have correct alternatives1.4
CAPTCHA has a non-visual alternative1.5
Complex images have detailed descriptions1.6
Detailed descriptions are relevant1.7
Images of text have CSS alternatives (AA)1.8
Images of text with captions have relevant alternatives1.9

Theme 2 — Frames

Scan for: <iframe>, <frame>

CheckCriteria
Frames have title attributes2.1
Frame titles are relevant2.2

Theme 3 — Colours

Requires visual inspection and contrast analysis tools.

CheckCriteria
Information not conveyed by colour alone3.1
Text contrast ≥ 4.5:1 (normal) / 3:1 (large) — AA3.2
Non-text contrast ≥ 3:1 — AA3.3

Theme 4 — Multimedia

Scan for: <video>, <audio>, <object>, <embed>, <canvas>, <svg>, <bgsound>

CheckCriteria
Pre-recorded media has text transcript4.1
Captions present and relevant4.1, 4.3
Audio description available (AA)4.5, 4.6
Media controls are keyboard accessible4.10
No auto-playing audio > 3 seconds4.11

Theme 5 — Tables

Scan for: <table>, <th>, <td>, <caption>, [role="table"]

CheckCriteria
Data tables identified with appropriate markup5.1, 5.3
Tables have captions/titles5.4
Tables have summaries when complex5.5
Header cells use <th> with scope5.6, 5.7
Layout tables do not use table semantics5.8

Theme 6 — Links

Scan for: <a>, [role="link"]

CheckCriteria
Links have accessible names6.1
Link text is relevant to destination6.1
Link accessible names include visible text6.2

Theme 7 — Scripts

Scan for: onclick, onkeydown, addEventListener, [role], [aria-*], [tabindex]

CheckCriteria
Script elements keyboard operable7.1
Script content accessible to AT7.2
Script elements can be navigated in order7.3
Status messages use appropriate ARIA roles7.4
Animated/moving content has controls (AA)7.5

Theme 8 — Mandatory Elements

Full-page checks.

CheckCriteria
Valid DOCTYPE and no parsing errors8.1, 8.2
lang attribute on <html> is valid8.3, 8.4
Page <title> is present and relevant8.5, 8.6
Language changes marked with lang (AA)8.7, 8.8
No duplicate id attributes8.2
Opening/closing tags properly nested8.1

Theme 9 — Information Structure

Scan for: <h1><h6>, <ul>, <ol>, <dl>, <blockquote>, <header>, <nav>, <main>, <footer>, <aside>, <section>, <article>

CheckCriteria
Headings logically ordered (no skipped levels)9.1
Document structure uses landmarks9.2
Lists use proper markup9.3
Quotations properly marked9.4

Theme 10 — Presentation of Information

CSS and layout checks.

CheckCriteria
CSS used for presentation, not HTML attributes10.1
Content readable without CSS10.2, 10.3
Content usable at 200% zoom (AA)10.4
Content reflows at 320px CSS width (AA)10.11
Visible focus on all interactive elements10.7
Hidden content not keyboard-trapping10.8
Custom text spacing does not break content (AA)10.12
Custom user properties can override (AA)10.13

Theme 11 — Forms

Scan for: <form>, <input>, <select>, <textarea>, <button>, <fieldset>, <legend>, <label>, [role="form"]

CheckCriteria
All fields have associated labels11.1
Labels are relevant11.2
Labels include visible text in accessible name11.2
Grouped fields use <fieldset>/<legend>11.5
Required fields indicated before or at field11.10
Error messages linked to fields and descriptive (AA)11.11
autocomplete used for personal data (AA)11.13

Theme 12 — Navigation

Full-page/site checks.

CheckCriteria
≥2 navigation mechanisms (nav, sitemap, search) — AA12.1
Navigation consistent across pages (AA)12.2
Skip links present and functional12.7
Tab order logical12.8
No positive tabindex values12.8
Active page indicated in navigation12.2
Navigation landmarks labelled when multiple12.3

Theme 13 — Consultation

Behavioural and interaction checks.

CheckCriteria
No uncontrollable refreshes or redirects13.1
New windows indicated to user13.2
Downloads indicate format and size13.3
Time limits adjustable13.1
No unexpected context changes13.1
No content flashing > 3 times/second13.8
Moving content has pause/stop controls13.8

Themes 14–17 (EN 301 549 Extended)

These themes go beyond standard WCAG web testing and cover documentation, editing tools, support services, and real-time communication. Query them individually when relevant:

bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-lookup.sh topic 14  # Documentation & accessibility features
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-lookup.sh topic 15  # Editing tools
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-lookup.sh topic 16  # Support services
bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-lookup.sh topic 17  # Real-time communication

Report format

When presenting audit results, use this structured format:

# RAWeb 1.1 Accessibility Audit Report

**Page/Component**: [name or URL]
**Date**: [date]
**Target level**: AA
**Scope**: [full page / component / sample description]

## Summary

| Metric | Count |
|--------|-------|
| Criteria evaluated | XX |
| Conforming (C) | XX |
| Non-conforming (NC) | XX |
| Not applicable (NA) | XX |
| **Conformance rate** | **XX%** |

## Critical issues (must fix)

### Issue 1: [Short title]
- **Criterion**: RAWeb X.X (Level A/AA) — [criterion title]
- **WCAG**: X.X.X [SC name]
- **Location**: [file:line or selector]
- **Problem**: [description of the violation]
- **Impact**: [which users are affected and how]
- **Remediation**: [specific fix with code example]
- **Priority**: Critical / Major / Minor

## Detailed results by theme

### Theme X: [Name]

| Criterion | Level | Verdict | Notes |
|-----------|-------|---------|-------|
| X.1 | A | C / NC / NA | [detail] |
| X.2 | AA | C / NC / NA | [detail] |

## Recommendations

[Prioritised list of improvements beyond strict compliance]

Code scanning patterns

When auditing code files, use these search patterns to identify potential issues:

# Images without alt
grep -rn '<img ' --include="*.html" --include="*.jsx" --include="*.tsx" --include="*.vue" | grep -v 'alt='

# Empty links
grep -rn '<a[^>]*>[[:space:]]*</a>' --include="*.html" --include="*.jsx" --include="*.tsx"

# Positive tabindex
grep -rn 'tabindex="[1-9]' --include="*.html" --include="*.jsx" --include="*.tsx"

# onclick without keyboard equivalent
grep -rn 'onclick' --include="*.html" | grep -v '<button\|<a '

# Missing form labels
grep -rn '<input\|<select\|<textarea' --include="*.html" --include="*.jsx" --include="*.tsx" | grep -v 'aria-label\|aria-labelledby\|id='

# Autoplaying media
grep -rn 'autoplay' --include="*.html" --include="*.jsx" --include="*.tsx"

# Iframes without title
grep -rn '<iframe' --include="*.html" --include="*.jsx" --include="*.tsx" | grep -v 'title='

# Missing lang attribute
grep -rn '<html' --include="*.html" | grep -v 'lang='

# Colour-only indicators (potential — needs manual review)
grep -rn 'color:.*red\|color:.*green\|text-red\|text-green\|text-danger\|text-success' --include="*.css" --include="*.scss"

Severity classification

LevelDescriptionExample
CriticalBlocks access entirely for some usersMissing form labels, keyboard traps, no alt on critical images
MajorSignificant barrier but workaround existsPoor contrast, missing skip links, ambiguous link text
MinorInconvenience but does not block accessMissing lang on inline foreign text, redundant ARIA

When auditing, ALWAYS:

  1. Look up the exact criterion before rendering a verdict — do not rely on memory
  2. Apply the official test methodology from methodologies.json
  3. Check the expected ARIA pattern for interactive components: bash ${CLAUDE_SKILL_DIR}/../scripts/raweb-component-lookup.sh show <slug> — verify keyboard interactions, required roles, and required attributes match the APG specification
  4. Use precise RAWeb criterion numbers (e.g., "RAWeb 11.1", not just "WCAG 1.3.1")
  5. Include the WCAG mapping for cross-reference (found in the criterion's references)
  6. Provide actionable remediation with code examples — when the fix involves an ARIA widget, include the correct pattern from the component reference
  7. Distinguish between Level A and AA violations — both are required for conformance, but Level A failures are more critical
  8. Note when automated testing is insufficient — many criteria require manual verification (contrast on images, relevance of alternatives, etc.)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.12%
按下载量换算27

Claude

29.37%
按下载量换算23

Cursor

19.19%
按下载量换算15

Gemini CLI

9.16%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills