TopRank Skills

Home / Claw Skills / Git / GitHub / solo-you2idea-extract
Official OpenClaw rules 36%

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).

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 solo-you2idea-extract 技能。 若已安装,则直接安装 solo-you2idea-extract 技能。

Overview

Skill Key
fortunto2/solo-you2idea-extract
Author
fortunto2
Source Repo
openclaw/skills
Version
-
Source Path
skills/fortunto2/solo-you2idea-extract
Latest Commit SHA
857b9be3dac3203236f4ce243ac6f5ea5058fff5

Extracted Content

SKILL.md excerpt

# /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:
   ```bash
   # 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 indexing** — `source_list()` to confirm new video count. `source_tags()` for topic distribution.

4. **Search corpus** — `source_search(query="startup ideas", source="youtube")`.

5. **Cross-reference** — `kb_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.m...

Related Claw Skills