remotion-dev/remotion · Official

add-expert

Add a new expert to the Remotion experts page

All-time #5989 Trending #7031 First seen Feb 13, 2026
8-week activity · all time api

Installation

$ npx skills add remotion-dev/remotion --skill add-expert

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 remotion-dev/remotion · top by installs.

npx skills add remotion-dev/remotion

Browse all from remotion-dev/remotion

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

Repository health

Stars 58.6K
License LICENSE.md
Default branch main
Open issues 155
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,568 B
  • docs SUMMARY.md 63 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2,100 installs

Videos

Tutorials, guides, and showcases specifically about this skill.

SKILL.md

Steps

  1. Add the expert's photo to both:

- packages/docs/static/img/freelancers/<firstname>.png - packages/promo-pages/public/img/freelancers/<firstname>.png

The image should be a square headshot (PNG format). Both paths must have the same file.

  1. Add an entry to the experts array in packages/promo-pages/src/components/experts/experts-data.tsx:

``tsx { slug: 'firstname-lastname', name: 'First Last', image: '/img/freelancers/<firstname>.png', website: 'https://example.com'; | null, x: 'twitterhandle' | null, github: 'githubusername' | null, linkedin: 'in/linkedin-slug/' | null, email: '[email protected]' | null, videocall: 'https://cal.com/...'; | null, since: new Date('YYYY-MM-DD').getTime(), description: ( <div> A short description of the expert's work and specialties. Links to projects can be included with <a> tags. </div> ), }, ``

- since should be set to today's date - slug must be lowercase, hyphenated version of the name - Set unused social fields to null - The entry goes at the end of the experts array (before the closing ])

  1. Render the expert card by running in packages/docs:

`` bun render-cards ``

This generates packages/docs/static/generated/experts-<slug>.png. Verify it says "Rendered experts-\<slug\>" (not "Existed").