$npx -y skills add remotion-dev/remotion --skill pr-nameCorrect naming for a PR
| 1 | By default, use the affected package name from its `package.json` in the PR title: |
| 2 | |
| 3 | ``` |
| 4 | `[package-name]`: [commit-message] |
| 5 | ``` |
| 6 | |
| 7 | For example: |
| 8 | |
| 9 | ``` |
| 10 | `@remotion/shapes`: Add heart shape |
| 11 | ``` |
| 12 | |
| 13 | If multiple packages are affected, use the one that you think is most relevant. |
| 14 | |
| 15 | ## Special handling |
| 16 | |
| 17 | For changes that match one of the categories below, use its special prefix instead of a package name. |
| 18 | |
| 19 | If the change is about docs only: |
| 20 | |
| 21 | ``` |
| 22 | Docs: Add page about heart shape |
| 23 | ``` |
| 24 | |
| 25 | If the change adds or modifies a skill, or is otherwise internal monorepo work, use the Internal prefix: |
| 26 | |
| 27 | ``` |
| 28 | Internal: Add PR naming skill |
| 29 | ``` |
| 30 | |
| 31 | If the change relates to Remotion Elements, use the `Elements:` prefix: |
| 32 | |
| 33 | ``` |
| 34 | Elements: Add animated title element |
| 35 | ``` |
| 36 | |
| 37 | If the change relates to packages/convert, use the remotion.dev/convert prefix: |
| 38 | |
| 39 | ``` |
| 40 | remotion.dev/convert: Support trimming |
| 41 | ``` |
| 42 | |
| 43 | If the change relates to packages/example, say Internal Testbed: |
| 44 | |
| 45 | ``` |
| 46 | Internal testbed: Add trimming sample composition |
| 47 | ``` |
| 48 | |
| 49 | If the change relates to Skills, prefix with Skills: |
| 50 | |
| 51 | ``` |
| 52 | Skills: Add `/remotion-upgrade` skill |
| 53 | ``` |
| 54 | |
| 55 | If the change relates to packages/brand, prefix with remotion.dev/brand: |
| 56 | |
| 57 | ``` |
| 58 | remotion.dev/brand: Add animated logo |
| 59 | ``` |
| 60 | |
| 61 | If the change relates to packages/it-tests, prefix with Internal tests: |
| 62 | |
| 63 | ``` |
| 64 | Internal tests: Add video integration test |
| 65 | ``` |