feat: improve UX flow & accessibility + reusable Claude agents/skills#136
Merged
Conversation
…skills - Add skip-to-content link, reduced-motion safeguards and main landmark - Wire eslint-plugin-vuejs-accessibility into the flat config + lint scripts - Promote the Lighthouse accessibility gate to an error and add a11y audits - Fix 25 a11y findings (redundant roles, label association, focusable menu, keyboard parity for escape handlers, carousel mouse/key events) - Add checked-in .claude/ skills (a11y-review, component-scaffold), an accessibility-reviewer agent and settings, documented in AGENTS.md https://claude.ai/code/session_01LvWGnpirg7doE1sbsxh8g9
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
launchpad | ea77b9b | Commit Preview URL Branch Preview URL |
May 16 2026, 11:32 AM |
…essibility-79PHQ # Conflicts: # components/features/navigation/LanguageSelector.vue
- Darken Java server address button to emerald-700 for 4.5:1 contrast - Drop invalid role="menuitem" from desktop nav links (no menu parent) - Remove invalid role="listitem" on <article> + redundant role="list" - Enlarge carousel and sponsor pagination dots to 24px touch targets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Establish accessibility as a first-class concern by introducing ESLint accessibility rules, a skip-to-content link, keyboard event handling improvements, and reusable accessibility review agents and skills for the Claude Code environment.
Key Changes
Accessibility Tooling & CI
package.jsonand wired intoeslint.config.mjswith WCAG 2.1 AA rules; label association configured to acceptfor/idbinding.categories:accessibilityfromwarntoerror(minScore 0.9); also enforcedimage-altandlink-textas errors in.lighthouserc.json..claude/settings.jsonto permitpnpm lint,pnpm build, and Lighthouse CI commands.Skip Link & Focus Management
.skip-linkinassets/css/tokens.cssthat appears on keyboard focus; targets#main-contentinlayouts/default.vue.id="main-content"andtabindex="-1"to<main>inlayouts/default.vueto enable skip-link focus restoration.@keydown.escape.windowwithonKeyStroke('Escape', ...)inNavigationBar.vueandLanguageSelector.vuefor cleaner, more testable keyboard traps.Reduced Motion
@media (prefers-reduced-motion: reduce)intokens.cssto disable all animations/transitions globally (0.01ms duration, 1 iteration) for users who prefer reduced motion.Semantic & ARIA Cleanup
role="region"from sections that already havearia-labeloraria-labelledby(Carousel, ServerConcept, OpenCollectiveStats, Sponsoring).role="navigation"from<nav>elements (NavigationBar).role="article"androle="listitem"from semantic elements (blog article, team member card).role="separator"from<hr>(semantic by default).role="contentinfo"from<footer>(semantic by default).aria-expandedto disclosure toggles (NavigationBar summary element).:for="'team-search'"tofor="team-search"(and similar) in TeamMembers.vue.Reusable Agents & Skills
.claude/skills/a11y-review: Checklist for auditing Vue/Nuxt components against WCAG 2.1 AA (structure, keyboard, labels, contrast, motion)..claude/agents/accessibility-reviewer: Subagent for independent accessibility review before PR submission..claude/skills/component-scaffold: Enforces feature scaffolding order (types → composables → sections → page).AGENTS.md: Updated to document these reusable standards and CI enforcement.i18n
accessibility.skip_to_contentto bothen.jsonandde.json.Package Scripts
lintandlint:fixscripts topackage.jsonfor ESLint execution.Notable Implementation Details
vuejs-accessibility/no-static-element-interactions,vuejs-accessibility/click-events-have-key-events) with explanations, since native keyboard parity is provided by the section/summary elements themselves.transition(respectsprefers-reduced-motion) and appears attop: 0.5remon focus.https://claude.ai/code/session_01LvWGnpirg7doE1sbsxh8g9