# Add Bug

> Add 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.

- Skill: `remotion-dev/add-bug` (Agent Skill)
- Install (CLI): `npx skillmds add remotion-dev/add-bug`
- Raw SKILL.md: https://api.skillmd.com/api/skills/remotion-dev/add-bug/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: Remotion (https://skillmd.com/u/remotion-dev)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/remotion-dev/add-bug

---


Add a new bug entry to `packages/bugs/api/[v].ts`.

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:

```ts
{
	title: '<short title>',
	description: '<description with upgrade instruction>',
	link: 'https://remotion.dev/changelog',
	versions: ['<affected versions>'],
},
```

Rules:

- The description should tell users which version to upgrade to.
- The link should be `https://remotion.dev/changelog` unless the user provides a specific link.
- Add the entry at the top of the array so the most recent bugs come first.

