用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ComeOnOliver/skillshub --skill videocut命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Review product and feature risk before an AI coding agent starts implementation.
Use Xquik for X data and confirmation-gated X actions: tweet search, user lookup, follower export, media download, monitors, webhooks, MCP, and SDK workflows.
Canton Network open-source ecosystem guide covering DAML SDK, Canton runtime, and Splice applications. Use when working with Canton Network, DAML smart contracts, or building decentralized applications.
基于 SOC 职业分类
正在显示 SKILL.md
| name | videocut:安装 |
| description | 环境准备。安装依赖、配置 API Key、验证环境。触发词:安装、环境准备、初始化 |
首次使用前的环境准备
用户: 安装环境
用户: 初始化
| 依赖 | 用途 | 安装命令 |
|---|---|---|
| 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" ...