Quriosity-agent

videocut-setup

Environment setup. Install dependencies, configure API keys, verify environment. Triggers: install, setup, initialize, 安装, 环境准备, 初始化

Quriosity-agent 27 4 Updated 3mo ago

Resources

1
GitHub

Install

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

  1. Register a Volcengine account
  2. Enable speech recognition service
  3. Get API Key

Configure in project directory .claude/skills/.env:

# File path: <project>/.claude/skills/.env
VOLCENGINE_API_KEY=your_api_key_here

Setup Flow

1. Install Node.js + FFmpeg
       ↓
2. Configure Volcengine API Key
       ↓
3. Verify environment

Execution Steps

1. Install Dependencies

# macOS
brew install node ffmpeg

# Verify
node -v
ffmpeg -version

2. Configure API Key

echo "VOLCENGINE_API_KEY=your_key" >> .claude/skills/.env

3. Verify Environment

node -v
ffmpeg -version
cat .claude/skills/.env | grep VOLCENGINE

FAQ

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 ffmpeg

Q3: Filename with colons causes error

Add file: prefix to FFmpeg commands:

ffmpeg -i "file:2026:01:26 task.mp4" ...