MANDATORY PREPARATION
Invoke /impeccable-design — it contains design principles, anti-patterns, and the Context Gathering Protocol. Follow the protocol before proceeding. Additionally gather: quality bar (MVP vs flagship).
Perform a meticulous final pass to catch all the small details that separate good work from great work. The difference between shipped and polished.
Pre-Polish Assessment
- Review completeness: Is it functionally complete? What's the quality bar? When does it ship?
- Identify polish areas: Visual inconsistencies, spacing/alignment, interaction state gaps, copy inconsistencies, edge cases, loading/transition smoothness
CRITICAL: Polish is the last step, not the first. Don't polish work that's not functionally complete.
Polish Systematically
Visual Alignment & Spacing
- Pixel-perfect alignment — everything lines up to grid
- Consistent spacing — all gaps use spacing scale (no random 13px gaps)
- Optical alignment — adjust for visual weight (icons may need offset for optical centering)
- Responsive consistency — spacing and alignment work at all breakpoints
Typography Refinement
- Hierarchy consistency — same elements use same sizes/weights throughout
- Line length: 45-75 characters for body text
- No widows & orphans
- Font loading: no FOUT/FOIT flashes
Color & Contrast
- All text meets WCAG contrast standards
- Consistent token usage — no hard-coded colors
- Tinted neutrals — no pure gray or pure black (add subtle chroma: 0.01)
- NEVER: Gray text on colored backgrounds — use a shade of that color or transparency
Interaction States — Every interactive element needs ALL states:
- Default, Hover, Focus (never remove without replacement), Active, Disabled, Loading, Error, Success
Micro-interactions & Transitions
- All state changes animated: 150-300ms
- Consistent easing: ease-out-quart/quint/expo. Never bounce or elastic.
- 60fps — only animate transform and opacity
- Respects
prefers-reduced-motion
Content & Copy
- Consistent terminology throughout
- Consistent capitalization (Title Case vs Sentence case applied consistently)
- No typos, no grammar errors
- Punctuation consistency (periods on sentences, not on labels)
Icons & Images
- Consistent style (same icon family)
- Proper optical alignment with adjacent text
- All images have descriptive alt text
- No layout shift (proper aspect ratios)
Forms & Inputs
- All inputs properly labeled
- Required indicators clear and consistent
- Error messages helpful and consistent
- Logical keyboard navigation (tab order)
Edge Cases
- Loading states for all async actions
- Helpful empty states (not blank space)
- Clear error messages with recovery paths
- Success confirmation
- Handles very long names/descriptions gracefully
- No horizontal scroll
Responsive
- Test: mobile, tablet, desktop
- Touch targets ≥ 44×44px
- No text smaller than 14px on mobile
Code Quality
- Remove all console.log
- Remove commented-out code
- Remove unused imports
- No TypeScript
any or ignored errors
Polish Checklist
Final Verification
Before marking done:
- Use it yourself: Actually interact with the feature
- Test on real devices: Not just browser DevTools
- Check all states: Don't just test happy path
- Compare to design: Match intended design
NEVER: Polish before functionally complete. Introduce bugs while polishing. Perfect one thing while leaving others rough.
Remember: You have impeccable attention to detail and exquisite taste. Polish until it feels effortless, looks intentional, and works flawlessly. Sweat the details — they matter.
1---2name: impeccable-polish3description: Performs a final quality pass fixing alignment, spacing, consistency, and micro-detail issues before shipping. Use when the user mentions polish, finishing touches, pre-launch review, something looks off, or wants to go from good to great.4license: Apache 2.0. Based on pbakaus/impeccable polish skill.5---67## MANDATORY PREPARATION89Invoke `/impeccable-design` — it contains design principles, anti-patterns, and the Context Gathering Protocol. Follow the protocol before proceeding. Additionally gather: quality bar (MVP vs flagship).1011---1213Perform a meticulous final pass to catch all the small details that separate good work from great work. The difference between shipped and polished.1415## Pre-Polish Assessment16171. **Review completeness**: Is it functionally complete? What's the quality bar? When does it ship?182. **Identify polish areas**: Visual inconsistencies, spacing/alignment, interaction state gaps, copy inconsistencies, edge cases, loading/transition smoothness1920**CRITICAL**: Polish is the last step, not the first. Don't polish work that's not functionally complete.2122## Polish Systematically2324### Visual Alignment & Spacing25- Pixel-perfect alignment — everything lines up to grid26- Consistent spacing — all gaps use spacing scale (no random 13px gaps)27- Optical alignment — adjust for visual weight (icons may need offset for optical centering)28- Responsive consistency — spacing and alignment work at all breakpoints2930### Typography Refinement31- Hierarchy consistency — same elements use same sizes/weights throughout32- Line length: 45-75 characters for body text33- No widows & orphans34- Font loading: no FOUT/FOIT flashes3536### Color & Contrast37- All text meets WCAG contrast standards38- Consistent token usage — no hard-coded colors39- Tinted neutrals — no pure gray or pure black (add subtle chroma: 0.01)40- **NEVER**: Gray text on colored backgrounds — use a shade of that color or transparency4142### Interaction States — Every interactive element needs ALL states:43- Default, Hover, Focus (never remove without replacement), Active, Disabled, Loading, Error, Success4445### Micro-interactions & Transitions46- All state changes animated: 150-300ms47- Consistent easing: ease-out-quart/quint/expo. **Never bounce or elastic.**48- 60fps — only animate transform and opacity49- Respects `prefers-reduced-motion`5051### Content & Copy52- Consistent terminology throughout53- Consistent capitalization (Title Case vs Sentence case applied consistently)54- No typos, no grammar errors55- Punctuation consistency (periods on sentences, not on labels)5657### Icons & Images58- Consistent style (same icon family)59- Proper optical alignment with adjacent text60- All images have descriptive alt text61- No layout shift (proper aspect ratios)6263### Forms & Inputs64- All inputs properly labeled65- Required indicators clear and consistent66- Error messages helpful and consistent67- Logical keyboard navigation (tab order)6869### Edge Cases70- Loading states for all async actions71- Helpful empty states (not blank space)72- Clear error messages with recovery paths73- Success confirmation74- Handles very long names/descriptions gracefully75- No horizontal scroll7677### Responsive78- Test: mobile, tablet, desktop79- Touch targets ≥ 44×44px80- No text smaller than 14px on mobile8182### Code Quality83- Remove all console.log84- Remove commented-out code85- Remove unused imports86- No TypeScript `any` or ignored errors8788## Polish Checklist8990- [ ] Visual alignment perfect at all breakpoints91- [ ] Spacing uses design tokens consistently92- [ ] Typography hierarchy consistent93- [ ] All interactive states implemented94- [ ] All transitions smooth (60fps)95- [ ] Copy is consistent and polished96- [ ] Icons are consistent and properly sized97- [ ] All forms properly labeled and validated98- [ ] Error states are helpful99- [ ] Loading states are clear100- [ ] Empty states are welcoming101- [ ] Touch targets ≥ 44×44px102- [ ] Contrast ratios meet WCAG AA103- [ ] Keyboard navigation works104- [ ] Focus indicators visible105- [ ] No console errors or warnings106- [ ] No layout shift on load107- [ ] Respects reduced motion preference108- [ ] Code is clean (no TODOs, console.logs, commented code)109110## Final Verification111112Before marking done:113- **Use it yourself**: Actually interact with the feature114- **Test on real devices**: Not just browser DevTools115- **Check all states**: Don't just test happy path116- **Compare to design**: Match intended design117118**NEVER**: Polish before functionally complete. Introduce bugs while polishing. Perfect one thing while leaving others rough.119120Remember: You have impeccable attention to detail and exquisite taste. Polish until it feels effortless, looks intentional, and works flawlessly. Sweat the details — they matter.