e11y-debug

e11y-debug is a skill for Claude Code from lessthanseventy/excessibility. It costs 30 tokens per session (1,299 once invoked), scanned A, original, MIT.

A debugging aid for Phoenix LiveView, a framework for interactive web pages written in Elixir. It records application state and rendered HTML as events happen.

In plain words
What is it for?
Use it to capture before-and-after HTML snapshots, inspect event timelines, and analyze memory, likely causes, and relevant code locations.
Why use it?
It helps show exactly what changed between page load, user actions, and rendering when a LiveView behaves unexpectedly.

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 capture before-and-after HTML snapshots, inspect event timelines, and analyze…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lessthanseventy/excessibility/e11y-debug
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-debug
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-debug

README.md
[![agentmods](https://agentmods.dev/badge/skills/lessthanseventy/excessibility/e11y-debug.svg)](https://agentmods.dev/skills/lessthanseventy/excessibility/e11y-debug)
Your own site
<a href="https://agentmods.dev/skills/lessthanseventy/excessibility/e11y-debug"><img src="https://agentmods.dev/badge/skills/lessthanseventy/excessibility/e11y-debug.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,299 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00030 $0.01299
Opus 5 $0.00015 $0.00649
Sonnet 5 $0.00006 $0.00260
Haiku 4.5 $0.00003 $0.00130

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

Security

Grade A, and why

e11y-debug scanned grade A with 0 findings 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 6d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

priv/claude-plugin/skills/e11y-debug/SKILL.md · 218 lines

How it starts

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

Excessibility Debug - Timeline & State Analysis

Debug LiveView issues by inspecting state evolution and rendered HTML.

Tools

  • Timeline - Shows state at mount, handle_event, render
  • Snapshots - Captured HTML at specific moments
  • Analyzers - Memory, hypothesis, code pointers

Four-Phase Debug Process

Phase 1: Capture with Snapshots

Add temporary html_snapshot(view) calls around the problem area:

test "debugging problematic feature" do
  {:ok, view, _html} = live(conn, "/page")

  html_snapshot(view)  # before the problem

  view |> element("button") |> render_click()

  html_snapshot(view)  # after - what changed?
end

Run with telemetry capture:

mix excessibility.debug test/failing_test.exs

Phase 2: Analyze Timeline

Read test/excessibility/timeline.json:

{
  "test": "test debugging problematic feature",
  "duration_ms": 142,
  "timeline": [
    {
      "sequence": 1,
      "event": "mount",
      "timestamp": "2024-01-15T10:30:00Z",
      "memory_size": 1024,
      "key_state": {"user": null, "items": []},
      "changes": {}
    },
    {
      "sequence": 2,
      "event": "handle_event:click",
      "timestamp": "2024-01-15T10:30:00.050Z",
      "memory_size": 4096,
      "key_state": {"user": null, "items": ["a", "b", "c"]},
      "changes": {"items": "changed"}
    }
  ]
}

Look for:

  • Assigns at each event
  • What changed between renders
  • Unexpected state

Phase 3: Inspect Snapshots

Read captured HTML files in test/excessibility/html_snapshots/:

# List all snapshots
ls test/excessibility/html_snapshots/

# Open in browser
open test/excessibility/html_snapshots/MyModule_42.html

Check for:

  • Missing elements
  • Wrong content
  • Incorrect attributes
  • Compare before/after

Phase 4: Fix

  1. Use hypothesis analyzer for root cause suggestions
  2. Add test for the specific issue
  3. Implement fix
  4. Verify with mix excessibility
  5. Remove temporary snapshots

Commands

Read the full file on GitHub · 218 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. 6d ago First seen · 218 lines · 30 tokens per session scan A 3630af92295b

Subscribe to this mod's changes

e11y-debug is a skill published in the GitHub repository lessthanseventy/excessibility (42 stars, last pushed 4d ago), licensed MIT. It adds 30 tokens to every session and 1,299 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. 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

bug-reporting

Load this skill whenever you are filing, reviewing, or generating accessibility bug reports — whether from automated tool output, manual testing, or AI agent scans. The purpose of this skill is to make accessibility errors easier to report accurately, so that developers can reproduce, understand, and fix them without…

zivtech/accessibility-skills · 121 tokens

web-a11y-debugging

Debugs accessibility issues with automated scanners, browser accessibility trees, keyboard checks, screen reader smoke tests, custom CSS/JS rules, and CI gates. Use when triaging barriers or building accessibility validation pipelines.

klovaaxel/web-a11y-agent-skills · 48 tokens

cli-e2e

Write, modify, or debug Docker-based Composio CLI end-to-end tests under ts/e2e-tests/cli, including binary invocation, fixture isolation, output assertions, and package manifests. Use for CLI E2E test suites only; use cli-command for CLI source implementation.

ComposioHQ/composio · 62 tokens

trace

Dispatch trace subagent to investigate unknown issues — reproduces, traces, and reports root cause for fix handoff.

automagik-dev/genie · 25 tokens

openlore-analyze-codebase

Run a full static OpenLore analysis and summarize architecture, call graph, refactoring issues, and duplicate code. Use when asked to analyze, map, or assess a codebase without LLM inference.

clay-good/OpenLore · 48 tokens

codex-agent

Use when you want a second-opinion review via Codex CLI, cross-verification after another agent implements changes, debugging help, or alternative implementation proposals. Requires Codex CLI to be installed and authenticated.

majiayu000/spellbook · 45 tokens