.claude/skills/videocut/安装/SKILL.md
环境准备。安装依赖、配置 API Key、验证环境。触发词:安装、环境准备、初始化
npx skillsauth add xqt2023-ux/Description videocut:安装Install this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
首次使用前的环境准备
用户: 安装环境
用户: 初始化
| 依赖 | 用途 | 安装命令 |
|------|------|----------|
| Node.js | 运行脚本 | brew install node |
| FFmpeg | 视频剪辑 | brew install ffmpeg |
| curl | API 调用 | 系统自带 |
控制台:https://console.volcengine.com/speech/new/experience/asr?projectName=default
配置到项目目录 .claude/skills/.env:
# 文件路径:剪辑Agent/.claude/skills/.env
VOLCENGINE_API_KEY=your_api_key_here
1. 安装 Node.js + FFmpeg
↓
2. 配置火山引擎 API Key
↓
3. 验证环境
# macOS
brew install node ffmpeg
# 验证
node -v
ffmpeg -version
# 在项目 .claude/skills/ 目录下创建 .env 文件
echo "VOLCENGINE_API_KEY=your_key" >> .claude/skills/.env
# 检查 Node.js
node -v
# 检查 FFmpeg
ffmpeg -version
# 检查 API Key(在项目目录下执行)
cat .claude/skills/.env | grep VOLCENGINE
火山引擎控制台 → 语音技术 → 语音识别 → API Key
which ffmpeg # 应该输出路径
# 如果没有,重新安装:brew install ffmpeg
FFmpeg 命令需加 file: 前缀:
ffmpeg -i "file:2026:01:26 task.mp4" ...
development
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
tools
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.