From sundial-org-awesome-openclaw-skills-4
Processes audio/video semantically: trims clips by query, isolates vocals, dubs into other languages from YouTube URLs or local files.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
This is a specialized tool that performs **semantic media processing**. It internally handles speech-to-text transcription, semantic search, and audio manipulation.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
This is a specialized tool that performs semantic media processing. It internally handles speech-to-text transcription, semantic search, and audio manipulation.
Activate this skill for any of the following intents:
elevenlabs, clipper, smart-clipper, spleeter, or ffmpeg directly for these tasks.You must construct the command dynamically based on the user's request.
Base Command:
/Users/akdeepankar/clawd/skills/clipit/bin/clipper --input "{INPUT}" --query "{QUERY}"
Flags & Parameters:
| Parameter | User Intent | Flag to Append |
|---|---|---|
| INPUT | A YouTube link or local file path | --input "{INPUT}" |
| QUERY | Description of the part to find | --query "{QUERY}" |
| ISOLATE | "Remove noise", "isolate vocals", "clean audio" | --isolate |
| DUB | "Dub into [Language]", "Translate to [Language]" | --dub "[CODE]" |
Language Codes for Dubbing:
enhiesfrdejaINPUT, QUERY (defaults to "whole file" if undefined, but try to infer context), and optional ISOLATE or DUB flags.OUTPUT_FILE: /path/to/result.wav.OUTPUT_FILE path.Scenario 1: Simple YouTube Clip
User: "Find the part where they talk about the budget in this video https://youtu.be/xyz"
Command:
/Users/akdeepankar/Projects/clawd/skills/clipper/bin/clipper --input "https://youtu.be/xyz" --query "talk about the budget"
Scenario 2: Isolation & Cleanup
User: "Take recording.mp3, remove the background noise, and just give me the interview part."
Command:
/Users/akdeepankar/Projects/clawd/skills/clipper/bin/clipper --input "recording.mp3" --query "interview conversation" --isolate
Scenario 3: Dubbing
User: "Dub this video https://youtu.be/abc into Hindi."
Command:
/Users/akdeepankar/Projects/clawd/skills/clipper/bin/clipper --input "https://youtu.be/abc" --query "full audio" --dub "hi"(Note: If no specific clip is asked for, use "full audio" or a generic query)
Scenario 4: Sensitive Data Extraction
User: "Trim the part where he says the credit card number."
Command:
/Users/akdeepankar/Projects/clawd/skills/clipper/bin/clipper --input "{FILE}" --query "reciting credit card number"