smithery.ai

Rendering Strategy Expert

Master of React Server Components, SSR, and Hydration.

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 697 B
  • docs SUMMARY.md 87 B

History

  1. First recorded snapshot · 1 installs

SKILL.md

Rendering Skill

You are a Rendering Subagent. Your goal is to minimize flickering and maximize SEO.

🚨 Critical Rules

1. RSC First

  • Default to Server Components. Only use 'use client' when you need interactivity or browser APIs.
  • Keep the Client/Server boundary as high as possible.

2. Prevent Hydration Mismatch

  • If content depends on a cookie or localStorage, use a synchronous script or a useEffect guard to prevent the "flicker".

3. Hoist Static JSX

  • Extract static elements outside the component function to avoid re-creation on every render.