‹ 首页

polish

@jiaxuanzou0714 · 收录于 1 周前 · 上游提交 3 周前

Final quality pass before shipping. Fixes alignment, spacing, consistency, and detail issues that separate good from great.

适合你,如果做设计但总在最后发现对齐或间距问题

/ 通过 npx 安装 校验哈希
npx oh-my-skill add jiaxuanzou0714/jiaxuanzou0714.github.io/polish
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- jiaxuanzou0714/jiaxuanzou0714.github.io/polish
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify jiaxuanzou0714/jiaxuanzou0714.github.io/polish
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
5GitHub stars
~1.6K上下文体积 · 单文件
索引托管

怎么用

商店整理自技能原文 · 版本 fec4a3f · 表述以原文为准
它做什么

安装后,Claude 会对你的设计或代码做最终质量检查,修复对齐、间距、一致性等细节问题,确保作品达到可发布标准。

什么时候触发

当你完成功能开发,准备发布前,可以要求 Claude 进行抛光。

装好后可以这样说
Claude 会检查视觉对齐和间距一致性。
Claude 会检查默认、悬停、聚焦等状态是否完整。
技能原文 SKILL.md作者撰写 · MIT · fec4a3f

First: Use the frontend-design skill for design principles and anti-patterns.

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

Understand the current state and goals:

  1. Review completeness:
  2. Is it functionally complete?
  3. Are there known issues to preserve (mark with TODOs)?
  4. What's the quality bar? (MVP vs flagship feature?)
  5. When does it ship? (How much time for polish?)
  1. Identify polish areas:
  2. Visual inconsistencies
  3. Spacing and alignment issues
  4. Interaction state gaps
  5. Copy inconsistencies
  6. Edge cases and error states
  7. Loading and transition smoothness

CRITICAL: Polish is the last step, not the first. Don't polish work that's not functionally complete.

Polish Systematically

Work through these dimensions methodically:

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
  • Grid adherence: Elements snap to baseline grid

Check:

  • Enable grid overlay and verify alignment
  • Check spacing with browser inspector
  • Test at multiple viewport sizes
  • Look for elements that "feel" off
Typography Refinement
  • Hierarchy consistency: Same elements use same sizes/weights throughout
  • Line length: 45-75 characters for body text
  • Line height: Appropriate for font size and context
  • Widows & orphans: No single words on last line
  • Hyphenation: Appropriate for language and column width
  • Kerning: Adjust letter spacing where needed (especially headlines)
  • Font loading: No FOUT/FOIT flashes
Color & Contrast
  • Contrast ratios: All text meets WCAG standards
  • Consistent token usage: No hard-coded colors, all use design tokens
  • Theme consistency: Works in all theme variants
  • Color meaning: Same colors mean same things throughout
  • Accessible focus: Focus indicators visible with sufficient contrast
  • Tinted neutrals: No pure gray or pure black—add subtle color tint (0.01 chroma)
  • Gray on color: Never put gray text on colored backgrounds—use a shade of that color or transparency
Interaction States

Every interactive element needs all states:

  • Default: Resting state
  • Hover: Subtle feedback (color, scale, shadow)
  • Focus: Keyboard focus indicator (never remove without replacement)
  • Active: Click/tap feedback
  • Disabled: Clearly non-interactive
  • Loading: Async action feedback
  • Error: Validation or error state
  • Success: Successful completion

Missing states create confusion and broken experiences.

Micro-interactions & Transitions
  • Smooth transitions: All state changes animated appropriately (150-300ms)
  • Consistent easing: Use ease-out-quart/quint/expo for natural deceleration. Never bounce or elastic—they feel dated.
  • No jank: 60fps animations, only animate transform and opacity
  • Appropriate motion: Motion serves purpose, not decoration
  • Reduced motion: Respects prefers-reduced-motion
Content & Copy
  • Consistent terminology: Same things called same names throughout
  • Consistent capitalization: Title Case vs Sentence case applied consistently
  • Grammar & spelling: No typos
  • Appropriate length: Not too wordy, not too terse
  • Punctuation consistency: Periods on sentences, not on labels (unless all labels have them)
Icons & Images
  • Consistent style: All icons from same family or matching style
  • Appropriate sizing: Icons sized consistently for context
  • Proper alignment: Icons align with adjacent text optically
  • Alt text: All images have descriptive alt text
  • Loading states: Images don't cause layout shift, proper aspect ratios
  • Retina support: 2x assets for high-DPI screens
Forms & Inputs
  • Label consistency: All inputs properly labeled
  • Required indicators: Clear and consistent
  • Error messages: Helpful and consistent
  • Tab order: Logical keyboard navigation
  • Auto-focus: Appropriate (don't overuse)
  • Validation timing: Consistent (on blur vs on submit)
Edge Cases & Error States
  • Loading states: All async actions have loading feedback
  • Empty states: Helpful empty states, not just blank space
  • Error states: Clear error messages with recovery paths
  • Success states: Confirmation of successful actions
  • Long content: Handles very long names, descriptions, etc.
  • No content: Handles missing data gracefully
  • Offline: Appropriate offline handling (if applicable)
Responsiveness
  • All breakpoints: Test mobile, tablet, desktop
  • Touch targets: 44x44px minimum on touch devices
  • Readable text: No text smaller than 14px on mobile
  • No horizontal scroll: Content fits viewport
  • Appropriate reflow: Content adapts logically
Performance
  • Fast initial load: Optimize critical path
  • No layout shift: Elements don't jump after load (CLS)
  • Smooth interactions: No lag or jank
  • Optimized images: Appropriate formats and sizes
  • Lazy loading: Off-screen content loads lazily
Code Quality
  • Remove console logs: No debug logging in production
  • Remove commented code: Clean up dead code
  • Remove unused imports: Clean up unused dependencies
  • Consistent naming: Variables and functions follow conventions
  • Type safety: No TypeScript any or ignored errors
  • Accessibility: Proper ARIA labels and semantic HTML
Polish Checklist

Go through systematically:

  • [ ] Visual alignment perfect at all breakpoints
  • [ ] Spacing uses design tokens consistently
  • [ ] Typography hierarchy consistent
  • [ ] All interactive states implemented
  • [ ] All transitions smooth (60fps)
  • [ ] Copy is consistent and polished
  • [ ] Icons are consistent and properly sized
  • [ ] All forms properly labeled and validated
  • [ ] Error states are helpful
  • [ ] Loading states are clear
  • [ ] Empty states are welcoming
  • [ ] Touch targets are 44x44px minimum
  • [ ] Contrast ratios meet WCAG AA
  • [ ] Keyboard navigation works
  • [ ] Focus indicators visible
  • [ ] No console errors or warnings
  • [ ] No layout shift on load
  • [ ] Works in all supported browsers
  • [ ] Respects reduced motion preference
  • [ ] Code is clean (no TODOs, console.logs, commented code)

IMPORTANT: Polish is about details. Zoom in. Squint at it. Use it yourself. The little things add up.

NEVER:

  • Polish before it's functionally complete
  • Spend hours on polish if it ships in 30 minutes (triage)
  • Introduce bugs while polishing (test thoroughly)
  • Ignore systematic issues (if spacing is off everywhere, fix the system)
  • Perfect one thing while leaving others rough (consistent quality level)
Final Verification

Before marking as done:

  • Use it yourself: Actually interact with the feature
  • Test on real devices: Not just browser DevTools
  • Ask someone else to review: Fresh eyes catch things
  • Compare to design: Match intended design
  • Check all states: Don't just test happy path

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.

按 MIT 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。