global-a11y-i18n-expert

global-a11y-i18n-expert is a skill for Claude Code, Codex from roedyrustam/vibes-plug. It costs 45 tokens per session (1,537 once invoked), scanned A, original, MIT.

A guide to making software usable by people with disabilities and adaptable across languages, writing directions, time zones, and regions. WCAG is a widely used set of web accessibility guidelines, while internationalisation prepares software for different locales.

In plain words
What is it for?
Use it to implement accessible web interfaces, support multiple languages and right-to-left scripts, fix keyboard navigation issues, and handle global dates and time zones.
Why use it?
It helps prevent keyboard, screen-reader, language, layout, and date-and-time problems that can exclude users or cause compliance issues.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to implement accessible web interfaces, support multiple languages and right-to-left scripts, fix keyboard navigation issues, and handle global dates and time zones.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/roedyrustam/vibes-plug/global-a11y-i18n-expert
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 roedyrustam/vibes-plug --skill global-a11y-i18n-expert
Clone the repo
git clone --depth 1 https://github.com/roedyrustam/vibes-plug

Made for: Claude Code, Codex.

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 global-a11y-i18n-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/global-a11y-i18n-expert/github.svg)](https://agentmods.dev/skills/roedyrustam/vibes-plug/global-a11y-i18n-expert)
Your own site
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/global-a11y-i18n-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/global-a11y-i18n-expert/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 global-a11y-i18n-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/global-a11y-i18n-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/global-a11y-i18n-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,537 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00045 $0.01537
Opus 5 $0.00023 $0.00768
Sonnet 5 $0.00009 $0.00307
Haiku 4.5 $0.00005 $0.00154

Measured today against content hash 55d6166c8123, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

global-a11y-i18n-expert 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 today.

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/global-a11y-i18n-expert/SKILL.md · 88 lines

How it starts

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

Global Accessibility (a11y) & i18n Expert

English | Bahasa Indonesia


English

Orchestration & Integration

Connects and orchestrates with relevant domain skills like brainstorming, zero-to-prod-orchestrator, and project-context-mapper to ensure cohesive execution.

Description

This skill focuses on making enterprise web applications universally accessible and globally adaptable. It covers Web Content Accessibility Guidelines (WCAG) compliance and Internationalization (i18n) patterns for multi-language, multi-timezone software.

Trigger Conditions

  • Selling software to government, education, or large enterprise sectors (where WCAG AA compliance is legally required).
  • Implementing multi-language support (i18n).
  • Designing UIs that must support RTL (Right-to-Left) languages like Arabic or Hebrew.
  • Fixing "tab trap" or screen reader issues.
  • Handling complex timezone/date calculations across global users.

Core Architecture Guidelines

1. Web Accessibility (a11y)

Do not treat accessibility as an afterthought. It is a core engineering requirement.

  • Semantic HTML: Always prefer native HTML elements (<button>, <nav>, <dialog>) over building custom ones with <div>. Native elements come with free accessibility baked in by the browser.
  • ARIA Attributes: If you must build custom UI, use WAI-ARIA roles (role="tablist", aria-expanded="true") to tell screen readers what the component is doing.
  • Keyboard Navigation: The entire app MUST be usable without a mouse. Ensure interactive elements are focusable (tabindex="0") and visual focus outlines are distinct (do not use outline: none without providing an alternative styling).
  • Color Contrast: Ensure text has a minimum contrast ratio of 4.5:1 against its background (WCAG AA standard).
2. Internationalization (i18n)

Handling multiple languages requires structural foresight.

  • Locale Routing: Use URL structures like /en/pricing or /id/pricing.
  • String Externalization: Never hardcode UI text. Use translation files (en.json, id.json) and a library like next-intl or react-i18next.
  • RTL Support: Use CSS logical properties (e.g., margin-inline-start instead of margin-left) so your UI automatically flips when rendering RTL languages.

Read the full file on GitHub · 88 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. today Changed 55d6166c8123
  2. 9d ago First seen · 88 lines · 45 tokens per session scan A dda917a78aef

Subscribe to this mod's changes

global-a11y-i18n-expert is a skill published in the GitHub repository roedyrustam/vibes-plug (53 stars, last pushed today), licensed MIT. It adds 45 tokens to every session and 1,537 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-09-03.

Related

Other skills, from other repositories

frontend-ui-engineering

Builds production-quality, accessible, responsive user-facing UIs. Use when building or modifying interfaces and pages, creating components, implementing layouts, meeting WCAG accessibility requirements, managing state, or when the output needs to look and feel production-quality rather than AI-generated.

addyosmani/agent-skills · 58 tokens

json-ui

CRITICAL: Use for json-ui component rendering and development. Triggers on: json-ui, json render, component catalog, report render, HTML report, I18nString, i18n, bilingual, language switch, dual language, PaperHeader, AuthorList, Abstract, MetricsGrid, Section, Highlight, Zod schema, catalog.ts, cli.ts…

actionbook/actionbook · 118 tokens

animated-sketch-diagram

A tool for making animated diagrams and flowcharts in a hand-drawn ink style, with paper-like backgrounds, simple icons, and moving dots along connections. It produces a self-contained HTML file and can also create a looping GIF.

iflytek/iFly-Skills · 182 tokens

iflytek-text-proofread

A tool that checks Chinese writing through iFlytek’s official document-proofreading service. It looks for spelling, punctuation, wording, factual, terminology, and sensitive-content problems.

iflytek/iFly-Skills · 88 tokens

iflytek-translate

A text-translation tool that uses iFlytek's machine-translation service and supports more than 70 language pairs. It can translate text supplied directly, through standard input, or from a file.

iflytek/iFly-Skills · 65 tokens

iflytek-video-translate

A tool that translates a video’s speech into another language and creates dubbed audio. Video localization means adapting video content for viewers who speak a different language.

iflytek/iFly-Skills · 91 tokens