一键导入
check-rico-a11y
Accessibility audit for Rico Hunt. Run contrast checks and review alt text, focus states, ARIA labels, and keyboard navigation in frontend code.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Accessibility audit for Rico Hunt. Run contrast checks and review alt text, focus states, ARIA labels, and keyboard navigation in frontend code.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | check-rico-a11y |
| description | Accessibility audit for Rico Hunt. Run contrast checks and review alt text, focus states, ARIA labels, and keyboard navigation in frontend code. |
| triggers | ["user","model"] |
| allowed-tools | ["read","grep","exec"] |
Accessibility audit for Rico Hunt. This skill is read-only and runs checks that do not require a browser.
Run the existing script:
cd apps/web && npm run check:contrast
This uses apps/web/scripts/check-contrast.mjs to flag color-contrast failures against the shipped Nocturne palette.
Search the frontend for common accessibility issues:
# Missing alt text on images (img without alt)
grep -R "<img" apps/web/app --include="*.tsx" | grep -v "alt="
# Icon-only buttons without aria-label
grep -R "aria-label" apps/web/app --include="*.tsx" -l
# Focus rings disabled
grep -R "outline-none" apps/web/app --include="*.tsx" -l
# prefers-reduced-motion usage
grep -R "reduced-motion\|prefersReducedMotion" apps/web/app --include="*.tsx" -l
For each issue:
Read-only audit of Rico Hunt AI provider routing. Verify RICO_AI_PROVIDER env var, fallback chain, and provider health without calling live AI APIs.
Verify Rico Hunt authentication rules. Check JWT cookie usage, signup role enforcement, protected route isolation, and no request body user_id.
Verify Rico Hunt chat flow. Inspect public chat session isolation, rate limits, authenticated chat routing, and public session prefixing.
Read-only database health check for Rico Hunt. Verify DATABASE_URL connectivity, key tables, and row counts without exposing user data or mutating anything.
Verify Rico Hunt required environment variables are set without exposing values. Check backend, frontend, and admin/dev env vars.
Read-only verification of Rico Hunt job fetching and scoring. Inspect JSearch adapter, provider fallback, and scoring pipeline without calling live APIs.