add-expert

remotion-dev/remotion · updated Apr 8, 2026

$npx skills add https://github.com/remotion-dev/remotion --skill add-expert
0 commentsdiscussion
summary

Add the expert's photo to both:

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.

  2. 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@example.com' | 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 ])
  3. 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").

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.463 reviews
  • Advait Agarwal· Dec 28, 2024

    add-expert reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Camila Anderson· Dec 24, 2024

    We added add-expert from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Shikha Mishra· Dec 12, 2024

    add-expert reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Neel Tandon· Dec 12, 2024

    Registry listing for add-expert matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Diego Lopez· Nov 19, 2024

    I recommend add-expert for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Diego Anderson· Nov 15, 2024

    Solid pick for teams standardizing on skills: add-expert is focused, and the summary matches what you get after install.

  • Rahul Santra· Nov 3, 2024

    I recommend add-expert for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Sofia Thomas· Nov 3, 2024

    Useful defaults in add-expert — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Pratham Ware· Oct 22, 2024

    Useful defaults in add-expert — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Neel Wang· Oct 22, 2024

    I recommend add-expert for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

showing 1-10 of 63

1 / 7