Environment setup. Install dependencies, configure API keys, verify environment. Triggers: install, setup, initialize, 安装, 环境准备, 初始化
Resources
1Install
npx skillscat add quriosity-agent/qcut/videocut-setup Install via the SkillsCat registry.
SKILL.md
Setup
First-time environment preparation
Quick Start
User: Setup the environment
User: Initialize
User: 安装环境Dependencies
| Dependency | Purpose | Install Command |
|---|---|---|
| Node.js | Run scripts | brew install node |
| FFmpeg | Video editing | brew install ffmpeg |
| curl | API calls | Built-in |
API Configuration
Volcengine Speech Recognition
Console: https://console.volcengine.com/speech/new/experience/asr?projectName=default
- Register a Volcengine account
- Enable speech recognition service
- Get API Key
Configure in project directory .claude/skills/.env:
# File path: <project>/.claude/skills/.env
VOLCENGINE_API_KEY=your_api_key_hereSetup Flow
1. Install Node.js + FFmpeg
↓
2. Configure Volcengine API Key
↓
3. Verify environmentExecution Steps
1. Install Dependencies
# macOS
brew install node ffmpeg
# Verify
node -v
ffmpeg -version2. Configure API Key
echo "VOLCENGINE_API_KEY=your_key" >> .claude/skills/.env3. Verify Environment
node -v
ffmpeg -version
cat .claude/skills/.env | grep VOLCENGINEFAQ
Q1: Where to get the API Key?
Volcengine Console → Speech Technology → Speech Recognition → API Key
Q2: ffmpeg command not found
which ffmpeg
# If missing: brew install ffmpegQ3: Filename with colons causes error
Add file: prefix to FFmpeg commands:
ffmpeg -i "file:2026:01:26 task.mp4" ...