$npx -y skills add remotion-dev/remotion --skill add-bugAdd a new Remotion bug entry to packages/bugs/api/[v].ts. Use when the user describes a bug and affected Remotion versions that should be surfaced through the bugs API.
| 1 | Add a new bug entry to `packages/bugs/api/[v].ts`. |
| 2 | |
| 3 | The user will describe the bug and the affected version(s). Add the new entry at the top of the `bugs` array, immediately after the opening bracket, following the existing format: |
| 4 | |
| 5 | ```ts |
| 6 | { |
| 7 | title: '<short title>', |
| 8 | description: '<description with upgrade instruction>', |
| 9 | link: 'https://remotion.dev/changelog', |
| 10 | versions: ['<affected versions>'], |
| 11 | }, |
| 12 | ``` |
| 13 | |
| 14 | Rules: |
| 15 | |
| 16 | - The description should tell users which version to upgrade to. |
| 17 | - The link should be `https://remotion.dev/changelog` unless the user provides a specific link. |
| 18 | - Add the entry at the top of the array so the most recent bugs come first. |