Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/AX-Surfers/vibecutnpx agentmods add skills/ax-surfers/vibecut/vibecut-setupWrote 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/ax-surfers/vibecut/vibecut-setup)<a href="https://agentmods.dev/skills/ax-surfers/vibecut/vibecut-setup"><img src="https://agentmods.dev/badge/skills/ax-surfers/vibecut/vibecut-setup/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/ax-surfers/vibecut/vibecut-setup"><img src="https://agentmods.dev/badge/skills/ax-surfers/vibecut/vibecut-setup.svg" alt="Reviewed on agentmods" width="80" 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.00093 | $0.01209 |
| Opus 5 | $0.00046 | $0.00605 |
| Sonnet 5 | $0.00019 | $0.00242 |
| Haiku 4.5 | $0.00009 | $0.00121 |
Grade D, and why
vibecut-setup scanned grade D with 3 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 8d 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
which uv || curl -LsSf https://astral.sh/uv/install.sh | sh # macOS/Linux Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
SCRIPTS=$(find "${HOME}/.claude/plugins/cache/vibecut" -name "capcut_editor.py" -maxdepth 8 2>/dev/null | head -1 | xargs dirname 2>/dev/null) Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
which uv || curl -LsSf https://astral.sh/uv/install.sh | sh # macOS/Linux How it starts
The opening of the file, as written. The whole thing — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.
vibecut-setup 스킬
플러그인 설치 후 한 번만 실행하면 이후 모든 스킬이 별도 설정 없이 동작합니다.
실제 진단 로직(uv/ffmpeg 확인, CapCut 경로 탐지, 의존성 설치, config 저장)은
scripts/doctor.py에 있습니다 — macOS·Windows 모두 순수 Python으로 동작합니다.
이 스킬은 그 doctor.py를 어떤 설치 경로(Claude Code 플러그인, Codex CLI,
수동 클론)에서도 찾아서 실행하는 역할만 합니다.
처리 흐름
[1] scripts 디렉토리 확보 (config → 플러그인 캐시 → git clone 순으로 탐색)
[2] uv run scripts/doctor.py 실행
├─ uv 설치 확인 → 없으면 안내
├─ ffmpeg 확인 → 없으면 설치 안내 (경고만, 중단하지 않음)
├─ 플랫폼별 CapCut 프로젝트 디렉토리 탐지
├─ uv sync — Python 의존성 사전 설치
└─ ~/.vibecut/config.json 저장 (scripts_dir, platform, capcut_projects_dir)
[3] 완료 보고
실행 절차
1단계: scripts 디렉토리 확보
VIBECUT_CONFIG="${HOME}/.vibecut/config.json"
SCRIPTS=""
if [ -f "${VIBECUT_CONFIG}" ]; then
SCRIPTS=$(python3 -c "import json; print(json.load(open('${VIBECUT_CONFIG}')).get('scripts_dir',''))" 2>/dev/null)
fi
if [ -z "${SCRIPTS}" ]; then
# Claude Code 플러그인으로 설치된 경우 — 플러그인 캐시에 scripts/가 함께 딸려옴
SCRIPTS=$(find "${HOME}/.claude/plugins/cache/vibecut" -name "capcut_editor.py" -maxdepth 8 2>/dev/null | head -1 | xargs dirname 2>/dev/null)
fi
if [ -z "${SCRIPTS}" ]; then
# Codex CLI 등 스킬 폴더만 설치된 경우 — 저장소를 직접 받아 scripts/를 확보
APP_DIR="${HOME}/.vibecut/app"
echo "Vibecut 저장소를 ${APP_DIR}에 내려받습니다..."
if [ -d "${APP_DIR}/.git" ]; then
git -C "${APP_DIR}" pull --ff-only
else
git clone --depth 1 https://github.com/AX-Surfers/Vibecut.git "${APP_DIR}"
fi
[ -f "${APP_DIR}/scripts/capcut_editor.py" ] && SCRIPTS="${APP_DIR}/scripts"
fi
if [ -z "${SCRIPTS}" ]; then
echo "❌ scripts 디렉토리를 찾을 수 없습니다."
echo " 플러그인이 설치됐는지 확인하세요: /plugin install vibecut@vibecut"
echo " 또는 git이 설치되어 있는지 확인하세요."
exit 1
fi
echo "✅ scripts 경로: ${SCRIPTS}"
2단계: doctor.py 실행
uv run "${SCRIPTS}/doctor.py"
이 한 번의 호출로 uv/ffmpeg 확인, 플랫폼별 CapCut 프로젝트 디렉토리 탐지,
uv sync, ~/.vibecut/config.json 저장이 모두 처리됩니다. uv가 아직 없다면
먼저 설치를 안내합니다:
which uv || curl -LsSf https://astral.sh/uv/install.sh | sh # macOS/Linux
# Windows: powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
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.
- 8d ago First seen · 112 lines · 93 tokens per session scan D 7d8012b6c7bf
vibecut-setup is a skill published in the GitHub repository AX-Surfers/vibecut (2 stars, last pushed 5d ago), licensed MIT. It adds 93 tokens to every session and 1,209 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it D with 3 findings (downloads and executes remote code, reads agent configuration directories, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
webgl-holographic-foil
A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.
general-video
Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…
html-ppt-hermes-cyber-terminal
OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.
html-ppt-taste-brutalist
16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).
diagnostic-stem-delivery
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.
chengfeng-check-updates
An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.