From solo
Extracts startup ideas from YouTube videos/channels by indexing transcripts with solograph MCP tools or yt-dlp, then semantically searching for business opportunities.
How this skill is triggered — by the user, by Claude, or both
Slash command
/solo:you2idea-extractThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Extract startup ideas from YouTube videos. Two operating modes depending on available tools.
Extract startup ideas from YouTube videos. Two operating modes depending on available tools.
Check which tools are available:
source_search, source_list, source_tags, source_related for indexed corpussource_search(query, source="youtube") — semantic search over indexed videossource_list() — check indexed video countssource_tags() — auto-detected topics with confidence scoressource_related(video_url) — find related videos by shared tagskb_search(query) — cross-reference with knowledge baseweb_search(query) — discover new videos to indexParse input from $ARGUMENTS:
https://youtube.com/watch?v=...) → single video indexGregIsenberg) → channel batch indexIndex video(s) via solograph:
# Install if needed
pip install solograph # or: uvx solograph
# Single video
solograph-cli index-youtube -u "$URL"
# Channel batch (needs web search for discovery)
solograph-cli index-youtube -c "$CHANNEL" -n 5
Verify indexing — source_list() to confirm new video count. source_tags() for topic distribution.
Search corpus — source_search(query="startup ideas", source="youtube").
Cross-reference — kb_search(query) for related existing opportunities (if knowledge base available).
Extract insights — for each relevant video chunk:
Write results to docs/youtube-ideas.md or print summary.
Parse input — same as Mode 1 step 1.
Download transcript via yt-dlp:
# Check yt-dlp is available
command -v yt-dlp >/dev/null 2>&1 && echo "yt-dlp: ok" || echo "Install: pip install yt-dlp"
# Download subtitles only (no video)
yt-dlp --write-auto-sub --sub-lang en --skip-download -o "transcript" "$URL"
# Convert VTT to plain text
sed '/^$/d; /^[0-9]/d; /-->/d; /WEBVTT/d; /Kind:/d; /Language:/d' transcript.en.vtt | sort -u > transcript.txt
Read transcript — Read the transcript.txt file.
Analyze for startup ideas:
For channel analysis — download multiple video transcripts:
# Get video list from channel
yt-dlp --flat-playlist --print "%(id)s %(title)s" "https://youtube.com/@$CHANNEL" | head -10
# Download transcripts for top videos
for id in $VIDEO_IDS; do
yt-dlp --write-auto-sub --sub-lang en --skip-download -o "transcripts/%(id)s" "https://youtube.com/watch?v=$id"
done
Write results to docs/youtube-ideas.md with format:
# YouTube Ideas — [Channel/Video]
Date: YYYY-MM-DD
## Idea 1: [Name]
- **Source:** [Video title] @ [timestamp]
- **Problem:** [What pain point]
- **Solution:** [What they propose]
- **Market signal:** [Evidence of demand]
- **Potential:** [High/Medium/Low] — [why]
## Idea 2: ...
Fix: pip install yt-dlp or brew install yt-dlp
Cause: Video has no auto-generated or manual captions.
Fix: Try --sub-lang en,ru for multiple languages. Some videos only have auto-generated subs.
Fix: Skills work in standalone mode (yt-dlp + Read). For indexed search across many videos, install solograph: pip install solograph. For enhanced web search, set up SearXNG (private, self-hosted, free).
Fix: Use /validate on the top 3 ideas to score them through STREAM framework.
npx claudepluginhub fortunto2/solo-factory --plugin soloGenerates 15-20 YouTube video ideas via gap analysis, trends, formats, and audience needs, tiered by priority and aligned with content pillars and strategy.
Searches YouTube for videos and channels, analyzes video transcripts for highlights, explores channels, and researches topics. Use for YouTube-related tasks like finding coding tutorials.
Researches YouTube topics, analyzes competitor videos, deconstructs viral content, and queries the YouTube Data API v3 for stats, search, and channel info.