{
  "schemaVersion": "1.0",
  "item": {
    "slug": "whisper-transcribe",
    "name": "Whisper Transcribe",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/JosunLP/whisper-transcribe",
    "canonicalUrl": "https://clawhub.ai/JosunLP/whisper-transcribe",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/whisper-transcribe",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=whisper-transcribe",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/transcribe.sh"
    ],
    "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": "whisper-transcribe",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T20:38:03.502Z",
      "expiresAt": "2026-05-08T20:38:03.502Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=whisper-transcribe",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=whisper-transcribe",
        "contentDisposition": "attachment; filename=\"whisper-transcribe-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "whisper-transcribe"
      },
      "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/whisper-transcribe"
    },
    "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/whisper-transcribe",
    "agentPageUrl": "https://openagent3.xyz/skills/whisper-transcribe/agent",
    "manifestUrl": "https://openagent3.xyz/skills/whisper-transcribe/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/whisper-transcribe/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": "Whisper Transcribe",
        "body": "Transcribe audio with scripts/transcribe.sh:\n\n# Basic (auto-detect language, base model)\nscripts/transcribe.sh recording.mp3\n\n# German, small model, SRT subtitles\nscripts/transcribe.sh --model small --language de --format srt lecture.wav\n\n# Batch process, all formats\nscripts/transcribe.sh --format all --output-dir ./transcripts/ *.mp3\n\n# Word-level timestamps\nscripts/transcribe.sh --timestamps interview.m4a"
      },
      {
        "title": "Models",
        "body": "ModelRAMSpeedAccuracyBest fortiny~1GB⚡⚡⚡★★Quick drafts, known languagebase~1GB⚡⚡★★★General use (default)small~2GB⚡★★★★Good accuracymedium~5GB🐢★★★★★High accuracylarge~10GB🐌★★★★★Best accuracy (slow on Pi)"
      },
      {
        "title": "Output Formats",
        "body": "txt — Plain text transcript\nsrt — SubRip subtitles (for video)\nvtt — WebVTT subtitles\njson — Detailed JSON with timestamps and confidence\nall — Generate all formats at once"
      },
      {
        "title": "Requirements",
        "body": "whisper CLI (pip install openai-whisper)\nffmpeg (for audio decoding)\nFirst run downloads the model (~150MB for base)"
      }
    ],
    "body": "Whisper Transcribe\n\nTranscribe audio with scripts/transcribe.sh:\n\n# Basic (auto-detect language, base model)\nscripts/transcribe.sh recording.mp3\n\n# German, small model, SRT subtitles\nscripts/transcribe.sh --model small --language de --format srt lecture.wav\n\n# Batch process, all formats\nscripts/transcribe.sh --format all --output-dir ./transcripts/ *.mp3\n\n# Word-level timestamps\nscripts/transcribe.sh --timestamps interview.m4a\n\nModels\nModel\tRAM\tSpeed\tAccuracy\tBest for\ntiny\t~1GB\t⚡⚡⚡\t★★\tQuick drafts, known language\nbase\t~1GB\t⚡⚡\t★★★\tGeneral use (default)\nsmall\t~2GB\t⚡\t★★★★\tGood accuracy\nmedium\t~5GB\t🐢\t★★★★★\tHigh accuracy\nlarge\t~10GB\t🐌\t★★★★★\tBest accuracy (slow on Pi)\nOutput Formats\ntxt — Plain text transcript\nsrt — SubRip subtitles (for video)\nvtt — WebVTT subtitles\njson — Detailed JSON with timestamps and confidence\nall — Generate all formats at once\nRequirements\nwhisper CLI (pip install openai-whisper)\nffmpeg (for audio decoding)\nFirst run downloads the model (~150MB for base)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/JosunLP/whisper-transcribe",
    "publisherUrl": "https://clawhub.ai/JosunLP/whisper-transcribe",
    "owner": "JosunLP",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/whisper-transcribe",
    "downloadUrl": "https://openagent3.xyz/downloads/whisper-transcribe",
    "agentUrl": "https://openagent3.xyz/skills/whisper-transcribe/agent",
    "manifestUrl": "https://openagent3.xyz/skills/whisper-transcribe/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/whisper-transcribe/agent.md"
  }
}