Add a new expert to the Remotion experts page
Scanned 9/9/2026
Install to Claude Code
npx -y skills add Lord1Egypt/awesome-skill-forge --skill skills-sh_remotion-dev_remotion_add-expert --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Skills Sh Remotion Dev Remotion Add Expert?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/lord1egypt-skills-sh-remotion-dev-remotion-add-expert)More formats (shields.io, HTML) on the badges page.
---
name: add-expert
description: Add a new expert to the Remotion experts page
---
## 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`:
```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").
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!