[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-remotion-best-practices":3,"mdc--83m3w6-key":39,"related-repo-openai-remotion-best-practices":682,"related-org-openai-remotion-best-practices":802},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"remotion-best-practices","create videos with Remotion and React","Best practices for Remotion - Video creation in React",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"React","react","tag",{"name":17,"slug":18,"type":15},"Creative","creative",{"name":20,"slug":21,"type":15},"Remotion","remotion",{"name":23,"slug":24,"type":15},"Video","video",{"name":26,"slug":27,"type":15},"Frontend","frontend",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-16T05:12:13.958536",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fremotion\u002Fskills\u002Fremotion","---\nname: remotion-best-practices\ndescription: Best practices for Remotion - Video creation in React\nmetadata:\n  tags: remotion, video, react, animation, composition\n---\n\n## When to use\n\nUse this skills whenever you are dealing with Remotion code to obtain the domain-specific knowledge.\n\n## New project setup\n\nWhen in an empty folder or workspace with no existing Remotion project, scaffold one using:\n\n```bash\nnpx create-video@latest --yes --blank --no-tailwind my-video\n```\n\nReplace `my-video` with a suitable project name.\n\n## Starting preview\n\nStart the Remotion Studio to preview a video:\n\n```bash\nnpx remotion studio\n```\n\n## Optional: one-frame render check\n\nYou can render a single frame with the CLI to sanity-check layout, colors, or timing.  \nSkip it for trivial edits, pure refactors, or when you already have enough confidence from Studio or prior renders.\n\n```bash\nnpx remotion still [composition-id] --scale=0.25 --frame=30\n```\n\nAt 30 fps, `--frame=30` is the one-second mark (`--frame` is zero-based).\n\n## Captions\n\nWhen dealing with captions or subtitles, load the [.\u002Frules\u002Fsubtitles.md](.\u002Frules\u002Fsubtitles.md) file for more information.\n\n## Using FFmpeg\n\nFor some video operations, such as trimming videos or detecting silence, FFmpeg should be used. Load the [.\u002Frules\u002Fffmpeg.md](.\u002Frules\u002Fffmpeg.md) file for more information.\n\n## Silence detection\n\nWhen needing to detect and trim silent segments from video or audio files, load the [.\u002Frules\u002Fsilence-detection.md](.\u002Frules\u002Fsilence-detection.md) file.\n\n## Audio visualization\n\nWhen needing to visualize audio (spectrum bars, waveforms, bass-reactive effects), load the [.\u002Frules\u002Faudio-visualization.md](.\u002Frules\u002Faudio-visualization.md) file for more information.\n\n## Sound effects\n\nWhen needing to use sound effects, load the [.\u002Frules\u002Fsfx.md](.\u002Frules\u002Fsfx.md) file for more information.\n\n## How to use\n\nRead individual rule files for detailed explanations and code examples:\n\n- [rules\u002F3d.md](rules\u002F3d.md) - 3D content in Remotion using Three.js and React Three Fiber\n- [rules\u002Fanimations.md](rules\u002Fanimations.md) - Fundamental animation skills for Remotion\n- [rules\u002Fassets.md](rules\u002Fassets.md) - Importing images, videos, audio, and fonts into Remotion\n- [rules\u002Faudio.md](rules\u002Faudio.md) - Using audio and sound in Remotion - importing, trimming, volume, speed, pitch\n- [rules\u002Fcalculate-metadata.md](rules\u002Fcalculate-metadata.md) - Dynamically set composition duration, dimensions, and props\n- [rules\u002Fcan-decode.md](rules\u002Fcan-decode.md) - Check if a video can be decoded by the browser using Mediabunny\n- [rules\u002Fcharts.md](rules\u002Fcharts.md) - Chart and data visualization patterns for Remotion (bar, pie, line, stock charts)\n- [rules\u002Fcompositions.md](rules\u002Fcompositions.md) - Defining compositions, stills, folders, default props and dynamic metadata\n- [rules\u002Fextract-frames.md](rules\u002Fextract-frames.md) - Extract frames from videos at specific timestamps using Mediabunny\n- [rules\u002Ffonts.md](rules\u002Ffonts.md) - Loading Google Fonts and local fonts in Remotion\n- [rules\u002Fget-audio-duration.md](rules\u002Fget-audio-duration.md) - Getting the duration of an audio file in seconds with Mediabunny\n- [rules\u002Fget-video-dimensions.md](rules\u002Fget-video-dimensions.md) - Getting the width and height of a video file with Mediabunny\n- [rules\u002Fget-video-duration.md](rules\u002Fget-video-duration.md) - Getting the duration of a video file in seconds with Mediabunny\n- [rules\u002Fgifs.md](rules\u002Fgifs.md) - Displaying GIFs synchronized with Remotion's timeline\n- [rules\u002Fimages.md](rules\u002Fimages.md) - Embedding images in Remotion using the Img component\n- [rules\u002Flight-leaks.md](rules\u002Flight-leaks.md) - Light leak overlay effects using @remotion\u002Flight-leaks\n- [rules\u002Flottie.md](rules\u002Flottie.md) - Embedding Lottie animations in Remotion\n- [rules\u002Fmeasuring-dom-nodes.md](rules\u002Fmeasuring-dom-nodes.md) - Measuring DOM element dimensions in Remotion\n- [rules\u002Fmeasuring-text.md](rules\u002Fmeasuring-text.md) - Measuring text dimensions, fitting text to containers, and checking overflow\n- [rules\u002Fsequencing.md](rules\u002Fsequencing.md) - Sequencing patterns for Remotion - delay, trim, limit duration of items\n- [rules\u002Ftailwind.md](rules\u002Ftailwind.md) - Using TailwindCSS in Remotion\n- [rules\u002Ftext-animations.md](rules\u002Ftext-animations.md) - Typography and text animation patterns for Remotion\n- [rules\u002Ftiming.md](rules\u002Ftiming.md) - Timing with interpolate and Bézier easing, springs\n- [rules\u002Ftransitions.md](rules\u002Ftransitions.md) - Scene transition patterns for Remotion\n- [rules\u002Ftransparent-videos.md](rules\u002Ftransparent-videos.md) - Rendering out a video with transparency\n- [rules\u002Ftrimming.md](rules\u002Ftrimming.md) - Trimming patterns for Remotion - cut the beginning or end of animations\n- [rules\u002Fvideos.md](rules\u002Fvideos.md) - Embedding videos in Remotion - trimming, volume, speed, looping, pitch\n- [rules\u002Fparameters.md](rules\u002Fparameters.md) - Make a video parametrizable by adding a Zod schema\n- [rules\u002Fmaps.md](rules\u002Fmaps.md) - Add a map using Mapbox and animate it\n- [rules\u002Fsilence-detection.md](rules\u002Fsilence-detection.md) - Adaptive silence detection using FFmpeg loudnorm and silencedetect\n- [rules\u002Fvoiceover.md](rules\u002Fvoiceover.md) - Adding AI-generated voiceover to Remotion compositions using ElevenLabs TTS\n",{"data":40,"body":43},{"name":4,"description":6,"metadata":41},{"tags":42},"remotion, video, react, animation, composition",{"type":44,"children":45},"root",[46,55,61,67,72,122,135,141,146,170,176,187,241,262,268,281,287,298,304,316,322,333,339,350,356,361,676],{"type":47,"tag":48,"props":49,"children":51},"element","h2",{"id":50},"when-to-use",[52],{"type":53,"value":54},"text","When to use",{"type":47,"tag":56,"props":57,"children":58},"p",{},[59],{"type":53,"value":60},"Use this skills whenever you are dealing with Remotion code to obtain the domain-specific knowledge.",{"type":47,"tag":48,"props":62,"children":64},{"id":63},"new-project-setup",[65],{"type":53,"value":66},"New project setup",{"type":47,"tag":56,"props":68,"children":69},{},[70],{"type":53,"value":71},"When in an empty folder or workspace with no existing Remotion project, scaffold one using:",{"type":47,"tag":73,"props":74,"children":79},"pre",{"className":75,"code":76,"language":77,"meta":78,"style":78},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx create-video@latest --yes --blank --no-tailwind my-video\n","bash","",[80],{"type":47,"tag":81,"props":82,"children":83},"code",{"__ignoreMap":78},[84],{"type":47,"tag":85,"props":86,"children":89},"span",{"class":87,"line":88},"line",1,[90,96,102,107,112,117],{"type":47,"tag":85,"props":91,"children":93},{"style":92},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[94],{"type":53,"value":95},"npx",{"type":47,"tag":85,"props":97,"children":99},{"style":98},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[100],{"type":53,"value":101}," create-video@latest",{"type":47,"tag":85,"props":103,"children":104},{"style":98},[105],{"type":53,"value":106}," --yes",{"type":47,"tag":85,"props":108,"children":109},{"style":98},[110],{"type":53,"value":111}," --blank",{"type":47,"tag":85,"props":113,"children":114},{"style":98},[115],{"type":53,"value":116}," --no-tailwind",{"type":47,"tag":85,"props":118,"children":119},{"style":98},[120],{"type":53,"value":121}," my-video\n",{"type":47,"tag":56,"props":123,"children":124},{},[125,127,133],{"type":53,"value":126},"Replace ",{"type":47,"tag":81,"props":128,"children":130},{"className":129},[],[131],{"type":53,"value":132},"my-video",{"type":53,"value":134}," with a suitable project name.",{"type":47,"tag":48,"props":136,"children":138},{"id":137},"starting-preview",[139],{"type":53,"value":140},"Starting preview",{"type":47,"tag":56,"props":142,"children":143},{},[144],{"type":53,"value":145},"Start the Remotion Studio to preview a video:",{"type":47,"tag":73,"props":147,"children":149},{"className":75,"code":148,"language":77,"meta":78,"style":78},"npx remotion studio\n",[150],{"type":47,"tag":81,"props":151,"children":152},{"__ignoreMap":78},[153],{"type":47,"tag":85,"props":154,"children":155},{"class":87,"line":88},[156,160,165],{"type":47,"tag":85,"props":157,"children":158},{"style":92},[159],{"type":53,"value":95},{"type":47,"tag":85,"props":161,"children":162},{"style":98},[163],{"type":53,"value":164}," remotion",{"type":47,"tag":85,"props":166,"children":167},{"style":98},[168],{"type":53,"value":169}," studio\n",{"type":47,"tag":48,"props":171,"children":173},{"id":172},"optional-one-frame-render-check",[174],{"type":53,"value":175},"Optional: one-frame render check",{"type":47,"tag":56,"props":177,"children":178},{},[179,181,185],{"type":53,"value":180},"You can render a single frame with the CLI to sanity-check layout, colors, or timing.",{"type":47,"tag":182,"props":183,"children":184},"br",{},[],{"type":53,"value":186},"\nSkip it for trivial edits, pure refactors, or when you already have enough confidence from Studio or prior renders.",{"type":47,"tag":73,"props":188,"children":190},{"className":75,"code":189,"language":77,"meta":78,"style":78},"npx remotion still [composition-id] --scale=0.25 --frame=30\n",[191],{"type":47,"tag":81,"props":192,"children":193},{"__ignoreMap":78},[194],{"type":47,"tag":85,"props":195,"children":196},{"class":87,"line":88},[197,201,205,210,216,222,227,232,236],{"type":47,"tag":85,"props":198,"children":199},{"style":92},[200],{"type":53,"value":95},{"type":47,"tag":85,"props":202,"children":203},{"style":98},[204],{"type":53,"value":164},{"type":47,"tag":85,"props":206,"children":207},{"style":98},[208],{"type":53,"value":209}," still",{"type":47,"tag":85,"props":211,"children":213},{"style":212},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[214],{"type":53,"value":215}," [composition-id] --scale",{"type":47,"tag":85,"props":217,"children":219},{"style":218},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[220],{"type":53,"value":221},"=",{"type":47,"tag":85,"props":223,"children":224},{"style":98},[225],{"type":53,"value":226},"0.25",{"type":47,"tag":85,"props":228,"children":229},{"style":212},[230],{"type":53,"value":231}," --frame",{"type":47,"tag":85,"props":233,"children":234},{"style":218},[235],{"type":53,"value":221},{"type":47,"tag":85,"props":237,"children":238},{"style":98},[239],{"type":53,"value":240},"30\n",{"type":47,"tag":56,"props":242,"children":243},{},[244,246,252,254,260],{"type":53,"value":245},"At 30 fps, ",{"type":47,"tag":81,"props":247,"children":249},{"className":248},[],[250],{"type":53,"value":251},"--frame=30",{"type":53,"value":253}," is the one-second mark (",{"type":47,"tag":81,"props":255,"children":257},{"className":256},[],[258],{"type":53,"value":259},"--frame",{"type":53,"value":261}," is zero-based).",{"type":47,"tag":48,"props":263,"children":265},{"id":264},"captions",[266],{"type":53,"value":267},"Captions",{"type":47,"tag":56,"props":269,"children":270},{},[271,273,279],{"type":53,"value":272},"When dealing with captions or subtitles, load the ",{"type":47,"tag":274,"props":275,"children":277},"a",{"href":276},".\u002Frules\u002Fsubtitles.md",[278],{"type":53,"value":276},{"type":53,"value":280}," file for more information.",{"type":47,"tag":48,"props":282,"children":284},{"id":283},"using-ffmpeg",[285],{"type":53,"value":286},"Using FFmpeg",{"type":47,"tag":56,"props":288,"children":289},{},[290,292,297],{"type":53,"value":291},"For some video operations, such as trimming videos or detecting silence, FFmpeg should be used. Load the ",{"type":47,"tag":274,"props":293,"children":295},{"href":294},".\u002Frules\u002Fffmpeg.md",[296],{"type":53,"value":294},{"type":53,"value":280},{"type":47,"tag":48,"props":299,"children":301},{"id":300},"silence-detection",[302],{"type":53,"value":303},"Silence detection",{"type":47,"tag":56,"props":305,"children":306},{},[307,309,314],{"type":53,"value":308},"When needing to detect and trim silent segments from video or audio files, load the ",{"type":47,"tag":274,"props":310,"children":312},{"href":311},".\u002Frules\u002Fsilence-detection.md",[313],{"type":53,"value":311},{"type":53,"value":315}," file.",{"type":47,"tag":48,"props":317,"children":319},{"id":318},"audio-visualization",[320],{"type":53,"value":321},"Audio visualization",{"type":47,"tag":56,"props":323,"children":324},{},[325,327,332],{"type":53,"value":326},"When needing to visualize audio (spectrum bars, waveforms, bass-reactive effects), load the ",{"type":47,"tag":274,"props":328,"children":330},{"href":329},".\u002Frules\u002Faudio-visualization.md",[331],{"type":53,"value":329},{"type":53,"value":280},{"type":47,"tag":48,"props":334,"children":336},{"id":335},"sound-effects",[337],{"type":53,"value":338},"Sound effects",{"type":47,"tag":56,"props":340,"children":341},{},[342,344,349],{"type":53,"value":343},"When needing to use sound effects, load the ",{"type":47,"tag":274,"props":345,"children":347},{"href":346},".\u002Frules\u002Fsfx.md",[348],{"type":53,"value":346},{"type":53,"value":280},{"type":47,"tag":48,"props":351,"children":353},{"id":352},"how-to-use",[354],{"type":53,"value":355},"How to use",{"type":47,"tag":56,"props":357,"children":358},{},[359],{"type":53,"value":360},"Read individual rule files for detailed explanations and code examples:",{"type":47,"tag":362,"props":363,"children":364},"ul",{},[365,376,386,396,406,416,426,436,446,456,466,476,486,496,506,516,526,536,546,556,566,576,586,596,606,616,626,636,646,656,666],{"type":47,"tag":366,"props":367,"children":368},"li",{},[369,374],{"type":47,"tag":274,"props":370,"children":372},{"href":371},"rules\u002F3d.md",[373],{"type":53,"value":371},{"type":53,"value":375}," - 3D content in Remotion using Three.js and React Three Fiber",{"type":47,"tag":366,"props":377,"children":378},{},[379,384],{"type":47,"tag":274,"props":380,"children":382},{"href":381},"rules\u002Fanimations.md",[383],{"type":53,"value":381},{"type":53,"value":385}," - Fundamental animation skills for Remotion",{"type":47,"tag":366,"props":387,"children":388},{},[389,394],{"type":47,"tag":274,"props":390,"children":392},{"href":391},"rules\u002Fassets.md",[393],{"type":53,"value":391},{"type":53,"value":395}," - Importing images, videos, audio, and fonts into Remotion",{"type":47,"tag":366,"props":397,"children":398},{},[399,404],{"type":47,"tag":274,"props":400,"children":402},{"href":401},"rules\u002Faudio.md",[403],{"type":53,"value":401},{"type":53,"value":405}," - Using audio and sound in Remotion - importing, trimming, volume, speed, pitch",{"type":47,"tag":366,"props":407,"children":408},{},[409,414],{"type":47,"tag":274,"props":410,"children":412},{"href":411},"rules\u002Fcalculate-metadata.md",[413],{"type":53,"value":411},{"type":53,"value":415}," - Dynamically set composition duration, dimensions, and props",{"type":47,"tag":366,"props":417,"children":418},{},[419,424],{"type":47,"tag":274,"props":420,"children":422},{"href":421},"rules\u002Fcan-decode.md",[423],{"type":53,"value":421},{"type":53,"value":425}," - Check if a video can be decoded by the browser using Mediabunny",{"type":47,"tag":366,"props":427,"children":428},{},[429,434],{"type":47,"tag":274,"props":430,"children":432},{"href":431},"rules\u002Fcharts.md",[433],{"type":53,"value":431},{"type":53,"value":435}," - Chart and data visualization patterns for Remotion (bar, pie, line, stock charts)",{"type":47,"tag":366,"props":437,"children":438},{},[439,444],{"type":47,"tag":274,"props":440,"children":442},{"href":441},"rules\u002Fcompositions.md",[443],{"type":53,"value":441},{"type":53,"value":445}," - Defining compositions, stills, folders, default props and dynamic metadata",{"type":47,"tag":366,"props":447,"children":448},{},[449,454],{"type":47,"tag":274,"props":450,"children":452},{"href":451},"rules\u002Fextract-frames.md",[453],{"type":53,"value":451},{"type":53,"value":455}," - Extract frames from videos at specific timestamps using Mediabunny",{"type":47,"tag":366,"props":457,"children":458},{},[459,464],{"type":47,"tag":274,"props":460,"children":462},{"href":461},"rules\u002Ffonts.md",[463],{"type":53,"value":461},{"type":53,"value":465}," - Loading Google Fonts and local fonts in Remotion",{"type":47,"tag":366,"props":467,"children":468},{},[469,474],{"type":47,"tag":274,"props":470,"children":472},{"href":471},"rules\u002Fget-audio-duration.md",[473],{"type":53,"value":471},{"type":53,"value":475}," - Getting the duration of an audio file in seconds with Mediabunny",{"type":47,"tag":366,"props":477,"children":478},{},[479,484],{"type":47,"tag":274,"props":480,"children":482},{"href":481},"rules\u002Fget-video-dimensions.md",[483],{"type":53,"value":481},{"type":53,"value":485}," - Getting the width and height of a video file with Mediabunny",{"type":47,"tag":366,"props":487,"children":488},{},[489,494],{"type":47,"tag":274,"props":490,"children":492},{"href":491},"rules\u002Fget-video-duration.md",[493],{"type":53,"value":491},{"type":53,"value":495}," - Getting the duration of a video file in seconds with Mediabunny",{"type":47,"tag":366,"props":497,"children":498},{},[499,504],{"type":47,"tag":274,"props":500,"children":502},{"href":501},"rules\u002Fgifs.md",[503],{"type":53,"value":501},{"type":53,"value":505}," - Displaying GIFs synchronized with Remotion's timeline",{"type":47,"tag":366,"props":507,"children":508},{},[509,514],{"type":47,"tag":274,"props":510,"children":512},{"href":511},"rules\u002Fimages.md",[513],{"type":53,"value":511},{"type":53,"value":515}," - Embedding images in Remotion using the Img component",{"type":47,"tag":366,"props":517,"children":518},{},[519,524],{"type":47,"tag":274,"props":520,"children":522},{"href":521},"rules\u002Flight-leaks.md",[523],{"type":53,"value":521},{"type":53,"value":525}," - Light leak overlay effects using @remotion\u002Flight-leaks",{"type":47,"tag":366,"props":527,"children":528},{},[529,534],{"type":47,"tag":274,"props":530,"children":532},{"href":531},"rules\u002Flottie.md",[533],{"type":53,"value":531},{"type":53,"value":535}," - Embedding Lottie animations in Remotion",{"type":47,"tag":366,"props":537,"children":538},{},[539,544],{"type":47,"tag":274,"props":540,"children":542},{"href":541},"rules\u002Fmeasuring-dom-nodes.md",[543],{"type":53,"value":541},{"type":53,"value":545}," - Measuring DOM element dimensions in Remotion",{"type":47,"tag":366,"props":547,"children":548},{},[549,554],{"type":47,"tag":274,"props":550,"children":552},{"href":551},"rules\u002Fmeasuring-text.md",[553],{"type":53,"value":551},{"type":53,"value":555}," - Measuring text dimensions, fitting text to containers, and checking overflow",{"type":47,"tag":366,"props":557,"children":558},{},[559,564],{"type":47,"tag":274,"props":560,"children":562},{"href":561},"rules\u002Fsequencing.md",[563],{"type":53,"value":561},{"type":53,"value":565}," - Sequencing patterns for Remotion - delay, trim, limit duration of items",{"type":47,"tag":366,"props":567,"children":568},{},[569,574],{"type":47,"tag":274,"props":570,"children":572},{"href":571},"rules\u002Ftailwind.md",[573],{"type":53,"value":571},{"type":53,"value":575}," - Using TailwindCSS in Remotion",{"type":47,"tag":366,"props":577,"children":578},{},[579,584],{"type":47,"tag":274,"props":580,"children":582},{"href":581},"rules\u002Ftext-animations.md",[583],{"type":53,"value":581},{"type":53,"value":585}," - Typography and text animation patterns for Remotion",{"type":47,"tag":366,"props":587,"children":588},{},[589,594],{"type":47,"tag":274,"props":590,"children":592},{"href":591},"rules\u002Ftiming.md",[593],{"type":53,"value":591},{"type":53,"value":595}," - Timing with interpolate and Bézier easing, springs",{"type":47,"tag":366,"props":597,"children":598},{},[599,604],{"type":47,"tag":274,"props":600,"children":602},{"href":601},"rules\u002Ftransitions.md",[603],{"type":53,"value":601},{"type":53,"value":605}," - Scene transition patterns for Remotion",{"type":47,"tag":366,"props":607,"children":608},{},[609,614],{"type":47,"tag":274,"props":610,"children":612},{"href":611},"rules\u002Ftransparent-videos.md",[613],{"type":53,"value":611},{"type":53,"value":615}," - Rendering out a video with transparency",{"type":47,"tag":366,"props":617,"children":618},{},[619,624],{"type":47,"tag":274,"props":620,"children":622},{"href":621},"rules\u002Ftrimming.md",[623],{"type":53,"value":621},{"type":53,"value":625}," - Trimming patterns for Remotion - cut the beginning or end of animations",{"type":47,"tag":366,"props":627,"children":628},{},[629,634],{"type":47,"tag":274,"props":630,"children":632},{"href":631},"rules\u002Fvideos.md",[633],{"type":53,"value":631},{"type":53,"value":635}," - Embedding videos in Remotion - trimming, volume, speed, looping, pitch",{"type":47,"tag":366,"props":637,"children":638},{},[639,644],{"type":47,"tag":274,"props":640,"children":642},{"href":641},"rules\u002Fparameters.md",[643],{"type":53,"value":641},{"type":53,"value":645}," - Make a video parametrizable by adding a Zod schema",{"type":47,"tag":366,"props":647,"children":648},{},[649,654],{"type":47,"tag":274,"props":650,"children":652},{"href":651},"rules\u002Fmaps.md",[653],{"type":53,"value":651},{"type":53,"value":655}," - Add a map using Mapbox and animate it",{"type":47,"tag":366,"props":657,"children":658},{},[659,664],{"type":47,"tag":274,"props":660,"children":662},{"href":661},"rules\u002Fsilence-detection.md",[663],{"type":53,"value":661},{"type":53,"value":665}," - Adaptive silence detection using FFmpeg loudnorm and silencedetect",{"type":47,"tag":366,"props":667,"children":668},{},[669,674],{"type":47,"tag":274,"props":670,"children":672},{"href":671},"rules\u002Fvoiceover.md",[673],{"type":53,"value":671},{"type":53,"value":675}," - Adding AI-generated voiceover to Remotion compositions using ElevenLabs TTS",{"type":47,"tag":677,"props":678,"children":679},"style",{},[680],{"type":53,"value":681},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":683,"total":801},[684,703,719,731,751,769,789],{"slug":685,"name":685,"fn":686,"description":687,"org":688,"tags":689,"stars":28,"repoUrl":29,"updatedAt":702},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[690,693,696,699],{"name":691,"slug":692,"type":15},"Accessibility","accessibility",{"name":694,"slug":695,"type":15},"Charts","charts",{"name":697,"slug":698,"type":15},"Data Visualization","data-visualization",{"name":700,"slug":701,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":704,"name":704,"fn":705,"description":706,"org":707,"tags":708,"stars":28,"repoUrl":29,"updatedAt":718},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[709,712,715],{"name":710,"slug":711,"type":15},"Agents","agents",{"name":713,"slug":714,"type":15},"Browser Automation","browser-automation",{"name":716,"slug":717,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":720,"name":720,"fn":721,"description":722,"org":723,"tags":724,"stars":28,"repoUrl":29,"updatedAt":730},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[725,726,729],{"name":713,"slug":714,"type":15},{"name":727,"slug":728,"type":15},"Local Development","local-development",{"name":716,"slug":717,"type":15},"2026-04-06T18:41:17.526867",{"slug":732,"name":732,"fn":733,"description":734,"org":735,"tags":736,"stars":28,"repoUrl":29,"updatedAt":750},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[737,738,741,744,747],{"name":710,"slug":711,"type":15},{"name":739,"slug":740,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":742,"slug":743,"type":15},"SDK","sdk",{"name":745,"slug":746,"type":15},"Serverless","serverless",{"name":748,"slug":749,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":752,"name":752,"fn":753,"description":754,"org":755,"tags":756,"stars":28,"repoUrl":29,"updatedAt":768},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[757,758,759,762,765],{"name":26,"slug":27,"type":15},{"name":13,"slug":14,"type":15},{"name":760,"slug":761,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":763,"slug":764,"type":15},"UI Components","ui-components",{"name":766,"slug":767,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":770,"name":770,"fn":771,"description":772,"org":773,"tags":774,"stars":28,"repoUrl":29,"updatedAt":788},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[775,778,781,784,787],{"name":776,"slug":777,"type":15},"AI Infrastructure","ai-infrastructure",{"name":779,"slug":780,"type":15},"Cost Optimization","cost-optimization",{"name":782,"slug":783,"type":15},"LLM","llm",{"name":785,"slug":786,"type":15},"Performance","performance",{"name":766,"slug":767,"type":15},"2026-04-06T18:40:44.377464",{"slug":790,"name":790,"fn":791,"description":792,"org":793,"tags":794,"stars":28,"repoUrl":29,"updatedAt":800},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[795,796,799],{"name":779,"slug":780,"type":15},{"name":797,"slug":798,"type":15},"Database","database",{"name":782,"slug":783,"type":15},"2026-04-06T18:41:08.513425",600,{"items":803,"total":998},[804,825,848,865,881,898,917,929,943,957,969,982],{"slug":805,"name":805,"fn":806,"description":807,"org":808,"tags":809,"stars":822,"repoUrl":823,"updatedAt":824},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[810,813,816,819],{"name":811,"slug":812,"type":15},"Documents","documents",{"name":814,"slug":815,"type":15},"Healthcare","healthcare",{"name":817,"slug":818,"type":15},"Insurance","insurance",{"name":820,"slug":821,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":826,"name":826,"fn":827,"description":828,"org":829,"tags":830,"stars":845,"repoUrl":846,"updatedAt":847},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[831,834,836,839,842],{"name":832,"slug":833,"type":15},".NET","dotnet",{"name":835,"slug":826,"type":15},"ASP.NET Core",{"name":837,"slug":838,"type":15},"Blazor","blazor",{"name":840,"slug":841,"type":15},"C#","csharp",{"name":843,"slug":844,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":849,"name":849,"fn":850,"description":851,"org":852,"tags":853,"stars":845,"repoUrl":846,"updatedAt":864},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[854,857,860,863],{"name":855,"slug":856,"type":15},"Apps SDK","apps-sdk",{"name":858,"slug":859,"type":15},"ChatGPT","chatgpt",{"name":861,"slug":862,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":866,"name":866,"fn":867,"description":868,"org":869,"tags":870,"stars":845,"repoUrl":846,"updatedAt":880},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[871,874,877],{"name":872,"slug":873,"type":15},"API Development","api-development",{"name":875,"slug":876,"type":15},"CLI","cli",{"name":878,"slug":879,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":882,"name":882,"fn":883,"description":884,"org":885,"tags":886,"stars":845,"repoUrl":846,"updatedAt":897},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[887,890,893,894],{"name":888,"slug":889,"type":15},"Cloudflare","cloudflare",{"name":891,"slug":892,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":739,"slug":740,"type":15},{"name":895,"slug":896,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":899,"name":899,"fn":900,"description":901,"org":902,"tags":903,"stars":845,"repoUrl":846,"updatedAt":916},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[904,907,910,913],{"name":905,"slug":906,"type":15},"Productivity","productivity",{"name":908,"slug":909,"type":15},"Project Management","project-management",{"name":911,"slug":912,"type":15},"Strategy","strategy",{"name":914,"slug":915,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":918,"name":918,"fn":919,"description":920,"org":921,"tags":922,"stars":845,"repoUrl":846,"updatedAt":928},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[923,924,926,927],{"name":700,"slug":701,"type":15},{"name":925,"slug":918,"type":15},"Figma",{"name":26,"slug":27,"type":15},{"name":861,"slug":862,"type":15},"2026-04-12T05:06:47.939943",{"slug":930,"name":930,"fn":931,"description":932,"org":933,"tags":934,"stars":845,"repoUrl":846,"updatedAt":942},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[935,936,939,940,941],{"name":700,"slug":701,"type":15},{"name":937,"slug":938,"type":15},"Design System","design-system",{"name":925,"slug":918,"type":15},{"name":26,"slug":27,"type":15},{"name":763,"slug":764,"type":15},"2026-05-10T05:59:52.971881",{"slug":944,"name":944,"fn":945,"description":946,"org":947,"tags":948,"stars":845,"repoUrl":846,"updatedAt":956},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[949,950,951,954,955],{"name":700,"slug":701,"type":15},{"name":937,"slug":938,"type":15},{"name":952,"slug":953,"type":15},"Documentation","documentation",{"name":925,"slug":918,"type":15},{"name":26,"slug":27,"type":15},"2026-05-16T06:07:47.821474",{"slug":958,"name":958,"fn":959,"description":960,"org":961,"tags":962,"stars":845,"repoUrl":846,"updatedAt":968},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[963,964,965,966,967],{"name":700,"slug":701,"type":15},{"name":925,"slug":918,"type":15},{"name":26,"slug":27,"type":15},{"name":763,"slug":764,"type":15},{"name":843,"slug":844,"type":15},"2026-05-16T06:07:40.583615",{"slug":970,"name":970,"fn":971,"description":972,"org":973,"tags":974,"stars":845,"repoUrl":846,"updatedAt":981},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[975,978,979,980],{"name":976,"slug":977,"type":15},"Animation","animation",{"name":878,"slug":879,"type":15},{"name":17,"slug":18,"type":15},{"name":700,"slug":701,"type":15},"2026-05-02T05:31:48.48485",{"slug":983,"name":983,"fn":984,"description":985,"org":986,"tags":987,"stars":845,"repoUrl":846,"updatedAt":997},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[988,989,990,993,996],{"name":17,"slug":18,"type":15},{"name":700,"slug":701,"type":15},{"name":991,"slug":992,"type":15},"Image Generation","image-generation",{"name":994,"slug":995,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]