| name | issue |
| description | Create or update GitHub issues with correct Remotion naming and safe multiline Markdown handling |
Use this skill when creating, editing, or commenting on GitHub issues. For parent issues, sub-issues, blocked-by, and blocking relationships, use the issue-management skill.
Issue title format
Use concise, action-oriented titles.
If the issue primarily affects a package, prefix the title with the package name:
`@remotion/package`: Change description
Examples:
`@remotion/player`: Support keyboard shortcuts for fullscreen
`@remotion/lambda`: Improve retry message for failed renders
`@remotion/docs`: Add examples contribution guide
If the issue affects the website/docs broadly, use:
Docs: Change description
If the issue affects the Studio broadly, use:
Studio: Change description
If the issue affects the monorepo or infrastructure broadly, use:
Build: Change description
CI: Change description
Repo: Change description
Avoid vague titles such as:
Bug
Fix issue
Examples follow-up
Prefer:
Docs: Add a skill for creating examples
Never pass multiline Markdown inline
Do not pass issue bodies, PR bodies, or long comments inline through shell arguments.
Avoid:
gh issue create --title "Docs: Add examples skill" --body "Line one\n\nLine two"
This can accidentally send literal characters to GitHub instead of real newlines.