{
  "schemaVersion": "1.0",
  "item": {
    "slug": "youtube-transcription-generator",
    "name": "Youtube Transcription Generator",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/MehediAhamed/youtube-transcription-generator",
    "canonicalUrl": "https://clawhub.ai/MehediAhamed/youtube-transcription-generator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/youtube-transcription-generator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-transcription-generator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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",
      "slug": "youtube-transcription-generator",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T11:11:47.235Z",
      "expiresAt": "2026-05-18T11:11:47.235Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-transcription-generator",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-transcription-generator",
        "contentDisposition": "attachment; filename=\"youtube-transcription-generator-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "youtube-transcription-generator"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/youtube-transcription-generator"
    },
    "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/youtube-transcription-generator",
    "agentPageUrl": "https://openagent3.xyz/skills/youtube-transcription-generator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youtube-transcription-generator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youtube-transcription-generator/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": "YouTube Transcription Generator (VLM Run)",
        "body": "Generate transcriptions from YouTube videos using vlmrun for speech-to-text and optional timestamps. This skill:\n\nDownloads the YouTube video (or audio) with yt-dlp.\nTranscribes the video with vlmrun (Orion visual AI).\nSaves the transcript to a file (plain text or with timestamps).\n\nRefer to vlmrun-cli-skill for vlmrun CLI setup, environment variables, and all vlmrun chat options."
      },
      {
        "title": "How the assistant should use this skill",
        "body": "Check .env for API key\n\nEnsure .env (or .env.local) contains VLMRUN_API_KEY.\nIf missing, instruct the user to set it before running any vlmrun commands.\n\n\n\nUse vlmrun for transcription only\n\nFor transcription (and optional timestamps), use the vlmrun CLI with a video file as input (-i <video>).\nvlmrun accepts video files (e.g. .mp4). For YouTube, the skill first downloads the video with yt-dlp, then passes the file to vlmrun.\n\n\n\nWorkflow\n\nUser provides a YouTube URL (and optionally output path).\nDownload the video (or audio-only for faster/smaller) with yt-dlp.\nRun: vlmrun chat \"Transcribe this video with timestamps for each section. Output the full transcript in a clear, readable format.\" -i <downloaded_file> -o <output_dir>.\nCapture vlmrun’s response and save it as the transcript file (e.g. transcript.txt)."
      },
      {
        "title": "Prerequisites",
        "body": "Python 3.10+\nVLMRUN_API_KEY (required for vlmrun)\nvlmrun CLI (vlmrun[cli])\nyt-dlp (for downloading YouTube videos)\n\nSee vlmrun-cli-skill for detailed vlmrun usage and examples (including video transcription)."
      },
      {
        "title": "Installation & Setup",
        "body": "From the youtube-transcription-generator directory:\n\nWindows (PowerShell):\n\ncd path\\to\\youtube-transcription-generator\nuv venv\n.venv\\Scripts\\Activate.ps1\nuv pip install -r requirements.txt\n\nmacOS/Linux:\n\ncd path/to/youtube-transcription-generator\nuv venv\nsource .venv/bin/activate\nuv pip install -r requirements.txt\n\nCopy .env_template to .env and set VLMRUN_API_KEY."
      },
      {
        "title": "Option A: Run the script (recommended)",
        "body": "# From youtube-transcription-generator directory, with venv activated\npython scripts/run_transcription.py \"https://www.youtube.com/watch?v=VIDEO_ID\" -o ./output\n\nThis will:\n\nDownload the video with yt-dlp into the output directory.\nRun vlmrun to transcribe the video.\nSave the transcript as output/transcript.txt (and keep artifacts in output/)."
      },
      {
        "title": "Option B: Manual vlmrun (after downloading the video yourself)",
        "body": "# 1) Download with yt-dlp\nyt-dlp -f \"bv*[ext=mp4]+ba/best[ext=mp4]/best\" -o video.mp4 \"https://www.youtube.com/watch?v=VIDEO_ID\"\n\n# 2) Transcribe with vlmrun (see vlmrun-cli-skill for options)\nvlmrun chat \"Transcribe this video with timestamps for each section. Output the full transcript in a clear, readable format.\" -i video.mp4 -o ./output\n\nCapture the vlmrun stdout and save it as your transcript, or use --json if you need structured output."
      },
      {
        "title": "Prompt variants for vlmrun",
        "body": "With timestamps:\n\"Transcribe this video with timestamps for each section. Output the full transcript in a clear, readable format.\"\n\n\nPlain transcript only:\n\"Transcribe everything said in this video. Output only the spoken text, no timestamps.\"\n\n\nStructured (e.g. JSON):\nUse --json and ask for a structured format in the prompt (e.g. list of { \"time\": \"...\", \"text\": \"...\" })."
      },
      {
        "title": "Workflow checklist",
        "body": "Confirm vlmrun is installed and VLMRUN_API_KEY is set (see vlmrun-cli-skill).\n Install dependencies: uv pip install -r requirements.txt (includes vlmrun[cli] and yt-dlp).\n Run python scripts/run_transcription.py <youtube_url> -o ./output or download + vlmrun manually.\n Find transcript in the output directory (e.g. output/transcript.txt)."
      },
      {
        "title": "Troubleshooting",
        "body": "vlmrun not found\nActivate the venv and run: uv pip install \"vlmrun[cli]\". See vlmrun-cli-skill.\n\n\nAuthentication errors\nVerify VLMRUN_API_KEY in .env or the current shell.\n\n\nyt-dlp fails\nUpdate yt-dlp: uv pip install -U yt-dlp. Check the URL is a valid public YouTube video.\n\n\nLarge or long videos\nUse audio-only download in the script (e.g. -f bestaudio) to reduce size and speed up transcription."
      }
    ],
    "body": "YouTube Transcription Generator (VLM Run)\n\nGenerate transcriptions from YouTube videos using vlmrun for speech-to-text and optional timestamps. This skill:\n\nDownloads the YouTube video (or audio) with yt-dlp.\nTranscribes the video with vlmrun (Orion visual AI).\nSaves the transcript to a file (plain text or with timestamps).\n\nRefer to vlmrun-cli-skill for vlmrun CLI setup, environment variables, and all vlmrun chat options.\n\nHow the assistant should use this skill\n\nCheck .env for API key\n\nEnsure .env (or .env.local) contains VLMRUN_API_KEY.\nIf missing, instruct the user to set it before running any vlmrun commands.\n\nUse vlmrun for transcription only\n\nFor transcription (and optional timestamps), use the vlmrun CLI with a video file as input (-i <video>).\nvlmrun accepts video files (e.g. .mp4). For YouTube, the skill first downloads the video with yt-dlp, then passes the file to vlmrun.\n\nWorkflow\n\nUser provides a YouTube URL (and optionally output path).\nDownload the video (or audio-only for faster/smaller) with yt-dlp.\nRun: vlmrun chat \"Transcribe this video with timestamps for each section. Output the full transcript in a clear, readable format.\" -i <downloaded_file> -o <output_dir>.\nCapture vlmrun’s response and save it as the transcript file (e.g. transcript.txt).\nPrerequisites\nPython 3.10+\nVLMRUN_API_KEY (required for vlmrun)\nvlmrun CLI (vlmrun[cli])\nyt-dlp (for downloading YouTube videos)\n\nSee vlmrun-cli-skill for detailed vlmrun usage and examples (including video transcription).\n\nInstallation & Setup\n\nFrom the youtube-transcription-generator directory:\n\nWindows (PowerShell):\n\ncd path\\to\\youtube-transcription-generator\nuv venv\n.venv\\Scripts\\Activate.ps1\nuv pip install -r requirements.txt\n\n\nmacOS/Linux:\n\ncd path/to/youtube-transcription-generator\nuv venv\nsource .venv/bin/activate\nuv pip install -r requirements.txt\n\n\nCopy .env_template to .env and set VLMRUN_API_KEY.\n\nQuick Start: Transcribe a YouTube Video\nOption A: Run the script (recommended)\n# From youtube-transcription-generator directory, with venv activated\npython scripts/run_transcription.py \"https://www.youtube.com/watch?v=VIDEO_ID\" -o ./output\n\n\nThis will:\n\nDownload the video with yt-dlp into the output directory.\nRun vlmrun to transcribe the video.\nSave the transcript as output/transcript.txt (and keep artifacts in output/).\nOption B: Manual vlmrun (after downloading the video yourself)\n# 1) Download with yt-dlp\nyt-dlp -f \"bv*[ext=mp4]+ba/best[ext=mp4]/best\" -o video.mp4 \"https://www.youtube.com/watch?v=VIDEO_ID\"\n\n# 2) Transcribe with vlmrun (see vlmrun-cli-skill for options)\nvlmrun chat \"Transcribe this video with timestamps for each section. Output the full transcript in a clear, readable format.\" -i video.mp4 -o ./output\n\n\nCapture the vlmrun stdout and save it as your transcript, or use --json if you need structured output.\n\nPrompt variants for vlmrun\n\nWith timestamps:\n\"Transcribe this video with timestamps for each section. Output the full transcript in a clear, readable format.\"\n\nPlain transcript only:\n\"Transcribe everything said in this video. Output only the spoken text, no timestamps.\"\n\nStructured (e.g. JSON):\nUse --json and ask for a structured format in the prompt (e.g. list of { \"time\": \"...\", \"text\": \"...\" }).\n\nWorkflow checklist\n Confirm vlmrun is installed and VLMRUN_API_KEY is set (see vlmrun-cli-skill).\n Install dependencies: uv pip install -r requirements.txt (includes vlmrun[cli] and yt-dlp).\n Run python scripts/run_transcription.py <youtube_url> -o ./output or download + vlmrun manually.\n Find transcript in the output directory (e.g. output/transcript.txt).\nTroubleshooting\n\nvlmrun not found\nActivate the venv and run: uv pip install \"vlmrun[cli]\". See vlmrun-cli-skill.\n\nAuthentication errors\nVerify VLMRUN_API_KEY in .env or the current shell.\n\nyt-dlp fails\nUpdate yt-dlp: uv pip install -U yt-dlp. Check the URL is a valid public YouTube video.\n\nLarge or long videos\nUse audio-only download in the script (e.g. -f bestaudio) to reduce size and speed up transcription."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/MehediAhamed/youtube-transcription-generator",
    "publisherUrl": "https://clawhub.ai/MehediAhamed/youtube-transcription-generator",
    "owner": "MehediAhamed",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/youtube-transcription-generator",
    "downloadUrl": "https://openagent3.xyz/downloads/youtube-transcription-generator",
    "agentUrl": "https://openagent3.xyz/skills/youtube-transcription-generator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youtube-transcription-generator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youtube-transcription-generator/agent.md"
  }
}