{
  "schemaVersion": "1.0",
  "item": {
    "slug": "asr",
    "name": "Speech is Cheap Transcribe",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ilyakam/asr",
    "canonicalUrl": "https://clawhub.ai/ilyakam/asr",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/asr",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=asr",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "manifest.json",
      "scripts/asr.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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/asr"
    },
    "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/asr",
    "agentPageUrl": "https://openagent3.xyz/skills/asr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/asr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/asr/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Speech is Cheap (SIC) Skill",
        "body": "Fast, accurate, and incredibly inexpensive automatic speech-to-text transcription service."
      },
      {
        "title": "🚀 Why use this skill?",
        "body": "Disruptive Pricing: $0.06 - $0.12 per hour (2-15x cheaper than Deepgram or OpenAI).\nExtreme Speed: 100 minutes of audio transcribes in ~1 minute.\nMultilingual: Supports 100 languages with auto-detection.\nAgent-Ready: Designed for high-volume, automated pipelines."
      },
      {
        "title": "1. Get an API Key",
        "body": "Sign up at speechischeap.com. Use code CH5 for $5 off."
      },
      {
        "title": "2. Configure Authentication",
        "body": "This skill looks for your API key in the SIC_API_KEY environment variable.\n\nAdd this to your .env or agent config:\n\nSIC_API_KEY=your_key_here"
      },
      {
        "title": "🤖 TL;DR for Agents",
        "body": "When this skill is installed, you can transcribe any URL from an OpenClaw session and get the JSON results immediately by running:\n./skills/asr/scripts/asr.sh transcribe --url \"https://example.com/audio.mp3\""
      },
      {
        "title": "Transcribe a URL",
        "body": "# Basic transcription\n./skills/asr/scripts/asr.sh transcribe --url \"https://example.com/audio.mp3\"\n\n# Advanced transcription with options\n./skills/asr/scripts/asr.sh transcribe --url \"https://example.com/audio.mp3\" \\\n  --speakers --words --labels \\\n  --language \"en\" \\\n  --format \"srt\" \\\n  --private"
      },
      {
        "title": "Transcribe a Local File",
        "body": "Perfect for processing audio already on your disk. This handles the upload automatically.\n\n# Upload and transcribe local media\n./skills/asr/scripts/asr.sh transcribe --file \"./local-audio.wav\"\n\n# Upload with webhook callback\n./skills/asr/scripts/asr.sh transcribe --file \"./local-audio.wav\" --webhook \"https://mysite.com/callback\"\n\n# Note: For local files, the skill handles the multi-part upload to\n# https://upload.speechischeap.com before starting the transcription."
      },
      {
        "title": "Supported Options",
        "body": "--speakers: Enable speaker diarization\n--words: Enable word-level timestamps\n--labels: Enable audio labeling (music, noise, etc.)\n--stream: Enable streaming output\n--private: Do not store audio/transcript (privacy mode)\n--language <code>: ISO language code (e.g., 'en', 'es')\n--confidence <float>: Minimum confidence threshold (default 0.5)\n--format <fmt>: Output format (json, srt, vtt, webvtt)\n--webhook <url>: URL to receive job completion payload\n--segment-duration <n>: Segment duration in seconds (default 30)"
      },
      {
        "title": "Check Job Status",
        "body": "./skills/asr/scripts/asr.sh status \"job-id-here\""
      },
      {
        "title": "🤖 For Agents",
        "body": "The asr.sh command-line tool returns JSON by default when successful, making it easy to pipe into other tools or parse directly.\n\nIf the SIC_API_KEY is missing, the tool will provide a clear error message and a direct link to the signup page."
      }
    ],
    "body": "Speech is Cheap (SIC) Skill\n\nFast, accurate, and incredibly inexpensive automatic speech-to-text transcription service.\n\n🚀 Why use this skill?\nDisruptive Pricing: $0.06 - $0.12 per hour (2-15x cheaper than Deepgram or OpenAI).\nExtreme Speed: 100 minutes of audio transcribes in ~1 minute.\nMultilingual: Supports 100 languages with auto-detection.\nAgent-Ready: Designed for high-volume, automated pipelines.\n🛠 Setup\n1. Get an API Key\n\nSign up at speechischeap.com. Use code CH5 for $5 off.\n\n2. Configure Authentication\n\nThis skill looks for your API key in the SIC_API_KEY environment variable.\n\nAdd this to your .env or agent config:\n\nSIC_API_KEY=your_key_here\n\n📖 Usage\n🤖 TL;DR for Agents\n\nWhen this skill is installed, you can transcribe any URL from an OpenClaw session and get the JSON results immediately by running: ./skills/asr/scripts/asr.sh transcribe --url \"https://example.com/audio.mp3\"\n\nTranscribe a URL\n# Basic transcription\n./skills/asr/scripts/asr.sh transcribe --url \"https://example.com/audio.mp3\"\n\n# Advanced transcription with options\n./skills/asr/scripts/asr.sh transcribe --url \"https://example.com/audio.mp3\" \\\n  --speakers --words --labels \\\n  --language \"en\" \\\n  --format \"srt\" \\\n  --private\n\nTranscribe a Local File\n\nPerfect for processing audio already on your disk. This handles the upload automatically.\n\n# Upload and transcribe local media\n./skills/asr/scripts/asr.sh transcribe --file \"./local-audio.wav\"\n\n# Upload with webhook callback\n./skills/asr/scripts/asr.sh transcribe --file \"./local-audio.wav\" --webhook \"https://mysite.com/callback\"\n\n# Note: For local files, the skill handles the multi-part upload to\n# https://upload.speechischeap.com before starting the transcription.\n\nSupported Options\n--speakers: Enable speaker diarization\n--words: Enable word-level timestamps\n--labels: Enable audio labeling (music, noise, etc.)\n--stream: Enable streaming output\n--private: Do not store audio/transcript (privacy mode)\n--language <code>: ISO language code (e.g., 'en', 'es')\n--confidence <float>: Minimum confidence threshold (default 0.5)\n--format <fmt>: Output format (json, srt, vtt, webvtt)\n--webhook <url>: URL to receive job completion payload\n--segment-duration <n>: Segment duration in seconds (default 30)\nCheck Job Status\n./skills/asr/scripts/asr.sh status \"job-id-here\"\n\n🤖 For Agents\n\nThe asr.sh command-line tool returns JSON by default when successful, making it easy to pipe into other tools or parse directly.\n\nIf the SIC_API_KEY is missing, the tool will provide a clear error message and a direct link to the signup page."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ilyakam/asr",
    "publisherUrl": "https://clawhub.ai/ilyakam/asr",
    "owner": "ilyakam",
    "version": "1.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/asr",
    "downloadUrl": "https://openagent3.xyz/downloads/asr",
    "agentUrl": "https://openagent3.xyz/skills/asr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/asr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/asr/agent.md"
  }
}