Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

reelsmithreelsmith 视频

Agent Skill

reelsmith 用于辅助视频、动画、脚本化剪辑和多媒体生成流程,适合在 OpenClaw 中需要整理视频素材、生成脚本或维护合成项目时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,096

周安装

129

GitHub Stars

公开资料未说明

下载量

1,032
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:reelsmith(reelsmith 视频)
来源仓库:https://github.com/normandmickey/reelsmith
安装命令:
openclaw skills install reelsmith
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install reelsmith

简介

根据想法或源材料创建短格式垂直视频包,含预览与旁白版本。

  • 支持 AI 视频工作流程与多格式输出适配。
  • 适用于内容团队快速原型开发与迭代测试。
  • 需准备清晰的内容主题与视觉参考素材。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 建议分阶段验证效果后再规模化应用。reelsmith 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
reelsmith
description
Create short-form vertical video packages, preview reels, narrated reels, and AI-video workflows from ideas, articles, updates, or source material. Use when the user wants a topic turned into a short-form video concept, hook, script, scene-by-scene plan, on-screen text, caption, cover concept, approval-ready reel package, rough vertical preview video, narrated reel, or an LTX-powered AI video option for Facebook Reels and similar social formats.

Reelsmith

Overview

Use this skill to turn a topic into a Facebook Reels-ready content package. The output should feel like a practical creator workflow, not just a block of text.

Treat the core unit as:

  • hook
  • short script
  • scene breakdown
  • on-screen text
  • caption
  • visual plan
  • approval before posting or production

Core Workflow

  1. Identify the topic and goal.

- Accept sports updates, news summaries, explainers, product demos, quick opinions, event recaps, or promotional ideas. - Figure out whether the reel should: - inform - react - explain - promote - recap

  1. Identify the target style.

- Common modes: - informative - energetic - professional - punchy - promotional - If the user does not specify, default to informative + engaging.

  1. Decide the reel length.

- Default to 30-45 seconds. - Shorter is usually better unless the topic clearly needs more room.

  1. Write a strong hook.

- The first line should make the viewer care immediately. - Prefer clarity over empty hype. - Hooks should sound natural when spoken aloud.

  1. Build the short-form script.

- Keep sentences short and speakable. - Avoid overloading the reel with too many facts. - Focus on the strongest 2-4 points only.

  1. Break the script into scenes.

- Each scene should have: - what is being said - what is shown - optional on-screen text - Prefer 4-7 scenes for a normal reel.

  1. Add packaging elements.

- Include: - caption - light hashtag suggestions - cover/thumbnail concept - optional visual prompt ideas

  1. Keep it approval-first.

- Do not assume the user wants to publish immediately. - Present the reel package clearly so it can be reviewed, revised, or later turned into a produced video.

Output Format

Unless the user asks for something else, use this structure:

Reel concept: [one-line concept] Tone: [tone] Length: [estimated seconds]

Hook [hook]

Script [full short-form script]

Scene breakdown

  1. [scene 1 visual + spoken line + on-screen text]
  2. [scene 2 visual + spoken line + on-screen text]
  3. [scene 3 visual + spoken line + on-screen text]

Caption [caption]

Hashtags [list]

Cover concept [headline + visual direction]

Approval status Awaiting user approval before production or publishing

Writing Rules

  • Optimize for spoken clarity.
  • Write in a way that sounds natural aloud.
  • Keep hooks sharp.
  • Avoid bloated intros.
  • Avoid stuffing too many facts into a short reel.
  • Prefer memorable structure over exhaustive detail.

Reel-Specific Guidance

  • Strong reel openings usually happen in the first 1-2 lines.
  • Good reels often work best when they answer one clear question.
  • If the topic is dense, simplify instead of cramming.
  • If the user wants more depth, create a series or a longer script rather than overpacking one reel.

Visual Guidance

If the user wants visuals, offer:

  • scene image concepts
  • thumbnail/cover concept
  • on-screen headline text
  • optional B-roll ideas

Do not assume full video automation exists yet. In v1, focus on producing a strong reel package that could later be recorded, edited, or automated.

Preview Generation

There are now two preview paths:

1. Text-card preview

A simple preview path can use scripts/make_reel_preview.py to turn scene text into a rough vertical MP4 preview. This is for pacing and structure review, not final polished production.

Example flow:

  1. save scene text into a file with one scene per paragraph
  2. run:
python3 scripts/make_reel_preview.py --title "My Reel" --scenes-file scenes.txt --output preview.mp4

2. Visual scene preview

For a less slideshow-like reel, use scripts/make_visual_reel_preview.py with scene JSON that points to per-scene background images. This keeps the old workflow intact while allowing a more video-like look with motion backgrounds and lighter text overlay.

Scene JSON shape:

[
  {"bg": "/path/to/image1.png", "title": "Main title", "subtitle": "Short support line", "duration": 5.0},
  {"bg": "/path/to/image2.png", "title": "Next beat", "subtitle": "Another short line", "duration": 5.0}
]

Run:

python3 scripts/make_visual_reel_preview.py --scenes-json scenes.json --output preview.mp4

Voiceover-Ready Workflow

The next production layer can add narration audio, then mux it with the preview video.

Current helpers:

  • scripts/openai_tts.py
  • scripts/mux_reel_audio.py

Example flow:

  1. generate narration audio with OpenAI TTS
python3 scripts/openai_tts.py --text "Your reel narration" --style energetic --output narration.mp3
  1. mux it with the preview video
python3 scripts/mux_reel_audio.py --video preview.mp4 --audio narration.mp3 --output preview-with-audio.mp4

Expected env var:

  • OPENAI_API_KEY

Current voice style presets:

  • default
  • calm
  • professional
  • energetic
  • confident
  • broadcast

For sports and fast-moving updates, prefer:

  • energetic
  • broadcast
  • confident

This keeps voiceover modular: script generation, preview assembly, narration generation, then final mux.

LTX Video Backend (Optional)

For a true AI-generated video option, Reelsmith can also use LTX via API instead of the local ffmpeg preview path.

Current helper:

  • scripts/ltx_text_to_video.py

Example:

python3 scripts/ltx_text_to_video.py \
  --prompt "A cinematic vertical sports video showing a high-stakes college basketball showdown, dramatic arena lighting, crowd energy, and bold camera movement" \
  --duration 8 \
  --resolution 1080x1920 \
  --output ltx-video.mp4

Expected env var:

  • LTX_API_KEY

Recommended starting defaults:

  • model: ltx-2-3-fast
  • resolution: 1080x1920
  • duration: 8 or 10

Use LTX mode when the user wants a reel to feel like a generated video instead of a slide-based preview.

Suggested Next Steps

After generating a reel package, offer one useful next step such as:

  • "Want a punchier hook?"
  • "Want this turned into a 20-second version?"
  • "Want a matching cover image?"
  • "Want a rough preview video?"
  • "Want this adapted for YouTube Shorts too?"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.49%
按下载量换算862

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills