YouTube Watcher
clawhubMedia Download Easy
3.7
Fetch and read transcripts from YouTube videos. Use when you need to summarize a video, answer questions about its content, or extract information from it.
clawhub install youtube-watcherFirecrawl 下载:使用 Firecrawl 工具爬取和下载网页内容。
# Install Skill npx skills add firecrawl/cli@firecrawl-download # Claude Code will auto-detect and use it after installation
# Same install command — works with all SKILL.md-compatible AI coding tools npx skills add firecrawl/cli@firecrawl-download
map + scrape to save an entire site as local files..firecrawl/. All scrape options work with download. Always pass -y to skip the confirmation prompt.# Interactive wizard (picks format, screenshots, paths for you)
firecrawl download https://docs.example.com
# With screenshots
firecrawl download https://docs.example.com --screenshot --limit 20 -y
# Multiple formats (each saved as its own file per page)
firecrawl download https://docs.example.com --format markdown,links --screenshot --limit 20 -y
# Creates per page: index.md + links.txt + screenshot.png
# Filter to specific sections
firecrawl download https://docs.example.com --include-paths "/features,/sdks"
# Skip translations
firecrawl download https://docs.example.com --exclude-paths "/zh,/ja,/fr,/es,/pt-BR"
# Full combo
firecrawl download https://docs.example.com \
--include-paths "/features,/sdks" \
--exclude-paths "/zh,/ja" \
--only-main-content \
--screenshot \
-y
--limit <n> | Max pages to download |
| --search <query> | Filter URLs by search query |
| --include-paths <paths> | Only download matching paths |
| --exclude-paths <paths> | Skip matching paths |
| --allow-subdomains | Include subdomain pages |
| -y | Skip confirmation prompt (always use in automated flows) |-f <formats>, -H, -S, --screenshot, --full-page-screenshot, --only-main-content, --include-tags, --exclude-tags, --wait-for, --max-age, --country, --languagesnpx skills add firecrawl/cli@firecrawl-download && FIRECRAWL_API_KEY=xxx skills run firecrawl-download --url "https://example.com" --format markdown --output-dir ./crawledFetch and read transcripts from YouTube videos. Use when you need to summarize a video, answer questions about its content, or extract information from it.
clawhub install youtube-watcher