Ui ux
Drop-in skills and plugins for your AI development workflows
npx -y skills add hiteshbandhu/skills-i-use --skill ui-uxAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
UI/UX and product review for web interfaces — opinionated principles, checklist-driven audits, polish passes on screenshots, and pre-ship UI gates. Uses Playwright to navigate, screenshot, and smoke-test interactions when a URL is available. Triggers on "review my UI", "polish this", "UX audit", "fix the hero", "make it look professional", "ui pass", "design review", attaches screenshot with UI feedback. Use when building or reviewing interfaces and product flows, not generic code review.
SKILL.md
6.2 KB, as published. Nobody here has run it
UI/UX — Product-Aware Interface Review
Opinionated UI/UX + product review for web apps. Thinks about jobs-to-be-done before pixels. Works with any coding agent.
Supporting files:
- principles.md — product + UI/UX rules (read every time)
- review-checklist.md — structured audit
- playwright.md — browser verification with Playwright
- report-template.md — saved review output (the record)
- report-template.html — shareable HTML report with embedded screenshots
Output: {SKILL_OUTPUT_DIR}/ui-ux/ — see ../OUTPUT.md
Step 0 — Determine Mode
| Mode | When | Output |
|---|---|---|
| audit | "review my UI", file path given, pre-merge | Findings list + report file |
| polish-pass | screenshot attached, "fix the hero", iterative tweaks | Minimal code diff + short rationale |
| pre-ship | before commit on UI-heavy change | Audit + pair with @ship-check if shipping |
Ask if unclear:
- Scope — file, route, or component?
- Viewport — mobile / desktop / both?
- URL — local dev URL + route (e.g.
http://localhost:3000/dashboard) - Build or review only? — "don't code, plan only" → review only
Step 1 — Load Context
- Read principles.md
- Read the target file(s) or explore the route
- Note existing design system — reuse project components, tokens, patterns
- If screenshot provided — treat it as source of truth for what's wrong visually
Step 1b — Playwright Verification
Read playwright.md. Always run when a URL is reachable (unless review-only on code with no running app).
Use Playwright MCP when available; fallback to project Playwright tests or CLI.
Capture before screenshots + snapshot + console errors. Run interaction smoke checks for the scoped screen (scroll, input, menus, forms, CTAs).
Save artifacts under {output_dir}/screenshots/.
If Playwright cannot run, note why in the report and rely on code review + user screenshots — do not skip silently.
Step 2 — Review
Run review-checklist.md against scope and Playwright results.
For each finding:
- Severity: Critical / Important / Suggestion
- Location:
file:linewhen reviewing code - Issue: one sentence
- Fix: concrete — class change, component swap, copy rewrite, layout adjustment
Prioritize:
- Trust breakers (broken scroll, lost input, silent failures)
- Clarity (hierarchy, next action, copy)
- Polish (spacing, motion, micro-interactions)
Do not suggest gradients, glow, purple accents, or animation unless user asked.
Step 3 — Implement (unless review-only)
When building or polishing:
- Minimal diff — fix what's broken, don't redesign the whole page
- Match existing code style and component library
- One primary change per iteration when user is in screenshot-driven loop
- After edits, state what changed in plain language
Stack defaults from principles: Tailwind, cn(), accessible primitives, h-dvh, motion/react only when needed.
Re-run Playwright (Step 1b) after implementing — capture after screenshots and confirm failed interaction checks now pass.
Step 4 — Write Report (audit / pre-ship modes)
Fill report-template.md — the canonical record.
Path: {output_dir}/review-YYYY-MM-DD-[slug].md
Also generate a shareable HTML report when you have screenshots
When the audit produced Playwright screenshots (most audit/polish passes do), also emit an HTML version from report-template.html — it embeds the screenshots inline (incl. before/after pairs) so the user can read the whole review without opening files one by one.
- Copy
report-template.html→{output_dir}/review-YYYY-MM-DD-[slug].html - Replace every
[[PLACEHOLDER]]; reference screenshots with the relative pathscreenshots/<file>.pngso the report stays portable. - Use the
.grid2before/after pattern for any fix you re-screenshotted. - Open it for the user:
open {output_dir}/review-...html(macOS).
Keep both in sync — the HTML is the shareable artifact, the .md is the record.
Update {output_dir}/index.md (link both formats):
# UI/UX Reviews
| Date | Scope | Verdict | Report |
|------|-------|---------|--------|
| YYYY-MM-DD | [scope] | [verdict] | [md](review-...md) · [html](review-...html) |
Step 5 — Output to User
- Verdict: Ship / Ship with fixes / Needs rework
- Top 3 issues (most impact first)
- Report path (if saved)
- Offer to implement fixes — or done if already implemented
For polish-pass: before/after summary in 2–3 bullets, no long essay.
Pair with other skills
@ship-check— run after UI changes before commit@architecture-review— when UX change implies a product/architecture fork (e.g. new nav paradigm)
Edge Cases
- User says "don't code" — audit + plan only
- Conflicting project patterns — follow project, flag deviation from principles as Suggestion
- Backend-only request — decline politely; this skill is UI/UX scoped
- No running dev server — offer to start it, or audit code-only with note
- Playwright MCP unavailable — use
npx playwright testor document skip reason - Whole app redesign — ask for priority screen; do not boil the ocean in one pass
Invocation Examples
@ui-ux review the onboarding flow
@ui-ux audit http://localhost:3000/dashboard — desktop and mobile
polish the hero — dev server on :3000
ui pass before we ship
don't code — give me a plan for the dashboard layout