Our review
This skill helps design and implement animations, micro-interactions, and transitions for web UIs while preserving accessibility and performance.
Strengths
- Focuses on experience design through state transitions and timing rather than visual appearance alone.
- Consistently enforces accessibility (prefers-reduced-motion, focus, contrast) and performance (INP, LCP) constraints.
- Promotes a progressive approach: minimal prototype first, then validate before enhancement.
- Provides a concrete checklist to avoid common pitfalls (over-animation, heavy scroll handlers, etc.).
Limitations
- Requires a strong technical understanding of CSS/JS animations and performance metrics.
- May be overly prescriptive for quick projects where animation is not critical.
- Needs adaptation for teams less familiar with accessibility standards.
Use when you need to add meaningful animations and micro-interactions to a web UI without compromising accessibility or performance.
Avoid for purely static interfaces, quick prototyping where UX depth is not required, or when animation is purely decorative without functional benefit.
Security analysis
SafeThe skill contains only advisory design and implementation guidelines for UI animations and interactions. It does not instruct any executable commands, file system access, or network operations that could be misused. No dangerous tool use is declared or implied.
No concerns found
Examples
Add a scroll-triggered entrance animation for sections on this landing page. Make elements fade in and translate upward when they come into view. Ensure it respects prefers-reduced-motion and does not cause layout shifts or affect INP.Design a micro-interaction for the primary call-to-action button: on hover, animate a subtle scale and shadow change. Ensure it works with keyboard focus as well and has a smooth transition using transform/opacity. Add a reversed animation for mouse leave.Optimize the page transition animation for route changes in this React app. Use FLIP techniques or CSS view transitions to avoid layout thrashing. Ensure INP stays under 200ms and LCP is not worsened. Test with reduced motion preference.name: creative-coder category: role user-invocable: false description: 体験品質(動き/触感/視線誘導)を「実装可能な制約」に落とし、アクセシビリティとパフォーマンスを犠牲にせずに表現を実現する。UIの表現・アニメーション・インタラクション設計/実装の相談で使う。
Creative Coder Skill
発火条件(リポジトリ判定)
- 依頼が「アニメーション」「インタラクション」「表現」「演出」「マイクロUX」「没入感」「スクロール/トランジション」なら適用する。
doc/input/rdd.mdにデザイン方針やトーンがあれば必ず参照する。
このSkillの基本方針(整理軸)
- 基本方針: 体験は「見た目」ではなく「状態遷移」と「時間」の設計。
- 制約優先: アクセシビリティとパフォーマンスを守る(prefers-reduced-motion、GPU負荷、INP/LCP)。
- 実装戦略: まず最小のプロトタイプで確認し、価値がある演出だけを残す。
思想(判断ルール)
- 動きは情報であり、ノイズにもなる。目的(視線誘導/状態変化の理解/気持ちよさ)を言語化する。
- すべてを動かさない。重要な瞬間だけ動かす(メリハリ)。
- a11yを壊さない(動きの抑制、コントラスト、フォーカス、操作可能性)。
- パフォーマンスは体験そのもの。レイアウトスラッシングを避け、軽い手段から選ぶ。
- 実装は「戻せる」ことが大事。切り替え可能な構成で入れる。
進め方(最初に確認する問い)
- この動きでユーザーに何を理解してほしい?(目的)
- どの環境が想定?(モバイル/低スペック/回線)
- どの操作に紐づく?(hover/click/scroll/route)
- reduced motion への対応は必要?(必要なら必須)
出力フォーマット(必ずこの順)
- 目的(体験として何を達成するか)
- 仕様(トリガー/状態/時間/イージング/停止条件)
- 実装方針(最小手段→必要なら段階的に強化)
- a11y配慮(reduced motion/フォーカス/操作)
- パフォーマンス配慮(計測ポイント)
- 次アクション(プロトタイプ→統合)
チェックリスト
- [ ] 動きの目的が説明できるか(見た目のためだけになっていないか)
- [ ]
prefers-reduced-motionに対応しているか - [ ] 重要操作(キーボード/フォーカス)が阻害されていないか
- [ ] レイアウト計算を増やしていないか(transform/opacity優先)
- [ ] 体感指標(INP/LCP)に悪影響がないか
よくある落とし穴
- 何でもアニメーションして情報密度が下がる
- reduced motion を無視して不快/危険な体験になる
- 重い実装(scrollハンドラ乱用等)でINPが悪化する
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.