Youtube Podcast summarizer via Elevenlabs
PassAudited by ClawScan on May 1, 2026.
Overview
The skill’s behavior matches its stated purpose, but it relies on a separately run GitHub backend and paid API keys that users should verify before use.
Before installing, verify the external GitHub backend, review its dependencies, protect the required API keys, and understand that YouTube links may be processed automatically and sent through Supadata, OpenRouter/Cerebras, and ElevenLabs.
Findings (4)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
You would be trusting code and dependencies that are not included in this skill package.
The skill is instruction-only but directs the user to install and run a separate npm backend from GitHub.
git clone https://github.com/Franciscomoney/elevenlabs-moltbot.git cd elevenlabs-moltbot npm install cp .env.example .env # Add your API keys to .env npm start
Review the GitHub repository and its dependencies before running it or adding API keys.
Those keys may allow the backend to make paid requests to the associated services.
The backend requires provider API keys for text-to-speech, transcript retrieval, and AI summarization.
"required_env": [
"ELEVENLABS_API_KEY",
"SUPADATA_API_KEY",
"OPENROUTER_API_KEY"
]Use restricted keys where possible, monitor usage, and avoid sharing the .env file.
Processing a YouTube link may create a backend job and consume API credits.
The skill declares auto-trigger patterns for YouTube URLs, so it may start its workflow when such links appear.
metadata: {"openclaw":{"emoji":"🎙️","autoTrigger":{"patterns":["youtube.com/watch","youtu.be/","youtube.com/shorts"]}}}Confirm your bot’s auto-trigger behavior and set usage or cost limits if needed.
The video link and derived transcript or summary content may be sent to external providers as part of the intended workflow.
The data flow routes YouTube URLs, transcripts, and generated summaries through multiple third-party services.
YouTube URL → Supadata (transcript) → AI (summary) → ElevenLabs (voice) → You
Avoid using the skill for private, sensitive, or unlisted video content unless you are comfortable with those providers processing it.
