{
  "schemaVersion": "1.0",
  "item": {
    "slug": "whisper-local-api",
    "name": "Whisper Local Api",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Hantok/whisper-local-api",
    "canonicalUrl": "https://clawhub.ai/Hantok/whisper-local-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/whisper-local-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=whisper-local-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/bootstrap.sh",
      "scripts/healthcheck.sh",
      "scripts/smoke-test.sh",
      "scripts/start.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",
      "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/whisper-local-api"
    },
    "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-local-api",
    "agentPageUrl": "https://openagent3.xyz/skills/whisper-local-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/whisper-local-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/whisper-local-api/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 Local API - Secure & Private ASR",
        "body": "Deploy a privacy-first, 100% local speech-to-text service in a deterministic way. This allows OpenClaw to process audio transcriptions safely on your own hardware without ever contacting third-party cloud APIs."
      },
      {
        "title": "Key SEO & Security Features",
        "body": "100% Offline & Private: Your voice data, commands, and transcriptions never leave your host system. Zero cloud dependencies.\nHighly Accurate: Uses the large-v3-turbo model via faster-whisper, achieving state-of-the-art accuracy even with accents or background noise.\nMemory Safe: Operates around ~400-500MB of RAM, making it extremely lightweight for VPS or low-resource edge servers.\nOpenAI API Compatible: Exposes a strict /v1/audio/transcriptions endpoint mimicking OpenAI's JSON format. Compatible natively with any software that supports OpenAI's Whisper API."
      },
      {
        "title": "Standard Workflow",
        "body": "Install/update runtime:\nbash scripts/bootstrap.sh\n\n\nStart service:\nbash scripts/start.sh\n\n\nValidate service health:\nbash scripts/healthcheck.sh\n\n\n(Optional) Run a smoke transcription test with a local audio file:\nbash scripts/smoke-test.sh /path/to/test-speech.mp3"
      },
      {
        "title": "Repo Location",
        "body": "Default install/update path used by scripts:\n\n~/whisper-local-api\n\nOverride with env var before running scripts:\n\nWHISPER_DIR=/custom/path bash scripts/bootstrap.sh"
      },
      {
        "title": "OpenClaw Integration Notes",
        "body": "After the healthcheck passes, use the secure local endpoint:\n\nURL: http://localhost:9000\nEndpoint: /v1/audio/transcriptions\n\nNo authentication tokens are passed over the network."
      },
      {
        "title": "Safety Rules",
        "body": "Ask before any package-manager operations.\nThe API securely binds locally to 0.0.0.0. If exposing to the public internet, deploy behind a secure reverse proxy (like Nginx) and enforce HTTPS + Basic Auth.\nThis service will safely auto-fallback memory allocation modes (float16 -> int8) to prevent CPU crashes."
      }
    ],
    "body": "Whisper Local API - Secure & Private ASR\n\nDeploy a privacy-first, 100% local speech-to-text service in a deterministic way. This allows OpenClaw to process audio transcriptions safely on your own hardware without ever contacting third-party cloud APIs.\n\nKey SEO & Security Features\n100% Offline & Private: Your voice data, commands, and transcriptions never leave your host system. Zero cloud dependencies.\nHighly Accurate: Uses the large-v3-turbo model via faster-whisper, achieving state-of-the-art accuracy even with accents or background noise.\nMemory Safe: Operates around ~400-500MB of RAM, making it extremely lightweight for VPS or low-resource edge servers.\nOpenAI API Compatible: Exposes a strict /v1/audio/transcriptions endpoint mimicking OpenAI's JSON format. Compatible natively with any software that supports OpenAI's Whisper API.\nStandard Workflow\nInstall/update runtime:\nbash scripts/bootstrap.sh\n\nStart service:\nbash scripts/start.sh\n\nValidate service health:\nbash scripts/healthcheck.sh\n\n(Optional) Run a smoke transcription test with a local audio file:\nbash scripts/smoke-test.sh /path/to/test-speech.mp3\n\nRepo Location\n\nDefault install/update path used by scripts:\n\n~/whisper-local-api\n\nOverride with env var before running scripts:\n\nWHISPER_DIR=/custom/path bash scripts/bootstrap.sh\n\nOpenClaw Integration Notes\n\nAfter the healthcheck passes, use the secure local endpoint:\n\nURL: http://localhost:9000\nEndpoint: /v1/audio/transcriptions\n\nNo authentication tokens are passed over the network.\n\nSafety Rules\nAsk before any package-manager operations.\nThe API securely binds locally to 0.0.0.0. If exposing to the public internet, deploy behind a secure reverse proxy (like Nginx) and enforce HTTPS + Basic Auth.\nThis service will safely auto-fallback memory allocation modes (float16 -> int8) to prevent CPU crashes."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Hantok/whisper-local-api",
    "publisherUrl": "https://clawhub.ai/Hantok/whisper-local-api",
    "owner": "Hantok",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/whisper-local-api",
    "downloadUrl": "https://openagent3.xyz/downloads/whisper-local-api",
    "agentUrl": "https://openagent3.xyz/skills/whisper-local-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/whisper-local-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/whisper-local-api/agent.md"
  }
}