소스 정보
- 저장소
- team-telnyx/adgen
- 최근 소스 활동
- 2026년 3월 5일 00:39
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/team-telnyx/adgen --skill remotion-best-practices명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | remotion-best-practices |
| description | Best practices for Remotion - Video creation in React |
| metadata | {"tags":"remotion, video, react, animation, composition"} |
Always render at 1920x1080 (1080p) minimum. Never ship 720p.
| Format | Width | Height | Use case |
|---|---|---|---|
| 16:9 landscape | 1920 | 1080 | YouTube, website embeds, presentations |
| 9:16 vertical | 1080 | 1920 | Instagram Reels, TikTok, YouTube Shorts |
| 1:1 square | 1080 | 1080 | Instagram feed, LinkedIn |
| 4K landscape | 3840 | 2160 | High-end presentations (render time 4x) |
Default fps: 30. Use 60fps only when smooth motion is critical (scrolling UIs, fast transitions).
Telnyx uses two fonts in all video content:
In theme.ts: FONTS.heading for PP Formula, FONTS.sans for Inter.
Loading fonts in Remotion:
// In your composition's Root or a wrapper component:
import { staticFile } from "remotion";
const fontFace = `
@font-face {
font-family: "PP Formula";
src: url("${staticFile("fonts/PPFormula-Medium.otf")}") format("opentype");
font-weight: 500;
}
`;
// Inject via <style> in an AbsoluteFill wrapper
Place font files in public/fonts/ of your Remotion project. Inter is also available via @remotion/google-fonts.
Every video should follow a clear narrative arc:
Structure timing accordingly: distribute content across the middle sections proportionally.
Apply the "one idea per slide" principle to video scenes:
Don't design from scratch every time:
Never generate fake data, screenshots, or statistics:
[PLACEHOLDER: your metric here] for numbersBefore rendering or publishing any Remotion video, verify:
When building Remotion videos with AI coding agents (Claude, OpenCode, Cursor, etc.), follow these patterns for best results.
Explicitly reference the skill - Tell the agent to "use the remotion-best-practices skill" or read specific rule files. Don't assume it picks up context automatically.
One change at a time - Don't ask for 5-10 changes in one message. Single requests = better results. "Add a fade-in to the title" not "add fade-in, change colors, adjust timing, and add a counter."
Feed Remotion docs when needed - For advanced features (audio visualization, captions, 3D), grab the relevant Remotion documentation. Add .md to any remotion.dev URL for a markdown version you can paste directly.
Don't try to build the whole video at once. Build scene by scene:
1. Intro section (hook/title) → verify it works
2. Main content section → verify
3. Feature/demo section → verify
4. CTA/outro section → verify
5. Then refine weak sections individually
This matches the "one idea per scene" principle and gives the agent focused context.
Follow this loop for each section:
Expect to spend 10-15 minutes iterating on complex sections (like animated cards or product reveals).
When the agent doesn't know a Remotion API:
# Get markdown version of any Remotion doc page
https://remotion.dev/docs/audio-visualization
→ https://remotion.dev/docs/audio-visualization.md
Paste the markdown into chat. This is faster than the agent searching.
Before asking the agent to build a Remotion video:
the project public/ folder for existing assetsskills/remotion-best-practices/rules/launchpad-animations.md for reusable motion componentspublic/ folder firstProven prompts from remotion.dev/prompts that produce high-quality results:
Source: https://www.remotion.dev/prompts/news-article-headline-highlight Tool: Claude Code (Opus 4.5)
Import a screenshot of a news article, use tesseract CLI for OCR to find text positions, then in Remotion:
Key techniques: OCR positioning, 3D transforms (perspective/rotateX/rotateY), blur animation, rough.js canvas overlay, z-index layering.
Source: https://www.remotion.dev/prompts/travel-route-on-map-with-3d-landmarks Tool: Claude Code (Opus 4.5)
Multi-step travel animation:
Key techniques: Map rendering, camera zoom/pan, animated path/line drawing, 3D object rendering (Three.js/R3F), multi-stop route sequencing.
Use this skills whenever you are dealing with Remotion code to obtain the domain-specific knowledge.
Read individual rule files for detailed explanations and code examples: