app-accessibility

app-accessibility is a skill for Claude Code from khadinakbarlabs/shopify-app-builder. It costs 153 tokens per session (6,402 once invoked), scanned A, original, MIT.

A guide to making Shopify admin apps usable by people with disabilities, following WCAG 2.1 AA, a common accessibility standard.

In plain words
What is it for?
Use it when building or reviewing app screens, forms, dialogs, save bars, product pickers, translations, and right-to-left layouts.
Why use it?
It helps find barriers such as broken keyboard controls, poor color contrast, missing image descriptions, and confusing screen-reader behavior.

Skill for Claude Code

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

Part of the shopify-app-builder plugin — 32 skills, 9 commands, 5 agents shipped together

Good fit Use it when building or reviewing app screens, forms, dialogs, save bars, product pickers, translations, and right-to-left layouts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khadinakbarlabs/shopify-app-builder/app-accessibility
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 khadinakbarlabs/shopify-app-builder --skill app-accessibility
Clone the repo
git clone --depth 1 https://github.com/khadinakbarlabs/shopify-app-builder

Made for: Claude Code.

Or install shopify-app-builder, the plugin that ships this one along with the rest of its 32 skills, 9 commands, 5 agents.

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 app-accessibility

README.md
[![agentmods](https://agentmods.dev/badge/skills/khadinakbarlabs/shopify-app-builder/app-accessibility/github.svg)](https://agentmods.dev/skills/khadinakbarlabs/shopify-app-builder/app-accessibility)
Your own site
<a href="https://agentmods.dev/skills/khadinakbarlabs/shopify-app-builder/app-accessibility"><img src="https://agentmods.dev/badge/skills/khadinakbarlabs/shopify-app-builder/app-accessibility/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 app-accessibility

Your own site · 80×15
<a href="https://agentmods.dev/skills/khadinakbarlabs/shopify-app-builder/app-accessibility"><img src="https://agentmods.dev/badge/skills/khadinakbarlabs/shopify-app-builder/app-accessibility.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 153 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,402 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.00153 $0.06402
Opus 5 $0.00077 $0.03201
Sonnet 5 $0.00031 $0.01280
Haiku 4.5 $0.00015 $0.00640

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

Security

Grade A, and why

app-accessibility 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 8d 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.

skills/app-accessibility/SKILL.md · 462 lines

How it starts

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

Shopify Embedded App Accessibility (WCAG 2.1 AA)

Accessibility is a Built for Shopify gate and a legal requirement (ADA Title III, European Accessibility Act took effect 2025-06-28). Audited apps fail BFS review when keyboard navigation breaks inside iframes, focus indicators are stripped, alt text is missing on product imagery, or color contrast drops below 4.5:1. This skill is the checklist for every embedded app feature.

1. When to Use

Trigger this skill when:

  • Building any new screen, Modal, SaveBar, or form in an embedded app
  • Auditing an existing app before Built for Shopify submission
  • Investigating a merchant complaint about keyboard or screen reader usage
  • Reviewing a PR that touches focus, ARIA, color, or alt text
  • Deciding whether to override a Polaris token (almost never — see Section 6)
  • Adding i18n / RTL support that touches reading order, aria-label strings, or lang attributes
  • Pairing with polaris-ui (component usage) or app-bridge (Modal/SaveBar) — this skill is the a11y overlay on top of both

Do NOT use this skill for storefront / theme accessibility — that is a separate domain (shopify.dev/docs/storefronts/themes/best-practices/accessibility).

2. WCAG 2.1 AA Criteria Applied to Shopify Apps

Shopify Polaris targets WCAG 2.1 A and AA by default. Embedded apps inherit that baseline only if you use Polaris components correctly and do not override semantics, contrast, or focus. The criteria that matter most for admin apps:

Perceivable

  • 1.1.1 Non-text Content (A) — every image, icon-only button, and chart needs a text alternative
  • 1.3.1 Info and Relationships (A) — use semantic HTML; <Text as="h2"> not <Text variant="headingMd"> on a paragraph
  • 1.3.5 Identify Input Purpose (AA) — use autoComplete on email, name, address, tel inputs
  • 1.4.3 Contrast Minimum (AA) — 4.5:1 for text under 18pt, 3:1 for large text
  • 1.4.11 Non-text Contrast (AA) — 3:1 for form borders, focus rings, icons that convey state
  • 1.4.10 Reflow (AA) — content must reflow at 320 CSS px width; no horizontal scroll inside the iframe
  • 1.4.12 Text Spacing (AA) — line height 1.5x font-size, paragraph spacing 2x; Polaris defaults pass

Read the full file on GitHub · 462 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. 8d ago First seen · 462 lines · 153 tokens per session scan A bd330164637d

Subscribe to this mod's changes

app-accessibility is a skill published in the GitHub repository khadinakbarlabs/shopify-app-builder (1 stars, last pushed 29d ago), licensed MIT. It adds 153 tokens to every session and 6,402 once invoked, about $0.0008 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-31.

Related

Other skills, from other repositories

visual-qa

Runs rigorous visual QA across web, terminal, and paginated surfaces with screenshot evidence and a verdict. Use for any UI build or change, or when asked whether a page, component, or TUI looks right.

code-yeongyu/oh-my-openagent · 47 tokens

frontend

Builds, styles, and polishes web UI and UX. Use for any frontend, page, component, styling, layout, animation, or visual-quality task, or when asked to make an interface look or feel a certain way.

code-yeongyu/oh-my-openagent · 49 tokens

interaction-skill

Layer A interaction-mechanics reference anchored to the beui.dev catalog. Stacks on any style skill whenever work adds or changes motion or interaction — micro-interactions, animated components, transitions, gestures, hover/press/state feedback, loading/success/error morphs, 'make it feel alive'. Mandates reading the…

code-yeongyu/oh-my-openagent · 104 tokens

layout-skill

Layer A layout-mechanics reference. Stacks on any style skill when the screen is an app shell, dashboard, settings, list-detail, mail/inbox, or any layout with fixed regions plus a scrolling body — or when a layout breaks under long, empty, or unbroken content. Owns spatial structure and scroll ownership; owns zero…

code-yeongyu/oh-my-openagent · 88 tokens

ui-designer

Elite UI/UX Design Lead & Frontend Architect. Generates distinctive, non-templated interfaces with opinionated aesthetics, deliberate typography, and exact UX copy. Triggers on UI design, frontend styling, or layout creation.

GulajavaMinistudio/awesome-copilot-id · 49 tokens

impeccable

Use when the user wants to design, redesign, shape, critique, audit, polish, clarify, distill, harden, optimize, adapt, animate, colorize, extract, or otherwise improve a frontend interface. Covers websites, landing pages, dashboards, product UI, app shells, components, forms, settings, onboarding, and empty states.…

GulajavaMinistudio/awesome-copilot-id · 189 tokens