{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tube-summary",
    "name": "tube-summary",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dillera/tube-summary",
    "canonicalUrl": "https://clawhub.ai/dillera/tube-summary",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tube-summary",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tube-summary",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/process-subtitles.py",
      "scripts/youtube-search.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/tube-summary"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/tube-summary",
    "agentPageUrl": "https://openagent3.xyz/skills/tube-summary/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tube-summary/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tube-summary/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "tube-summary",
        "body": "Search YouTube for videos on any topic, then extract and summarize their content using subtitles."
      },
      {
        "title": "Step 1: Search for Videos",
        "body": "When asked about a topic, search YouTube and list the top 10 results:\n\npython3 scripts/youtube-search.py \"your search query\"\n\nThis returns a numbered list of videos with titles, channels, and view counts."
      },
      {
        "title": "Step 2: User Picks a Video",
        "body": "The user selects one video by number (e.g., \"3\" for the third video)."
      },
      {
        "title": "Step 3: Download Subtitles",
        "body": "Extract English subtitles from the selected video using yt-dlp:\n\nyt-dlp --write-subs --sub-langs en --skip-download \"VIDEO_URL\"\n\nThis creates a .en.vtt subtitle file without downloading the video."
      },
      {
        "title": "Step 4: Process & Summarize",
        "body": "Use the subtitle processor to analyze and summarize:\n\npython3 scripts/process-subtitles.py \"path/to/subtitle-file.vtt\"\n\nThis generates:\n\nKey Topics: Main subjects covered in the video\nSummary: Concise 2-3 paragraph description of content\nTimestamps: Notable moments with context\nKey Quotes: Important statements from speakers"
      },
      {
        "title": "Workflow",
        "body": "Search → youtube-search.py \"<topic>\" → Display top 10 videos\nUser selects → e.g., \"Video 5\"\nExtract URL → From the search results\nDownload subs → yt-dlp --write-subs --sub-langs en --skip-download \"URL\"\nProcess → process-subtitles.py \"subtitle.vtt\"\nPresent → Formatted summary with key points"
      },
      {
        "title": "Prerequisites",
        "body": "yt-dlp (install: pip install yt-dlp)\nrequests (for YouTube search fallback)\nPython 3.7+"
      },
      {
        "title": "Notes",
        "body": "If YouTube search API is unavailable, the fallback uses web scraping via requests\nSubtitles may be auto-generated if not manually authored\nSome videos may not have English subtitles available\nThe subtitle file is created in the same directory as yt-dlp is run"
      },
      {
        "title": "Example Usage",
        "body": "User: \"Tell me about Rust programming language\"\n\n→ Search returns 10 videos about Rust\n\nUser: \"Summarize video 3\"\n\n→ Downloads subtitles from video 3\n→ Processes and returns detailed summary"
      }
    ],
    "body": "tube-summary\n\nSearch YouTube for videos on any topic, then extract and summarize their content using subtitles.\n\nQuick Start\nStep 1: Search for Videos\n\nWhen asked about a topic, search YouTube and list the top 10 results:\n\npython3 scripts/youtube-search.py \"your search query\"\n\n\nThis returns a numbered list of videos with titles, channels, and view counts.\n\nStep 2: User Picks a Video\n\nThe user selects one video by number (e.g., \"3\" for the third video).\n\nStep 3: Download Subtitles\n\nExtract English subtitles from the selected video using yt-dlp:\n\nyt-dlp --write-subs --sub-langs en --skip-download \"VIDEO_URL\"\n\n\nThis creates a .en.vtt subtitle file without downloading the video.\n\nStep 4: Process & Summarize\n\nUse the subtitle processor to analyze and summarize:\n\npython3 scripts/process-subtitles.py \"path/to/subtitle-file.vtt\"\n\n\nThis generates:\n\nKey Topics: Main subjects covered in the video\nSummary: Concise 2-3 paragraph description of content\nTimestamps: Notable moments with context\nKey Quotes: Important statements from speakers\nWorkflow\nSearch → youtube-search.py \"<topic>\" → Display top 10 videos\nUser selects → e.g., \"Video 5\"\nExtract URL → From the search results\nDownload subs → yt-dlp --write-subs --sub-langs en --skip-download \"URL\"\nProcess → process-subtitles.py \"subtitle.vtt\"\nPresent → Formatted summary with key points\nPrerequisites\nyt-dlp (install: pip install yt-dlp)\nrequests (for YouTube search fallback)\nPython 3.7+\nNotes\nIf YouTube search API is unavailable, the fallback uses web scraping via requests\nSubtitles may be auto-generated if not manually authored\nSome videos may not have English subtitles available\nThe subtitle file is created in the same directory as yt-dlp is run\nExample Usage\nUser: \"Tell me about Rust programming language\"\n\n→ Search returns 10 videos about Rust\n\nUser: \"Summarize video 3\"\n\n→ Downloads subtitles from video 3\n→ Processes and returns detailed summary"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dillera/tube-summary",
    "publisherUrl": "https://clawhub.ai/dillera/tube-summary",
    "owner": "dillera",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tube-summary",
    "downloadUrl": "https://openagent3.xyz/downloads/tube-summary",
    "agentUrl": "https://openagent3.xyz/skills/tube-summary/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tube-summary/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tube-summary/agent.md"
  }
}