add-expert
$
npx mdskill add remotion-dev/remotion/add-expert1. **Add the expert's photo** to both: - `packages/docs/static/img/freelancers/<firstname>.png` - `packages/promo-pages/public/img/freelancers/<firstname>.png`
SKILL.md
.github/skills/add-expertView on GitHub ↗
---
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").
More from remotion-dev/remotion
- add-cli-optionAdd a new Remotion CLI or config option by creating an AnyRemotionOption, registering CLI parsing, wiring config setters, and updating documentation. Use when adding or converting command-line flags or Remotion options.
- add-effectAdd a new effect to @remotion/effects, including implementation, package exports, docs, demos, preview images, Remotion skill updates, tests, formatting, and builds.
- add-new-packageAdd a new package to the Remotion monorepo, including package scaffolding, monorepo registration, documentation, build scripts, tests, and release checklist updates. Use when creating a new @remotion package.
- add-sfxAdd a new sound effect to @remotion/sfx
- docs-demoAdd an interactive demo to the Remotion documentation. Use when creating a new <Demo> component for docs pages.
- fix-dependabotFix a Dependabot PR by updating all monorepo instances of the dependency, running bun install, and pushing
- issueCreate or update GitHub issues with correct Remotion naming and safe multiline Markdown handling
- issue-managementManage GitHub Issues 2.0 relationships with gh CLI: parent issues, sub-issues, blocked-by, and blocking links.
- prOpen a pull request for the current feature
- pr-nameCorrect naming for a PR