Back to skill
v1.0.0

Accessibility Scanner

BenignClawScan verdict for this skill. Analyzed Apr 30, 2026, 11:48 PM.

Analysis

This instruction-only accessibility auditing skill is coherent with its stated purpose and shows no evidence of hidden installs, credentials, persistence, or unsafe behavior.

GuidanceThis skill appears safe to use for accessibility review. Be aware that it may inspect your source files and that any WCAG score or report should be treated as guidance, not a substitute for full manual accessibility testing or legal compliance review.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

Abnormal behavior control

Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.

Tool Misuse and Exploitation
SeverityInfoConfidenceHighStatusNote
SKILL.md
grep -rn '<img' src/ | grep -v 'alt='

The skill documents local grep commands to inspect source files for accessibility issues. This is purpose-aligned, scoped to src/, and does not include destructive operations.

User impactThe skill may search your project source code to identify accessibility problems.
RecommendationUse it on projects where source inspection is appropriate, and review any suggested findings before making changes.
Unexpected Code Execution
SeverityInfoConfidenceHighStatusNote
SKILL.md
```bash
# Find images without alt text
grep -rn '<img' src/ | grep -v 'alt='
```

The instructions include shell command examples, but they are limited to grep-based searching and do not execute project code, download binaries, or modify files.

User impactRunning the examples would execute local search commands against the project source tree.
RecommendationConfirm the target directory before running searches, especially in large or sensitive repositories.
Human-Agent Trust Exploitation
SeverityInfoConfidenceMediumStatusNote
SKILL.md
**WCAG Target:** 2.2 Level AA
**Pages scanned:** 12 | **Components:** 45

### Compliance Score: 72/100

The sample output uses compliance-style scoring language. This is aligned with the accessibility-audit purpose, but users should avoid treating it as a formal certification.

User impactUsers may be tempted to rely on the generated score as proof of compliance.
RecommendationUse the report as a triage aid and combine it with manual testing, assistive technology testing, and expert review for formal accessibility claims.