kona-theme: Skill for Claude Code

.claude/skills/shopify-liquid-a11y/SKILL.md

shopify-liquid-a11y is a skill for Claude Code from jonathanmoore/kona-theme. It costs 68 tokens per session (3,631 once invoked), scanned A, original, MIT.

A set of accessibility patterns for Shopify Liquid themes, which are the templates that control an online store’s pages. It covers common shop elements such as product cards, carts, forms, filters, pop-ups, and carousels.

In plain words
What is it for?
Use it when creating accessible Shopify theme components, fixing accessibility problems, or checking ARIA patterns in `.liquid` files.
Why use it?
It helps you build or review store components so they can be used with a keyboard, screen reader, and reduced-motion settings. It also helps choose suitable HTML and ARIA attributes, which add information for assistive technology.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is jonathanmoore/kona-theme's own configuration. It tells Claude Code how to work on kona-theme itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything kona-theme configures →

Reuse

Borrowing it

Nothing to install: this file belongs to jonathanmoore/kona-theme. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/jonathanmoore/kona-theme/main/.claude/skills/shopify-liquid-a11y/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jonathanmoore/kona-theme

Made for: Claude Code.

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 shopify-liquid-a11y

README.md
[![agentmods](https://agentmods.dev/badge/skills/jonathanmoore/kona-theme/shopify-liquid-a11y/github.svg)](https://agentmods.dev/skills/jonathanmoore/kona-theme/shopify-liquid-a11y)
Your own site
<a href="https://agentmods.dev/skills/jonathanmoore/kona-theme/shopify-liquid-a11y"><img src="https://agentmods.dev/badge/skills/jonathanmoore/kona-theme/shopify-liquid-a11y/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 shopify-liquid-a11y

Your own site · 80×15
<a href="https://agentmods.dev/skills/jonathanmoore/kona-theme/shopify-liquid-a11y"><img src="https://agentmods.dev/badge/skills/jonathanmoore/kona-theme/shopify-liquid-a11y.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,631 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.00068 $0.03631
Opus 5 $0.00034 $0.01816
Sonnet 5 $0.00014 $0.00726
Haiku 4.5 $0.00007 $0.00363

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

Security

Grade A, and why

shopify-liquid-a11y 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 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.

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.

.claude/skills/shopify-liquid-a11y/SKILL.md · 461 lines

How it starts

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

Accessibility for Shopify Liquid Themes

Core Principle

Every interactive component must work with keyboard only, screen readers, and reduced-motion preferences. Start with semantic HTML — add ARIA only when native semantics are insufficient.

Decision Table: Which Pattern?

Component HTML Element ARIA Pattern Reference
Expandable content <details>/<summary> None needed Accordion
Modal/dialog <dialog> aria-modal="true" Modal
Tooltip/popup [popover] attribute role="tooltip" fallback Tooltip
Dropdown menu <nav> + <ul> aria-expanded on triggers Navigation
Tab interface <div> role="tablist/tab/tabpanel" Tabs
Carousel/slider <div> role="region" + aria-roledescription Carousel
Product card <article> aria-labelledby Product card
Form <form> aria-invalid, aria-describedby Forms
Cart drawer <dialog> Focus trap Cart drawer
Price display <span> aria-label for context Prices
Filters <form> + <fieldset> aria-expanded for disclosures Filters

Page Structure

Landmarks

<body>
  <a href="#main-content" class="sr-only focus:not-sr-only focus:fixed focus:top-0 focus:left-0 focus:z-50 focus:bg-contrast focus:text-primary focus:p-4">
    {{ 'accessibility.skip_to_content' | t }}
  </a>
  <header role="banner">
    <nav aria-label="{{ 'accessibility.main_navigation' | t }}">...</nav>
  </header>
  <main id="main-content">
    <!-- All page content inside main -->
  </main>
  <footer role="contentinfo">
    <nav aria-label="{{ 'accessibility.footer_navigation' | t }}">...</nav>
  </footer>
</body>
  • Single <header>, <main>, <footer> per page
  • Multiple <nav> elements must have distinct aria-label
  • All content must live inside a landmark

Read the full file on GitHub · 461 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 461 lines · 68 tokens per session scan A c969dffe75d9

Subscribe to this mod's changes

shopify-liquid-a11y is a skill published in the GitHub repository jonathanmoore/kona-theme (6 stars, last pushed 4mo ago), licensed MIT. It adds 68 tokens to every session and 3,631 once invoked, about $0.0003 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.