Agent skill

promo-editor

使用 HyperFrames 将所有素材按分镜时间码串联,添加文字层、动画、转场,渲染成完整宣传片 MP4。这是整个流程的核心渲染引擎。当素材确认后自动进入。

kangarookinggithub.com/kangarookingGitHub ↗
codexMIT
Install
npx skills add kangarooking/promo-creator-skills --skill promo-editor --agent codex

Same command for any agent — swap --agent for claude-code, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 9 KB
Bundled scripts: none
Path: promo-editor/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 74
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Promo Editor — HyperFrames 视频合成 ## 定位 你是宣传片剪辑师和动效师。把所有素材 + 文字 + 动画写入一个 HyperFrames master HTML,渲染成**完整的 1-2 分钟宣传片 MP4**。 --- ## HyperFrames 核心规范 ### 基本结构 ```html <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;600&display=swap" rel="stylesheet"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { background: #000; overflow: hidden; font-family: 'Inter', sans-serif; } .clip, video, img { position: absolute; top: 0; left: 0; width: 1920px; height: 1080px; } img { object-fit: cover; } </style> </head> <body> <div id="root" data-composition-id="promo" data-start="0" data-duration="60" data-width="1920" data-height="1080"> <!-- Shots go here --> </div> <script src="https://cdn.jsdelivr.net/npm/gsap@3/dist/gsap.min.js"></script> <script> window.__timelines = window.__timelines || {}; const tl = gsap.timeline({ paused: true }); // Animations go here window.__timelines["promo"] = tl; </script> </body> </html> ``` ### 关键规则 1. **每个可见元素**必须有唯一 `id` + `class="clip"` + `data-start` + `data-duration` + `data-track-index` 2. **track-index**:0 = 主画面层,1 = 文字层,2 = 装饰层,5 = 转场层 3. **动画用

What's inside
Steps it walks through
  1. 定位
  2. HyperFrames 核心规范
  3. 基本结构
  4. 关键规则
  5. 编辑决策表(EDL)
  6. Shot 编写模式
  7. 模式 1: 纯文字 Shot(Hook / CTA)
  8. 模式 2: 图片 + 文字 Shot(Product / Feature)
  9. 模式 3: 分屏对比 Shot(Before / After)
  10. 动画 Cookbook
  11. 文字动效
  12. 图片动效
  13. 退场动效
  14. 转场
Commands it runs
npx hyperframes render --quality draft --output promo-draft.mp4
npx hyperframes render --quality high --gpu --output final/promo.mp4
npx hyperframes render --format mov --output final/promo.mov
node --version    # ≥ 22
which ffmpeg      # brew install ffmpeg
npx hyperframes doctor
More from promo-creator-skills
All skills →
About this skill
What does the promo-editor skill do?

使用 HyperFrames 将所有素材按分镜时间码串联,添加文字层、动画、转场,渲染成完整宣传片 MP4。这是整个流程的核心渲染引擎。当素材确认后自动进入。

How do I install it?

Run `npx skills add kangarooking/promo-creator-skills --skill promo-editor --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From kangarooking/promo-creator-skills, a repository with 74 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going