Evaluate
Skill bromso/metapowers/plugins/accessibility/skills/evaluate
A Claude Code plugin that adds an agentic skills framework, with MCP's and a meta prompting processes. Inspired by "Superpowers" & "Figma Console MCP", but not just for development or design; but for all aspect within the digital production cycle.
npx -y skills add bromso/metapowers --skill evaluateAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Run accessibility checks and discover issues mapped to WCAG criteria
SKILL.md
2.4 KB, as published. Nobody here has run it
Evaluate
Evaluate "$ARGUMENTS" for accessibility issues. Run automated and manual checks, discover barriers, and map each issue to specific WCAG success criteria.
Prerequisites
Read .metapowers/accessibility/$ARGUMENTS/01-scope.md. If this file does not exist, tell the user:
Phase 1 (Scope) has not been completed for "$ARGUMENTS". Run
/accessibility:scope $ARGUMENTSfirst, or use--skip-checksto bypass.
If --skip-checks is present in $ARGUMENTS, skip this check and log to .metapowers/accessibility/$ARGUMENTS/skip-log.md.
Process
-
Read context files:
- Read
.metapowers/accessibility/$ARGUMENTS/01-scope.mdfor audit scope and target pages - Read
plugins/accessibility/shared/wcag-21-aa-criteria.mdfor the full criteria reference
- Read
-
Automated evaluation:
- Read the source code of the target pages/components
- Check for: missing alt text, missing form labels, heading hierarchy violations, missing ARIA attributes, color contrast issues, missing lang attribute, keyboard trap risks
-
Manual evaluation:
- Trace keyboard navigation flow — can all interactive elements be reached and operated?
- Check focus visibility — is focus indicator visible on every interactive element?
- Check reading order — does DOM order match visual order?
- Check form error handling — are errors identified and described in text?
- Check dynamic content — are updates announced via ARIA live regions?
-
Map each issue to WCAG criteria:
- For each issue found, identify the specific WCAG success criterion violated
- Classify severity: Critical (blocks access), Major (significant barrier), Minor (inconvenience)
- Note the location (file, line, component)
-
Write the artifact to
.metapowers/accessibility/$ARGUMENTS/02-evaluate.mdwith sections:- Issues Found — each issue with WCAG mapping, severity, location
- Conformance Status — per-principle pass/fail summary
- Critical Barriers — issues that completely block access
- Positive Findings — what's already working well
Output
The evaluation results written to .metapowers/accessibility/$ARGUMENTS/02-evaluate.md. Present a summary to the user highlighting:
- Total issues found by severity
- Critical barriers requiring immediate attention
- WCAG principles with most violations