bggg-tiktok-cut

bggg-tiktok-cut is a skill for Claude Code, Codex from binggandata/bggg-skills. It costs 134 tokens per session (1,699 once invoked), scanned A, original, MIT.

A workflow for turning source videos or other footage into vertical TikTok, Reels, or Shorts videos, with cuts, captions, music, and overlays.

In plain words
What is it for?
Use it to make 9:16 videos, remove empty sections, add large subtitles or hooks, mix background music, and export a final MP4.
Why use it?
It organizes the editing process and makes it easier to prepare footage for short-form publishing in a consistent format.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex.

Good fit Use it to make 9:16 videos, remove empty sections, add large subtitles or hooks, mix background music, and export a final MP4.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/binggandata/bggg-skills/bggg-tiktok-cut
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add binggandata/bggg-skills --skill bggg-tiktok-cut
Clone the repo
git clone --depth 1 https://github.com/binggandata/bggg-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bggg-tiktok-cut

README.md
[![agentmods](https://agentmods.dev/badge/skills/binggandata/bggg-skills/bggg-tiktok-cut/github.svg)](https://agentmods.dev/skills/binggandata/bggg-skills/bggg-tiktok-cut)
Your own site
<a href="https://agentmods.dev/skills/binggandata/bggg-skills/bggg-tiktok-cut"><img src="https://agentmods.dev/badge/skills/binggandata/bggg-skills/bggg-tiktok-cut/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for bggg-tiktok-cut

Your own site · 80×15
<a href="https://agentmods.dev/skills/binggandata/bggg-skills/bggg-tiktok-cut"><img src="https://agentmods.dev/badge/skills/binggandata/bggg-skills/bggg-tiktok-cut.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 134 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,699 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00134 $0.01699
Opus 5 $0.00067 $0.00849
Sonnet 5 $0.00027 $0.00340
Haiku 4.5 $0.00013 $0.00170

Measured 12d ago against content hash 703b5e3a31be, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

bggg-tiktok-cut scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/init_project.py, scripts/make_plan.py, scripts/media_common.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

bggg-tiktok-cut/SKILL.md · 109 lines

How it starts

The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.

BGGG TikTok Cut

把 AI 生成的视频剪成 TikTok 可发布的 9:16 成片。Codex 负责判断故事、节奏、画面瑕疵和字幕文案;脚本负责可重复的 FFmpeg 渲染。

快速流程

  1. 定位输入:确认视频文件、素材文件夹、BGM、字幕/SRT、产品卖点或脚本。用户没有给完整参数时,先按 TikTok 默认值推进:1080x1920、30fps、15-45 秒、前 1-3 秒强 hook、大字字幕、轻 BGM。
  2. 建项目:把本次产物收进一个项目目录,避免散落在工作区。
    python3 <skill-dir>/scripts/init_project.py "<project-dir>" --name "<name>" --inputs "<video1>" "<video2>"
    
  3. 探测素材:生成 media inventory 和抽帧,用抽帧判断 AI 视频的坏帧、主体位置、适合 cover 还是 blur-bg。
    python3 <skill-dir>/scripts/probe_media.py "<project-dir>/raw" --out "<project-dir>/metadata/media_inventory.json" --frames-dir "<project-dir>/diagnostics/frames"
    
  4. 需要语音时转写:有口播/旁白时生成 JSON/SRT;无语音的 AI 视频可直接根据脚本写 captions/overlays。
    python3 <skill-dir>/scripts/transcribe.py "<project-dir>/raw/source.mp4" --out-dir "<project-dir>/transcripts" --model small --language auto
    
  5. 写剪辑计划:编辑 plans/edit_plan.template.json,或先生成 starter plan 再修改。
    python3 <skill-dir>/scripts/make_plan.py "<project-dir>" --title "<hook>" --target-seconds 30
    
  6. 渲染
    python3 <skill-dir>/scripts/render_tiktok_cut.py "<project-dir>/plans/edit_plan.json"
    
  7. 自检:用 ffprobe 验证输出尺寸、时长、音频;抽查开头、字幕密集处、结尾。如果字幕被 TikTok UI 安全区遮挡、画面主体被裁掉、音频爆音或 BGM 过响,改 plan 后重渲染。

剪辑判断

  • AI 视频优先看画面连续性:删掉变形手、漂移 logo、字幕穿帮、闪帧、明显循环卡顿和主体出框的片段。
  • 前 3 秒要给理由:用画面强动作、结果预览、反差句、价格/痛点/卖点 overlay 之一开场。不要用慢慢铺垫。
  • 竖屏重构图默认 blur-bg:横屏或宽画幅 AI 视频用模糊背景保留完整主体;主体稳定且足够大时用 cover;需要展示全图时用 contain
  • 字幕安全区:字幕默认放在中下区域,避开 TikTok 底部描述区和右侧操作栏。价格、优惠、CTA 放顶部或中部 badge。
  • BGM 是辅助:有口播时 BGM 轻铺,默认 0.08-0.14;无口播的视觉向视频可提高到 0.18-0.28,但避免压过关键音效。
  • 批量剪辑:每条视频单独建项目或在同一项目中保存多个 plans/*.json,输出命名带产品/角度/序号。

Edit Plan

渲染脚本读取 JSON plan。需要详细字段时读 references/edit-plan-schema.md

最小可用示例:

{
  "version": 1,
  "project": {
    "title": "TikTok cut",
    "platform": "tiktok",
    "target": {"width": 1080, "height": 1920, "fps": 30}
  },
  "settings": {
    "fit": "blur-bg",
    "grade": "punch",
    "caption_style": "tiktok-bold",
    "voice_volume": 1.0,
    "output_name": "final_tiktok.mp4"
  },
  "clips": [
    {"source": "raw/clip.mp4", "start": 0.0, "end": 6.2, "fit": "blur-bg", "label": "HOOK"}
  ],
  "captions": [
    {"start": 0.0, "end": 2.4, "text": "第一眼就要看到结果", "style": "hook"}
  ],
  "overlays": [
    {"start": 0.0, "end": 2.4, "text": "AI 视频二创", "style": "hook"}
  ],
  "bgm": {"path": "assets/bgm/music.mp3", "volume": 0.12},
  "export": {"crf": 20, "preset": "fast"}
}

Read the full file on GitHub · 109 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 109 lines · 134 tokens per session scan A 703b5e3a31be

Subscribe to this mod's changes

bggg-tiktok-cut is a skill published in the GitHub repository binggandata/bggg-skills (594 stars, last pushed 1mo ago), licensed MIT. It adds 134 tokens to every session and 1,699 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens