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.
npx skills add binggandata/bggg-skills --skill bggg-tiktok-capcutgit clone --depth 1 https://github.com/binggandata/bggg-skillsWrote 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.
[](https://agentmods.dev/skills/binggandata/bggg-skills/bggg-tiktok-capcut)<a href="https://agentmods.dev/skills/binggandata/bggg-skills/bggg-tiktok-capcut"><img src="https://agentmods.dev/badge/skills/binggandata/bggg-skills/bggg-tiktok-capcut/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.
<a href="https://agentmods.dev/skills/binggandata/bggg-skills/bggg-tiktok-capcut"><img src="https://agentmods.dev/badge/skills/binggandata/bggg-skills/bggg-tiktok-capcut.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00089 | $0.01384 |
| Opus 5 | $0.00044 | $0.00692 |
| Sonnet 5 | $0.00018 | $0.00277 |
| Haiku 4.5 | $0.00009 | $0.00138 |
Grade A, and why
bggg-tiktok-capcut 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 13d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 160 lines — stays where its author put it; the contents beside it link to each section on GitHub.
BGGG TikTok CapCut
这个 skill 只保留通用能力:
- 基于现有 CapCut 草稿模板生成新草稿
- 提取模板里的字幕样式、转场、动画、特效
- 验证草稿是否会被 CapCut 索引并显示
- 对 AI 视频或 CapCut 草稿抽帧做 AI 痕迹检查
- 为明显 AI 痕迹生成修复窗口
- 用本地 RIFE 做高质量补帧预处理
默认 CapCut 草稿根目录:
$HOME/Movies/CapCut/User Data/Projects/com.lveditor.draft
如果你的 CapCut 草稿目录不同,设置 CAPCUT_DRAFT_ROOT 或给脚本传 --output-dir / --draft-root。
生成草稿
node <skill-dir>/scripts/create-capcut-draft.mjs \
--template "PL-magicrep-PV-001" \
--video "/path/to/ai-video.mp4" \
--name "ai-video-capcut-001" \
--captions "Line 1\nLine 2\nLine 3" \
--split-at 7.5
常用参数:
| 参数 | 说明 |
|---|---|
--template |
已存在的 CapCut 草稿目录名 |
--video |
本地 AI 视频路径 |
--name |
新草稿目录名和首页显示名 |
--captions |
字幕文本,可用 \n 分行 |
--srt |
SRT 字幕文件,替代 --captions |
--split-at |
视频切分点,转场会挂在切点前一段 |
--no-transition |
不复制模板转场 |
--no-captions |
不生成字幕轨道 |
--output-dir |
自定义 CapCut 草稿根目录 |
--force |
同名草稿已存在时先替换 |
脚本会同步这些 CapCut 会读取的文件,避免草稿目录存在但首页不显示:
draft_info.jsondraft_meta_info.jsondraft_info.json.baktemplate-2.tmpTimelines/project.jsonTimelines/<draft_info.id>/draft_info.jsonTimelines/<draft_info.id>/template.tmpTimelines/<draft_info.id>/template-2.tmproot_meta_info.json
生成后如果 CapCut 已打开,完全退出再打开,让首页重新加载 root_meta_info.json。
验证草稿
node <skill-dir>/scripts/validate-capcut-draft.mjs \
--draft "ai-video-capcut-001" \
--stale-marker "OLD_TEMPLATE_NAME"
验证点包括:
- root 索引是否有对应条目
draft_info.id与Timelines/<id>、project.json是否一致- 顶层和嵌套
draft_info/template副本是否同步 - 视频素材路径是否存在
- 是否有旧模板名或旧素材路径残留
提取模板样式
node <skill-dir>/scripts/extract-template-styles.mjs \
--template "PL-magicrep-PV-001" \
--output ./capcut-template-styles.json
输出包含字幕样式、转场、动画、特效、画布和轨道结构。
AI 痕迹检查
对单个视频抽帧:
node <skill-dir>/scripts/extract-ai-artifact-frames.mjs \
--video "/path/to/ai-video.mp4" \
--output-root ./ai-artifact-qa
对 CapCut 草稿时间线抽帧:
node <skill-dir>/scripts/extract-ai-artifact-frames.mjs \
--draft "ai-video-capcut-001" \
--output-root ./ai-artifact-qa
What ships with it
15 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/openai.yaml 321 B
- evals/evals.json 1.4 KB
- projects/.gitkeep 0 B
- README_EN.md 1.7 KB
- README.md 1.7 KB
- references/ai-artifact-qa.md 4.5 KB
- references/failure-modes.md 2.4 KB
- references/production-playbook.md 2.7 KB
- references/smart-frame-interpolation.md 2.4 KB
- scripts/create-capcut-draft.mjs 35 KB runs code
- scripts/extract-ai-artifact-frames.mjs 9.9 KB runs code
- scripts/extract-template-styles.mjs 5.8 KB runs code
- scripts/plan-ai-artifact-fixes.mjs 5.0 KB runs code
- scripts/smart-frame-interpolate.mjs 15 KB runs code
- scripts/validate-capcut-draft.mjs 7.5 KB runs code
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.
- 13d ago First seen · 160 lines · 89 tokens per session scan A 8f77f4204560
bggg-tiktok-capcut is a skill published in the GitHub repository binggandata/bggg-skills (594 stars, last pushed 1mo ago), licensed MIT. It adds 89 tokens to every session and 1,384 once invoked, about $0.0004 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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
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…
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…
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.
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…
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…