One-click install
npx skills add https://github.com/Animesh-Kr/claude-skills --skill add-expert
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: add-expert
Source: https://github.com/Animesh-Kr/claude-skills/tree/main/remotion-main/.claude/skills/add-expert
Command: npx skills add https://github.com/Animesh-Kr/claude-skills --skill add-expert

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates onboarding of a new Remotion expert by updating site assets and data sources to reflect the expanded team.

Core Features & Use Cases

  • Photo placement: Add the expert's headshot to both packages/docs/static/img/freelancers/<firstname>.png and packages/promo-pages/public/img/freelancers/<firstname>.png with a square PNG image and identical filenames.
  • Data entry: Append a new entry to the experts array in packages/promo-pages/src/components/experts/experts-data.tsx with the required fields (slug, name, image, social fields, since, description).
  • Card rendering: Run the render pipeline to generate the expert card by executing the appropriate build command (e.g., bun render-cards in packages/docs) to produce packages/docs/static/generated/experts-<slug>.png.

Quick Start

Add the expert's photo and update the experts-data with a new entry, then run bun render-cards to generate the card.

Frequently Asked Questions about add-expert

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add a new expert to the Remotion experts page?

To add a new expert to the Remotion experts page, append a new entry to the experts array in experts-data.tsx with fields like slug, name, image, and social links. You must also place the expert's square PNG headshot in the designated docs and promo-pages static image folders.

What is the process for rendering expert cards in Remotion?

Rendering expert cards in Remotion involves running the bun render-cards command inside the packages/docs directory. This executes the build pipeline to generate the final expert card image, saving the output as a PNG file in the static generated assets folder using the expert's slug.

Do I need to use bun for rendering Remotion expert cards?

Yes, you need to use bun to execute the render-cards command in the packages/docs directory. This specific build command processes the updated experts-data.tsx and generates the required expert card PNG assets for the promo-pages site.

What data fields are required for a new Remotion expert entry?

A new Remotion expert entry in experts-data.tsx requires a slug, name, image filename, social fields, a since date, and a description. These data fields populate the expert card and ensure the specialist is correctly displayed on the website.

Where should I place the headshot image for a new Remotion freelancer?

You must place the square PNG headshot in two directories: packages/docs/static/img/freelancers and packages/promo-pages/public/img/freelancers. Both files must use identical filenames based on the expert's first name to ensure correct rendering.