$npx -y skills add remotion-dev/remotion --skill skill-locationsDocument Remotion skill placement. Use when adding, moving, or editing Remotion skills to decide whether a skill belongs in .agents/skills as an internal skill or packages/skills as a public skill.
| 1 | # Remotion Skill Locations |
| 2 | |
| 3 | Place internal agent-only skills in `.agents/skills/<skill-name>/SKILL.md`. |
| 4 | |
| 5 | Place public, redistributable skills in `packages/skills/skills/<skill-name>/SKILL.md`. |
| 6 | Expose every public skill to agents with a symlink at `.agents/skills/<skill-name>`. |
| 7 | Run `bun run syncskills` after adding a public skill; CI verifies the symlinks with |
| 8 | `bun run checkskills`. |
| 9 | |
| 10 | When in doubt, ask whether the skill is internal or public before moving it between these roots. |