u/Expl0iT_CS

I got tired of rewatching YouTube videos for notes, so I made a Claude Code command that dumps them straight into Obsidian

I keep watching long YouTube videos and forgetting half of what was useful by the next day. Re-scrubbing through a 90-minute talk to find one quote is miserable.

So I wrote a small Claude Code slash command that does the boring part for me. Paste a URL, get a structured note in my vault.

What it does:

- Pulls the transcript with yt-dlp (no API key, no scraping pain)

- Hands it to Claude with the metadata

- Writes a markdown file straight into <vault>/YouTube/ with YAML frontmatter, TL;DR, key ideas with timestamped quotes, a chapter table, action items, mentioned resources, and a few [[wikilinks]] for related notes

Usage is just:

/youtube-to-notes [https://youtu.be/xxxx](https://youtu.be/xxxx)

There are a few style flags if you want something specific:

\- --style=brief        for a short summary

\- --style=actionable   leads with things to actually do

\- --style=study        adds Q/A flashcards at the bottom

Install is one line. Windows:

iwr -useb https://raw.githubusercontent.com/ExPl0iT-29/youtube-to-notes/main/install.ps1 | iex

macOS/Linux:

curl -fsSL https://raw.githubusercontent.com/ExPl0iT-29/youtube-to-notes/main/install.sh | bash

The installer drops the command file into ~/.claude/commands/, installs yt-dlp and ffmpeg if you don't have them, and asks for your vault path so it knows where to save.

Repo: https://github.com/ExPl0iT-29/youtube-to-notes

reddit.com
u/Expl0iT_CS — 2 days ago
▲ 4 r/claudeskills+1 crossposts

I kept losing ideas to Notes apps and never researching them.

I got tired of having ideas that I never properly evaluated.

I’d jot them down somewhere and forget about them, or spend hours manually researching market size, competitors, and tech stacks.

So I built idea-dumpster — a set of Claude Code custom commands that do the heavy lifting.

Commands

  • /analyze-idea "your idea" → Generates a 25-section research report covering market size, competitors, tech stack, monetization, and a viability score (0–100)
  • /generate-prd → Creates a full Product Requirements Document
  • /generate-roadmap → Produces a 12-month roadmap with milestones
  • /compare-ideas → Builds a side-by-side comparison matrix for 2–4 ideas
  • /estimate-cost
  • /find-datasets
  • /suggest-tech-stack

Built for Obsidian

Everything is saved as Markdown with YAML frontmatter, so every report becomes a first-class note in your Obsidian vault.

Zero Setup

No API keys.
No accounts.
No background services.

Just Claude Code generating structured output from a detailed prompt template.

GitHub

https://github.com/ExPl0iT-29/idea-dumpster

Would love feedback — especially on the viability scoring weights.

u/Expl0iT_CS — 4 days ago