mcpbeat

Add Expert

remotion-dev/add-expert

Add a new expert to the Remotion experts page

392 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
55471
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/remotion-dev/remotion --skill add-expert

The instruction itself

1 sections, as written by the author

Steps

  • 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.

  • Add an entry to the experts array in packages/promo-pages/src/components/experts/experts-data.tsx:
   {
       slug: 'firstname-lastname',
       name: 'First Last',
       image: '/img/freelancers/<firstname>.png',
       website: 'https://example.com' | null,
       x: 'twitter_handle' | null,
       github: 'github_username' | 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 ])
  • 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").

How to use it

Copy the folder

Take remotion-dev/add-expert from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.