remotion-reloaded
3
总安装量
3
周安装量
#60488
全站排名
安装命令
npx skills add https://github.com/rawhalo/remotion-reloaded --skill remotion-reloaded
Agent 安装分布
opencode
3
gemini-cli
3
claude-code
3
github-copilot
3
codex
3
kimi-cli
3
Skill 文档
Remotion Reloaded Skill
Practical guidance for the currently implemented Remotion Reloaded API (Phase 1a + 1b).
This is the canonical skill entry point for this repository. Root SKILL.md is a compatibility shim.
Current Scope
This skill covers:
- GSAP timeline sync via
useGSAP()and declarative timeline components - GSAP plugin registration and plugin-safe helpers
- CSS/SVG/WebGL effects via
<Effect>,<EffectStack>, and<EffectPreset> - Three.js canvas, renderer fallback, GPU particles, and post-processing wrappers
- Config helpers (
withReloaded,getRenderEnvironment,useRenderMode, time utils)
Decision Tree
- Use
interpolate()/spring()for simple numeric motion. - Use
useGSAP()or<GSAPTimeline>for multi-element choreography. - Use
<Effect>/<EffectStack>/<EffectPreset>for visual grading and stylization. - Use
@remotion-reloaded/threefor 3D scenes, particles, and post-processing. - For platform-sensitive rendering, use config + fallback guidance in
webgpu-fallback.md.
Rule Files
rules/animation-selection.mdrules/gsap-basics.mdrules/gsap-plugins.mdrules/gsap-easing.mdrules/effects-basics.mdrules/effects-catalog.mdrules/effect-presets.mdrules/effect-animation.mdrules/three-basics.mdrules/three-particles.mdrules/three-postprocessing.mdrules/webgpu-fallback.mdrules/performance.mdrules/common-patterns.mdrules/troubleshooting.md
Example Compositions
examples/logo-reveal.tsxexamples/kinetic-text.tsxexamples/product-showcase.tsxexamples/particle-background.tsxexamples/data-counter.tsx
Config Baseline
import { withReloaded } from 'remotion-reloaded/config';
export default withReloaded({
webgpu: true,
});