{
  "schemaVersion": "1.0",
  "item": {
    "slug": "step-asr",
    "name": "Step Asr",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/randzero/step-asr",
    "canonicalUrl": "https://clawhub.ai/randzero/step-asr",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/step-asr",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=step-asr",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/transcribe.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/step-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/step-asr",
    "agentPageUrl": "https://openagent3.xyz/skills/step-asr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/step-asr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/step-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. 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": "Step ASR - Streaming Speech-to-Text",
        "body": "Transcribe audio files using the Step (StepFun) ASR API with HTTP SSE streaming."
      },
      {
        "title": "Quick start",
        "body": "python3 {baseDir}/scripts/transcribe.py /path/to/audio.wav"
      },
      {
        "title": "Usage examples",
        "body": "Basic transcription (Chinese, streaming output):\n\npython3 {baseDir}/scripts/transcribe.py /path/to/audio.wav\n\nSpecify language and save to file:\n\npython3 {baseDir}/scripts/transcribe.py /path/to/audio.mp3 --language en --out /tmp/transcript.txt\n\nUse a prompt for terminology correction:\n\npython3 {baseDir}/scripts/transcribe.py /path/to/audio.pcm --prompt \"Related terms: OpenClaw, StepFun, ASR\"\n\nOutput as JSON (includes usage stats):\n\npython3 {baseDir}/scripts/transcribe.py /path/to/audio.ogg --json\n\nNon-streaming mode (only print final result):\n\npython3 {baseDir}/scripts/transcribe.py /path/to/audio.wav --no-stream\n\nSpecify audio format explicitly (for raw PCM files without extension):\n\npython3 {baseDir}/scripts/transcribe.py /path/to/raw_audio --format-type pcm --sample-rate 16000"
      },
      {
        "title": "Supported audio formats",
        "body": "FormatExtensionsNotesPCM.pcm, .rawRaw PCM, default codec pcm_s16leWAV.wavWAV container formatMP3.mp3OGG/OPUS.ogg, .opus"
      },
      {
        "title": "All options",
        "body": "FlagDefaultDescription--languagezhLanguage code (zh or en)--modelstep-asrASR model name--out(stdout)Save transcription to file--prompt(none)Hint text to improve accuracy for domain-specific terms--format-type(auto)Audio format: pcm, mp3, ogg (auto-detected from extension)--sample-rate16000Audio sample rate in Hz--no-streamfalseOnly print the final complete result--jsonfalseOutput as JSON with usage statistics--no-itnfalseDisable inverse text normalization--no-rerunfalseDisable second-pass error correction"
      },
      {
        "title": "API key",
        "body": "Set STEPFUN_API_KEY environment variable, or configure it in ~/.openclaw/openclaw.json:\n\n{\n  skills: {\n    \"step-asr\": {\n      apiKey: \"YOUR_STEPFUN_API_KEY\"\n    }\n  }\n}\n\nGet your API key from Step Platform."
      }
    ],
    "body": "Step ASR - Streaming Speech-to-Text\n\nTranscribe audio files using the Step (StepFun) ASR API with HTTP SSE streaming.\n\nQuick start\npython3 {baseDir}/scripts/transcribe.py /path/to/audio.wav\n\nUsage examples\n\nBasic transcription (Chinese, streaming output):\n\npython3 {baseDir}/scripts/transcribe.py /path/to/audio.wav\n\n\nSpecify language and save to file:\n\npython3 {baseDir}/scripts/transcribe.py /path/to/audio.mp3 --language en --out /tmp/transcript.txt\n\n\nUse a prompt for terminology correction:\n\npython3 {baseDir}/scripts/transcribe.py /path/to/audio.pcm --prompt \"Related terms: OpenClaw, StepFun, ASR\"\n\n\nOutput as JSON (includes usage stats):\n\npython3 {baseDir}/scripts/transcribe.py /path/to/audio.ogg --json\n\n\nNon-streaming mode (only print final result):\n\npython3 {baseDir}/scripts/transcribe.py /path/to/audio.wav --no-stream\n\n\nSpecify audio format explicitly (for raw PCM files without extension):\n\npython3 {baseDir}/scripts/transcribe.py /path/to/raw_audio --format-type pcm --sample-rate 16000\n\nSupported audio formats\nFormat\tExtensions\tNotes\nPCM\t.pcm, .raw\tRaw PCM, default codec pcm_s16le\nWAV\t.wav\tWAV container format\nMP3\t.mp3\t\nOGG/OPUS\t.ogg, .opus\t\nAll options\nFlag\tDefault\tDescription\n--language\tzh\tLanguage code (zh or en)\n--model\tstep-asr\tASR model name\n--out\t(stdout)\tSave transcription to file\n--prompt\t(none)\tHint text to improve accuracy for domain-specific terms\n--format-type\t(auto)\tAudio format: pcm, mp3, ogg (auto-detected from extension)\n--sample-rate\t16000\tAudio sample rate in Hz\n--no-stream\tfalse\tOnly print the final complete result\n--json\tfalse\tOutput as JSON with usage statistics\n--no-itn\tfalse\tDisable inverse text normalization\n--no-rerun\tfalse\tDisable second-pass error correction\nAPI key\n\nSet STEPFUN_API_KEY environment variable, or configure it in ~/.openclaw/openclaw.json:\n\n{\n  skills: {\n    \"step-asr\": {\n      apiKey: \"YOUR_STEPFUN_API_KEY\"\n    }\n  }\n}\n\n\nGet your API key from Step Platform."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/randzero/step-asr",
    "publisherUrl": "https://clawhub.ai/randzero/step-asr",
    "owner": "randzero",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/step-asr",
    "downloadUrl": "https://openagent3.xyz/downloads/step-asr",
    "agentUrl": "https://openagent3.xyz/skills/step-asr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/step-asr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/step-asr/agent.md"
  }
}