📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-06-21 09:15:23 +00:00
parent 0e1bb1aef3
commit 3d137606c0
805 changed files with 93512 additions and 4532 deletions
@@ -1,6 +1,6 @@
{
"name": "antigravity-bundle-aas-web-app-builder",
"version": "12.9.0",
"version": "13.0.0",
"description": "Editorial \"AAS Web App Builder\" bundle for Claude Code from Antigravity Awesome Skills.",
"author": {
"name": "sickn33 and contributors",
@@ -1,7 +1,7 @@
{
"name": "agyb-aas-web-app-builder",
"version": "12.9.0",
"description": "Install the \"AAS Web App Builder\" editorial skill bundle from Antigravity Awesome Skills.",
"version": "13.0.0",
"description": "Install the \"AAS Web App Builder\" workflow plugin from Antigravity Awesome Skills.",
"author": {
"name": "sickn33 and contributors",
"url": "https://github.com/sickn33/antigravity-awesome-skills"
@@ -19,8 +19,8 @@
"skills": "./skills/",
"interface": {
"displayName": "AAS Web App Builder",
"shortDescription": "Specialized Product Plugins · 9 curated skills",
"longDescription": "Frontend and full-stack developers shipping modern web apps. Covers Frontend Developer, Frontend Design, and 7 more skills.",
"shortDescription": "Build modern React/Next.js apps from UI planning to implementation, accessibility, forms, SEO, and QA.",
"longDescription": "Build modern React/Next.js apps from UI planning to implementation, accessibility, forms, SEO, and QA. High-demand workflow with a coherent path from UI design to React/Next.js implementation, forms, Tailwind, and SEO. Recommended for: Frontend teams, Full-stack builders, Startup product engineers. Not for: Native mobile-only apps, Backend-only API services. Covers Frontend Developer, Frontend Design, and 8 more skills.",
"developerName": "sickn33 and contributors",
"category": "Specialized Product Plugins",
"capabilities": [
@@ -28,6 +28,11 @@
"Write"
],
"websiteURL": "https://github.com/sickn33/antigravity-awesome-skills",
"brandColor": "#111827"
"brandColor": "#111827",
"defaultPrompt": [
"Use this plugin to audit this Next.js app and produce a prioritized implementation plan.",
"Use this plugin to build a responsive landing page with forms, SEO, and accessibility checks.",
"Use this plugin to review this React component for performance, UX, accessibility, and maintainability."
]
}
}
@@ -0,0 +1,81 @@
---
name: ui-a11y
description: "Audit a StyleSeed-based component or page for WCAG 2.2 AA issues and apply practical accessibility fixes where the code makes them safe."
category: design
risk: safe
source: community
source_repo: bitjaru/styleseed
source_type: community
date_added: "2026-04-08"
author: bitjaru
tags: [ui, accessibility, wcag, audit, styleseed]
tools: [claude, cursor, codex, gemini]
---
# UI Accessibility Audit
## Overview
Part of [StyleSeed](https://github.com/bitjaru/styleseed), this skill audits components and pages for accessibility issues with an emphasis on the Toss seed's mobile UI patterns. It combines WCAG 2.2 AA checks with practical code fixes for touch targets, focus states, contrast, labels, and reduced motion.
## When to Use
- Use when reviewing a page or component for accessibility regressions
- Use when a StyleSeed UI looks polished but has uncertain keyboard or contrast behavior
- Use when adding new interactive controls to a mobile-first screen
- Use when you want a prioritized list of issues and fixable items
## Audit Areas
### Perceivable
- text contrast
- non-text contrast for controls and graphics
- alt text for images
- labels for meaningful icons
- no information conveyed by color alone
### Operable
- touch targets at least 44x44px
- keyboard reachability for all interactive controls
- logical tab order
- visible focus indicators
- reduced-motion support for nonessential animation
### Understandable
- visible labels or `aria-label` on inputs
- error text associated with the correct field
- clear wording for errors and validation
- document language set appropriately
### Robust
- semantic HTML where possible
- correct use of ARIA when semantics alone are insufficient
- no faux buttons or links without the right roles and behavior
## Output
Return:
1. Issues found, grouped by severity
2. Safe autofixes that can be applied directly
3. Items that need manual review or product judgment
4. A short summary of the accessibility risk level
## Best Practices
- Fix semantics before layering on ARIA
- Use the design system tokens only if they still meet contrast requirements
- Treat touch target failures as real usability defects, not polish issues
- Prefer partial, verified fixes over speculative accessibility changes
## Additional Resources
- [StyleSeed repository](https://github.com/bitjaru/styleseed)
- [Source skill](https://github.com/bitjaru/styleseed/blob/main/seeds/toss/.claude/skills/ui-a11y/SKILL.md)
## Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.