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 agentmods add skills/renezander030/capcut-cli/capcut-editnpx skills add renezander030/capcut-cli --skill capcut-editgit clone --depth 1 https://github.com/renezander030/capcut-cliWhat 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 | $0.00072 | $0.01379 |
| Opus 5 | $0.00036 | $0.00690 |
| Sonnet 5 | $0.00014 | $0.00276 |
| Haiku 4.5 | $0.00007 | $0.00138 |
Grade A, and why
capcut-edit 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 2d 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 — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.
capcut-edit
CLI for editing CapCut / JianYing drafts through a version-aware store. v0.11 detects and synchronizes readable timelines across draft_content.json, draft_info.json, draft_meta_info.json, and template-2.tmp.
Project locations
- macOS:
~/Movies/CapCut/User Data/Projects/com.lveditor.draft/<project>/ - Windows:
%LOCALAPPDATA%\CapCut\User Data\Projects\com.lveditor.draft\<project>\
Core principle — deterministic scripts
Any recipe involving more than one capcut call, any arithmetic, or any branching ships as a parameterised shell script in scripts/. Claude invokes the script with inputs; the script runs a fixed sequence. If a recipe can be a script, it must be a script — not a narrative in references/.
references/workflows.md documents which script to call and why, never a reconstructable sequence.
Progressive disclosure
Start broad, drill into what you need. Never dump full project JSON.
capcut info <project> -H # overview
capcut doctor -H # installed media/transcription capabilities
capcut diagnose <project> -H # canonical files, divergence, editor safety
capcut tracks <project> -H # all tracks
capcut materials <project> -H # material summary
capcut segments <project> -H # segments with timing
capcut segment <project> <id> # one item, full detail
Output modes
- JSON (default): pipe to
jq, feed to scripts. -H: human-readable tables.-q: quiet, exit code only — for write commands in scripts.
Batch writes
echo '{"cmd":"set-text","id":"a1b2c3","text":"Fixed"}
{"cmd":"volume","id":"d4e5f6","volume":0.5}' | capcut batch <project>
Operations: set-text, shift, shift-all, speed, volume, opacity, trim.
Batch is transactional: one failing operation writes nothing. Use --continue-on-error only when the user explicitly accepts a partial commit; it still exits non-zero.
Where to look
What ships with it
13 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.
- assets/animations.json 2.9 KB
- assets/examples/ken-burns.jsonl 314 B
- assets/examples/subscribe-cta.json 2.8 KB
- references/api-reference.md 25 KB
- references/pitfalls.md 5.0 KB
- references/workflows.md 4.1 KB
- scripts/_test.sh 21 KB runs code
- scripts/anim.sh 5.9 KB runs code
- scripts/fade-in.sh 700 B runs code
- scripts/fade-out.sh 773 B runs code
- scripts/ken-burns.sh 2.0 KB runs code
- scripts/long-to-short.sh 2.0 KB runs code
- scripts/stamp-cta.sh 1.2 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.
- 2d ago First seen · 84 lines · 72 tokens per session scan A 6e41b0ddcb5f
capcut-edit is a skill published in the GitHub repository renezander030/capcut-cli (395 stars, last pushed 2d ago), licensed MIT. It adds 72 tokens to every session and 1,379 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
jianying-editor-skill
Generate JianyingPro/CapCut draft folders on Mac that appear in the draft list. Creates draftcontent.json + draftmetainfo.json, then adds all Mac-required supporting files.
talking-head-edit
Edit interviews, lessons, commentary, podcasts, and direct-to-camera recordings built around speech. Use it to remove dead air, filler words, false starts, repeated lines, and discarded retakes while preserving natural delivery and keeping captions aligned. When the user asks for visual enhancement, also use it for…
rough-cut-wiki-video
Create editable rough cuts for any step-by-step tutorial from MP4/MOV footage plus pasted procedure text or a text/Markdown guide. Use for how-to videos, assembly or repair, crafts, cooking, product demonstrations, workplace procedures, training, unboxing, speech-cue trimming, filename ordering, procedure-grounded…
nle-export
Hand a PromptCut storyboard or a hand-written timeline to Adobe Premiere Pro, DaVinci Resolve or VEGAS Pro as an editable project - clips with Ken Burns keyframes, voiceover, ducked music, sfx, titles, markers and SRT subtitles. Also the knowledge base for advising the person about those editors - importing, relinking…
video-toolbox
Build and edit video from a prompt - storyboard, AI images or stock footage, TTS voiceover, Ken Burns motion with focus zoom, callout annotations, typography cards, music with ducking, subtitles, ffmpeg render, CapCut draft export, Premiere Pro / DaVinci Resolve / VEGAS Pro project export. Also finds and downloads…
capcut-draft
Build a CapCut project (draft) programmatically - tracks, clips, transitions, animations, filters, masks, video and audio effects, keyframes, styled text and imported SRT subtitles. Use when the person wants the edit inside CapCut instead of a finished mp4, or wants to tweak an assembled video by hand.