e11y-fix

e11y-fix is a skill for Claude Code from lessthanseventy/excessibility. It costs 28 tokens per session (2,090 once invoked), scanned C, original, MIT.

A reference guide for fixing accessibility problems in Phoenix LiveView, a framework for building interactive web pages with Elixir. It connects axe-core checks, which scan pages for accessibility issues, to Phoenix-specific fixes and WCAG rules.

In plain words
What is it for?
Use it to inspect axe-core failures, capture the affected page HTML, apply the listed fix, and check the result again.
Why use it?
It turns general accessibility errors into concrete changes for Phoenix applications. This reduces guesswork when fixing missing labels, image descriptions, contrast, headings, or keyboard navigation.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the excessibility plugin — 3 skills shipped together

Good fit Use it to inspect axe-core failures, capture the affected page HTML, apply the listed fix, and check the result again.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lessthanseventy/excessibility/e11y-fix
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add lessthanseventy/excessibility --skill e11y-fix
Clone the repo
git clone --depth 1 https://github.com/lessthanseventy/excessibility

Made for: Claude Code.

Or install excessibility, the plugin that ships this one along with the rest of its 3 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for e11y-fix

README.md
[![agentmods](https://agentmods.dev/badge/skills/lessthanseventy/excessibility/e11y-fix/github.svg)](https://agentmods.dev/skills/lessthanseventy/excessibility/e11y-fix)
Your own site
<a href="https://agentmods.dev/skills/lessthanseventy/excessibility/e11y-fix"><img src="https://agentmods.dev/badge/skills/lessthanseventy/excessibility/e11y-fix/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for e11y-fix

Your own site · 80×15
<a href="https://agentmods.dev/skills/lessthanseventy/excessibility/e11y-fix"><img src="https://agentmods.dev/badge/skills/lessthanseventy/excessibility/e11y-fix.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,090 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00028 $0.02090
Opus 5 $0.00014 $0.01045
Sonnet 5 $0.00006 $0.00418
Haiku 4.5 $0.00003 $0.00209

Measured 9d ago against content hash dfdac9170260, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade C, and why

e11y-fix scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf test/excessibility/html_snapshots/*
priv/claude-plugin/skills/e11y-fix/SKILL.md · 340 lines

How it starts

The opening of the file, as written. The whole thing — 340 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Excessibility Fix - axe-core Error Reference

Quick reference for fixing axe-core/WCAG errors in Phoenix LiveView applications.

Debugging Workflow

  1. Run mix excessibility to see axe-core errors
  2. Use html_snapshot(view) to capture the problematic state
  3. Read snapshot file to see exact HTML
  4. Apply fix from reference below
  5. Re-run mix excessibility to verify

Quick Reference

axe-core Error WCAG Rule Phoenix Fix
Form input without label 1.3.1 Add <.label> or aria-label
Missing alt text 1.1.1 Add alt attribute to <img>
Low contrast 1.4.3 Adjust Tailwind colors
Missing lang 3.1.1 Add lang="en" to <html>
Empty link 2.4.4 Add link text or aria-label
Missing heading structure 1.3.1 Use proper <h1>-<h6> hierarchy
No skip link 2.4.1 Add "Skip to content" link

Common Fixes by Category

Forms

Input without label

Error: "Form element does not have a label"

<!-- Bad -->
<input type="text" name="email" />

<!-- Good: Using Phoenix form helpers -->
<.input field={@form[:email]} type="email" label="Email address" />

<!-- Good: Manual label -->
<label for="email">Email address</label>
<input type="text" name="email" id="email" />

<!-- Good: aria-label for icon-only -->
<input type="search" aria-label="Search" />
Form without submit button

Note: LiveView forms using phx-submit often don't need a visible submit button. axe-core may flag this. You can:

  1. Add a submit button (even if styled invisibly)
  2. Configure axe-core rules to ignore this rule for specific forms
  3. Use aria-label on the form to explain the interaction
<!-- phx-submit form with hidden submit -->
<form phx-submit="save">
  <.input field={@form[:name]} type="text" label="Name" />
  <button type="submit" class="sr-only">Submit</button>
</form>
Required fields
<.input
  field={@form[:email]}
  type="email"
  label="Email"
  required
/>

<!-- Renders with aria-required="true" -->

Read the full file on GitHub · 340 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 340 lines · 28 tokens per session scan C dfdac9170260

Subscribe to this mod's changes

e11y-fix is a skill published in the GitHub repository lessthanseventy/excessibility (42 stars, last pushed 7d ago), licensed MIT. It adds 28 tokens to every session and 2,090 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories