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 instructions/mrbuslov/capcut-ai-editor/claude-mdgit clone --depth 1 https://github.com/mrbuslov/capcut-ai-editorWrote 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/instructions/mrbuslov/capcut-ai-editor/claude-md)<a href="https://agentmods.dev/instructions/mrbuslov/capcut-ai-editor/claude-md"><img src="https://agentmods.dev/badge/instructions/mrbuslov/capcut-ai-editor/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.01051 | $0.01051 |
| Opus 5 | $0.00526 | $0.00526 |
| Sonnet 5 | $0.00210 | $0.00210 |
| Haiku 4.5 | $0.00105 | $0.00105 |
Grade A, and why
capcut-ai-editor CLAUDE.md 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 5d 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 — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SmartCut MCP Server — Project Context
What is this?
MCP server for automated "talking head" video editing. Works with Claude Code to:
- Read CapCut's auto-generated subtitles
- Heuristically find silences (gaps > 1 sec between subtitles)
- Detect duplicate takes (keeps the last one)
- Cut directly in the CapCut project (no backups, no copies)
- Optionally use OpenAI GPT for better duplicate detection
Project Structure
src/smartcut/
├── __init__.py # Version
├── config.py # Settings, env vars, constants
├── server.py # MCP server entry point, 8 tools
├── core/
│ ├── models.py # Pydantic models (CapCutSubtitleSegment, etc.)
│ ├── whisper_client.py # OpenAI Whisper API wrapper (optional)
│ ├── llm_client.py # GPT for duplicate detection (optional)
│ ├── ffmpeg_utils.py # FFmpeg audio extraction (optional, for Whisper)
│ ├── capcut_reader.py # CapCut project reader/modifier + subtitle parser
│ └── capcut_finder.py # CapCut project discovery
└── tools/
└── capcut_projects.py # All 8 MCP tools + heuristic analysis engine
Key Files
config.py
Settingsclass with env vars:OPENAI_API_KEY(optional),CAPCUT_DRAFTS_DIR- Constants:
SILENCE_THRESHOLD_SEC = 1.0,DUPLICATE_SIMILARITY_THRESHOLD = 0.6
server.py
- 8 MCP tools:
list_capcut_projects,open_capcut_project,smart_cut_project(original)edit_subtitle,split_subtitle,merge_subtitles,fix_word_timing,batch_edit_subtitles(subtitle corrections)
capcut_reader.py
CapCutProjectclass for loading/modifying existing CapCut projects- Key methods:
load(),save(),get_subtitle_segments(),remove_time_ranges() - Subtitle corrections:
edit_subtitle_text(),edit_subtitle_timing(),split_subtitle(),merge_subtitles(),fix_word_timing() - Reads
draft_info.json(content) anddraft_meta_info.json(metadata)
tools/capcut_projects.py
- Main tool:
smart_cut_project()— the core function - Heuristic engine:
find_gaps(),find_duplicate_takes(),compute_text_similarity() - Subtitle correction wrappers:
edit_subtitle(),split_subtitle(),merge_subtitles(),fix_word_timing(),batch_edit_subtitles() - Optional:
_detect_duplicates_with_llm()for OpenAI-enhanced detection
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.
- 5d ago First seen · 96 lines · 1,051 tokens per session scan A 3b545fd82192
capcut-ai-editor CLAUDE.md is an instructions file published in the GitHub repository mrbuslov/capcut-ai-editor (101 stars, last pushed 2mo ago), licensed MIT. It adds 1,051 tokens to every session, about $0.0053 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 instructions, from other repositories
mediago AGENTS.md
AGENTS.md instructions for mediago-dev/mediago, covering repository guidelines, project structure & module organization, tooling and script placement, documentation site safety and build, test, and development commands.
yutu AGENTS.md
AGENTS.md instructions for eat-pray-ai/yutu, covering yutu, quick reference, directory index, documentation and conventions.
ditherer AGENTS.md
Instructions for gyng/ditherer, covering ditherer — agent guidelines, project overview, architecture, component hierarchy (atomic design) and state management.
overcast CLAUDE.md
Claude Code instructions for kdr/overcast, covering claude.md, what this repo is, stack (pinned), invariants (do not violate) and verb surface.
frameproof AGENTS.md
AGENTS.md instructions for edvardgrishin27/frameproof, covering frameproof, установка and одно правило, которое нельзя обходить.
MatrixMedia AGENTS.md
AGENTS.md instructions for hanliang97/MatrixMedia, covering agents.md, 项目一句话, 关键入口(不要找错), 给 agent 的「how to invoke」契约 and 开发环境.