ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

solo-you2idea-extract

Extract startup ideas from YouTube videos via solograph MCP — index, search, and analyze video transcripts for business ideas. Multi-MCP coordination pattern (YouTube source → analysis → storage). Use when user says "extract ideas from YouTube", "index YouTube video", "find startup ideas in video", "analyze YouTube for ideas", or "what ideas are in this video". Do NOT use for general YouTube watching (no skill needed) or content creation (use /content-gen).

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/fortunto2/solo-you2idea-extract
Or

/you2idea-extract

Extract startup ideas from YouTube videos. Two operating modes depending on available tools.

Mode Detection

Check which tools are available:

  • With solograph MCP: use source_search, source_list, source_tags, source_related for indexed corpus
  • Without MCP (standalone): use yt-dlp + Read for transcript analysis

MCP Tools (if available)

  • source_search(query, source="youtube") — semantic search over indexed videos
  • source_list() — check indexed video counts
  • source_tags() — auto-detected topics with confidence scores
  • source_related(video_url) — find related videos by shared tags
  • kb_search(query) — cross-reference with knowledge base
  • web_search(query) — discover new videos to index

Steps

Mode 1: Index + Analyze (with solograph MCP)

  1. Parse input from $ARGUMENTS:

    • URL (https://youtube.com/watch?v=...) → single video index
    • Channel name (GregIsenberg) → channel batch index
    • Query text → search existing corpus (skip to step 4)
    • If empty, ask: "Video URL, channel name, or search query?"
  2. Index 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
    
  3. Verify indexingsource_list() to confirm new video count. source_tags() for topic distribution.

  4. Search corpussource_search(query="startup ideas", source="youtube").

  5. Cross-referencekb_search(query) for related existing opportunities (if knowledge base available).

  6. Extract insights — for each relevant video chunk:

    • Identify the startup idea mentioned
    • Note timestamp and speaker context
    • Rate idea potential (specificity, market evidence, feasibility)
    • Flag ideas that match trends or validated patterns
  7. Write results to docs/youtube-ideas.md or print summary.

Mode 2: Standalone (without MCP)

  1. Parse input — same as Mode 1 step 1.

  2. 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
    
  3. Read transcript — Read the transcript.txt file.

  4. Analyze for startup ideas:

    • Scan for business opportunities, pain points, product ideas
    • Note approximate timestamps from VTT cues
    • Rate each idea on specificity and market potential
    • Cross-reference with WebSearch for market validation

Metadata

Author@fortunto2
Stars2387
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-fortunto2-solo-you2idea-extract": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.

Related Skills

solo-swarm

Launch 3 parallel research agents (market, users, tech) to investigate an idea from multiple angles simultaneously. Use when user says "swarm research", "parallel research", "investigate fast", "3 agents", "team research", or wants faster alternative to /research. Produces research.md. Do NOT use for solo research (use /research) or idea scoring (use /validate).

fortunto2 2387

solo-build

Execute implementation plan tasks with TDD workflow, auto-commit, and phase gates. Use when user says "build it", "start building", "execute plan", "implement tasks", "ship it", or references a track ID. Do NOT use for planning (use /plan) or scaffolding (use /scaffold).

fortunto2 2387

solo-metrics-track

Set up PostHog metrics plan with event funnel, KPI benchmarks, and kill/iterate/scale decision thresholds. Use when user says "set up metrics", "track KPIs", "PostHog events", "funnel analysis", "when to kill or scale", or "success metrics". Do NOT use for SEO metrics (use /seo-audit).

fortunto2 2387

solo-audit

Health check knowledge base for broken links, missing frontmatter, tag inconsistencies, and coverage gaps. Use when user says "audit KB", "check frontmatter", "find broken links", "tag cleanup", or "knowledge base quality". Do NOT use for SEO audits (use /seo-audit) or code reviews.

fortunto2 2387

solo-seo-audit

SEO health check for any URL — analyzes meta tags, OG, JSON-LD, sitemap, robots.txt, SERP positions, and scores 0-100. Use when user says "check SEO", "audit this page", "SEO score", "check meta tags", or "SERP position". Do NOT use for generating landing content (use /landing-gen) or social media posts (use /content-gen).

fortunto2 2387