Free Tool
Turn any tutorial into an agent skill
Paste a YouTube how-to. Get back a ready-to-use skill for Claude Code or Cursor — the exact steps, tools, gotchas, and code, verified and packaged. No rewatching.
How it works
1
Transcribe & watch
We pull the transcript and sample key frames, so on-screen commands, code, and UI steps aren't lost.
2
Extract the real procedure
A model separates the actual steps from the intro and filler — tools, prerequisites, gotchas, and snippets included.
3
Verify, then package
Every skill is checked before we mark it ready. If it can't be verified, we tell you instead of handing back a broken package as if it worked.
What you get back
--- name: setup-nextjs-project description: Scaffold a new Next.js app with the App Router. Use when the user wants to start, bootstrap, or initialize a Next.js project. --- # Set up a Next.js project ## Prerequisites - Node.js 18+ installed - npm available on PATH ## Procedure 1. Scaffold the app npx create-next-app@latest my-app 2. Move into it cd my-app 3. Start the dev server npm run dev → http://localhost:3000 ## Common gotchas - If port 3000 is busy, Next.js prompts for another port.
A single .skill file. Drop it into Claude Code or Cursor and the agent can run the task — no rewatching the video.