mit einem Klick
clip-sense
// Guide AI-powered video editing, highlight extraction, silence removal, and talking-head polish through ClipSense.
// Guide AI-powered video editing, highlight extraction, silence removal, and talking-head polish through ClipSense.
Bailian-powered unified creative studio — built-in Wan/Qwen image generation + HappyHorse 1.0 (text-to-video / image-to-video / reference-to-video / video-edit) + Wan 2.6/2.7 + 5 digital-human modes (photo speak / video relip / video reface / pose drive / avatar compose) + CosyVoice & Edge-TTS + storyboard long-video pipeline. Use when the user asks for AI image or video generation on Aliyun Bailian, keyframes, ecommerce images, multi-character video with audio sync, video editing/style transfer, talking-head, lip-sync, video reface, or storyboard-driven long video.
Web search and content extraction with Tavily and Exa via inference.sh CLI. Apps: Tavily Search, Tavily Extract, Exa Search, Exa Answer, Exa Extract. Capabilities: AI-powered search, content extraction, direct answers, research. Use for: research, RAG pipelines, fact-checking, content aggregation, agents. Triggers: web search, tavily, exa, search api, content extraction, research, internet search, ai search, search assistant, web scraping, rag, perplexity alternative
DashScope-powered digital human studio — photo speak, video relip, video reface, avatar compose. Use when the user asks for an AI talking-head video, lip-sync replacement on an existing video, replacing a person inside a video, or composing a new character from multiple reference images.
Research, score, and plan content ideas through the Idea Research plugin.
通过火山引擎 Ark API 生成 AI 视频 — 文生视频、图生视频、多模态、视频编辑、视频续写、长视频分镜拼接。任务异步执行+轮询,成功后可自动下载到本地。
Create, translate, repair, and burn subtitles through the Subtitle Craft plugin.
| name | clip-sense |
| description | Guide AI-powered video editing, highlight extraction, silence removal, and talking-head polish through ClipSense. |
| risk_class | mutating_scoped |
Use this skill when the user wants to:
Keywords: 剪辑, 高光, 静音, 拆条, 口播, 字幕, video edit, clip, trim, silence, highlight
| Tool | Purpose |
|---|---|
clip_sense_create | Create an editing task |
clip_sense_status | Check task status |
clip_sense_list | List recent tasks |
clip_sense_transcribe | Transcribe a video |
clip_sense_cancel | Cancel a running task |
{
"mode": "highlight_extract|silence_clean|topic_split|talking_polish",
"source_video_path": "/path/to/video.mp4",
"flavor": "optional: funny/controversial/informative",
"target_count": 5,
"target_duration": 30,
"threshold_db": -40,
"min_silence_sec": 0.5,
"padding_sec": 0.1,
"burn_subtitle": false
}
{
"id": "abc123def456",
"status": "pending|running|succeeded|failed|cancelled",
"mode": "silence_clean",
"pipeline_step": "setup|check_deps|transcribe|analyze|execute|subtitle|finalize",
"output_path": "/path/to/output.mp4",
"subtitle_path": "/path/to/subtitle.srt",
"error_kind": "network|timeout|auth|...",
"error_message": "...",
"error_hints": ["hint1", "hint2"]
}
| Kind | Meaning | User Action |
|---|---|---|
network | Connection failed | Check network/proxy |
timeout | Task timed out (>15min) | Refresh, may still be running |
auth | Invalid API key | Reconfigure in Settings |
quota | Insufficient balance | Top up at Alibaba Cloud |
moderation | Content flagged | Use different video |
dependency | FFmpeg missing | Install ffmpeg >= 4.0 |
format | Invalid video format | Use MP4/MOV/MKV |
duration | Video too long (>120min) | Trim before upload |
unknown | Unexpected error | Report task_id |
User wants to edit video →
├── "Remove silence/pauses" → silence_clean
├── "Get best parts/highlights" → highlight_extract
├── "Split into chapters/topics" → topic_split
├── "Clean up talking/podcast" → talking_polish
└── Not sure → Ask about the goal, default to highlight_extract
silence_clean: ¥0 (pure local FFmpeg)clip_sense_create mode=highlight_extract source_video_path=/uploads/podcast.mp4 target_count=5 flavor=informative
clip_sense_create mode=silence_clean source_video_path=/uploads/talk.mp4 silence_preset=standard
clip_sense_create mode=topic_split source_video_path=/uploads/lecture.mp4 target_segment_duration=180
# Unit tests (no network)
python -m pytest tests/ -q -m "not integration"
# Integration test (needs DASHSCOPE_API_KEY + ffmpeg)
DASHSCOPE_API_KEY=sk-... python -m pytest tests/integration/ -m integration