Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问许可证需确认审计异常

tuzi-short-video兔子短视频

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

3,584

周安装

145

GitHub Stars

33

下载量

1,125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tuziapi/tuzi-skills --skill tuzi-short-video

简介

用于辅助视频生成和动画合成,支持镜头组织和素材说明生成。

  • 适用于 Remotion 等项目开发和渲染问题排查。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 需确认分辨率、时长和导出格式;涉及外部素材或人物肖像时需核对版权授权。
  • 建议查阅原始 README 了解支持的格式和素材要求。

SKILL.md

Short Video Creator

Creates short videos for social media platforms. Analyzes content, adapts to platform specs, generates prompts, and calls tuzi-video-gen backend.

Script Directory

This is a workflow-only skill (no scripts). It delegates video generation to tuzi-video-gen.

VIDEO_GEN_DIR: Resolve from skills/tuzi-video-gen/SKILL.md relative to project root.

Step 0: Load Preferences ⛔ BLOCKING

CRITICAL: This step MUST complete BEFORE any video generation.

0.1 Check API Key

echo "${TUZI_API_KEY:-not_set}"
grep -s TUZI_API_KEY .tuzi-skills/.env "$HOME/.tuzi-skills/.env"
ResultAction
Key foundContinue to Step 0.2
Key NOT found⛔ Run API key setup (see references/config/first-time-setup.md)

0.2 Check EXTEND.md

test -f .tuzi-skills/tuzi-short-video/EXTEND.md && echo "project"
test -f "$HOME/.tuzi-skills/tuzi-short-video/EXTEND.md" && echo "user"
ResultAction
FoundLoad, parse, apply settings
Not found⛔ Run first-time setup (references/config/first-time-setup.md)
PathLocation
.tuzi-skills/tuzi-short-video/EXTEND.mdProject directory
$HOME/.tuzi-skills/tuzi-short-video/EXTEND.mdUser home

EXTEND.md Supports: Default platform | Default model

Schema: references/config/preferences-schema.md

Step 1: Analyze User Input

Analyze the user's content (text, article, script, topic description):

  • Identify main topic and key points
  • Determine content type (tutorial, story, showcase, explainer)
  • Estimate ideal video length and segment count

Step 2: Confirm Platform and Parameters

Use AskUserQuestion to let user choose target platform (unless specified or saved in EXTEND.md):

header: "Target Platform"
question: "目标发布平台?"
options:
  - label: "小红书"
    description: "9:16 竖屏, 720x1280"
  - label: "抖音"
    description: "9:16 竖屏, 1080x1920"
  - label: "X/Twitter"
    description: "16:9 横屏, 1280x720"
  - label: "视频号"
    description: "9:16/16:9, 1080x1920"

Platform Presets

PlatformAspectSizeDurationNotes
小红书9:16720x128015-60s竖屏短视频
抖音9:161080x192015-60s竖屏,高分辨率
X/Twitter16:91280x7205-140s横屏为主
视频号9:161080x192015-60s竖屏优先

Platform details: See references/platforms/

Step 3: Generate Video Script

Based on content analysis and platform:

Single Video (content fits one clip)

  1. Write a detailed video generation prompt in English
  2. Include: visual scenes, camera movements, style, mood, lighting
  3. Save prompt to prompts/01-video-prompt.md

Long Video (content needs multiple segments)

  1. Split content into logical segments (opening + body + ending)
  2. Write per-segment prompts with continuity notes
  3. Save to prompts/01-segment-opening.md, 02-segment-main.md, etc.

Workflow details: See references/workflows/

Step 4: Generate Video

Single Video

npx -y bun ${VIDEO_GEN_DIR}/scripts/main.ts \
  --promptfiles <output-dir>/prompts/01-video-prompt.md \
  --video <output-dir>/01-video-<slug>.mp4 \
  --size <platform-size> \
  --seconds <duration>

Long Video

npx -y bun ${VIDEO_GEN_DIR}/scripts/main.ts \
  --video <output-dir>/01-video-<slug>.mp4 \
  --segments <N> \
  --segment-prompts <output-dir>/prompts/01-segment-opening.md <output-dir>/prompts/02-segment-main.md ... \
  --size <platform-size> \
  --seconds <per-segment-seconds>

Step 5: Completion Report

Display:

  • Output video path
  • Platform and specs used
  • Model used
  • Duration

Output Directory

short-video/{topic-slug}/
├── source-{slug}.md
├── prompts/
│   ├── 01-video-prompt.md          (single video)
│   ├── 01-segment-opening.md       (long video)
│   ├── 02-segment-main.md
│   └── 03-segment-ending.md
├── segments/                        (long video temp, cleaned up)
└── 01-video-{slug}.mp4             (final output)

Extension Support

Custom configurations via EXTEND.md. See Step 0 for paths and supported options.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

34.17%
按下载量换算384

Codex

33.98%
按下载量换算382

Cursor

18.34%
按下载量换算206

Gemini CLI

9.86%
按下载量换算111

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills