page-load-animations
Fix janky page-load animations, layout shift, or skeletons in a Sui dapp. Use when the user wants to fix loading animations or first paint.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fix janky page-load animations, layout shift, or skeletons in a Sui dapp. Use when the user wants to fix loading animations or first paint.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Pick a brand name, color palette, or typography for a Sui product. Use when the user wants to name or brand a Sui project.
Build an AI agent that signs Sui transactions or runs onchain actions. Use when the user wants an AI agent on Sui.
Build a Sui data indexer or analytics pipeline. Use when the user wants to index Sui events, build a pipeline, or query Sui RPC data.
Build a mobile Sui app with React Native or the Sui Mobile SDK. Use when the user wants iOS, Android, or mobile Sui flows.
Pair with a coding agent to build a Sui MVP step by step. Use when the user wants to build the MVP iteratively with an agent.
Author Sui Move modules and packages with a senior Move dev as your pair. Use when the user wants to write, build, author, add, or scaffold Move code, smart contracts, or Sui programs at the module or function level, in any phrasing.
| name | page-load-animations |
| description | Fix janky page-load animations, layout shift, or skeletons in a Sui dapp. Use when the user wants to fix loading animations or first paint. |
# Suiperpower telemetry. Routes through the CLI so projects.json + Convex stay in sync.
# Silent on failure so the skill never blocks. Opt out: SUIPERPOWER_TELEMETRY=off.
#
# AGENT NOTE: when this skill finishes, run the matching completion command:
# suiperpower track page-load-animations build completed
# Or use "failed" / "aborted" if it ended that way.
command -v suiperpower >/dev/null 2>&1 && suiperpower track page-load-animations build started >/dev/null 2>&1 &
true
If TEL_PROMPTED is no, before doing real work, ask the user:
Help suiperpower get better. We track which skills get used and how long they take. No code, no file paths, no PII. Change anytime in
~/.suiperpower/config.json.A) Sure, anonymous B) No thanks
Write the answer to ~/.suiperpower/config.json telemetryTier field and create ~/.suiperpower/.telemetry-prompted. Then continue.
Audits page-load and transition animations across the dapp and replaces janky patterns with a small set of calm defaults. Removes layout shift, replaces oversized fade-ins, and uses skeleton loaders that match the final content shape. The result is a UI that feels fast even when the network is slow.
marketing-video or a custom design skill.frontend-design-guidelines for component-level state defaults.If you activated this and the user actually wants something else, consult skills/SKILL_ROUTER.md and hand off.
Audit existing animations
transition, animate-, motion., framer-motion, keyframes, custom CSS animations.Tighten timings
Replace spinners with skeletons
Eliminate layout shift
aspect-ratio for images.font-display: swap and pre-size containers, OR use font-display: optional to avoid swap-induced shift.Add reduced-motion support
@media (prefers-reduced-motion: no-preference), or use the JS query.First-paint pass
Sui-specific surfaces
Verification
prefers-reduced-motion on. Confirm the page is usable without animation.Before reporting done:
prefers-reduced-motion: reduce produce a usable, non-jarring experience?If any answer is no, the skill keeps working.
On-demand references (load when relevant to the user's question):
references/timing-defaults.md: Recommended durations and easings per component class.references/skeleton-patterns.md: Skeleton shapes for common Sui dapp surfaces (balance, address list, transaction history, NFT grid).claude "/suiper:page-load-animations <your message>"codex "/page-load-animations <your message>"grok, then /page-load-animations <your message> in the session~/.cursor/rules/page-load-animations.mdc and reference it.If you activated this and the user actually wants something else, consult skills/SKILL_ROUTER.md and hand off.