# Send Local Vosk STT to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "local-vosk",
    "name": "Local Vosk STT",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sfkiwi/local-vosk",
    "canonicalUrl": "https://clawhub.ai/sfkiwi/local-vosk",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/local-vosk",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=local-vosk",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "local-vosk",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T02:07:38.902Z",
      "expiresAt": "2026-05-12T02:07:38.902Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=local-vosk",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=local-vosk",
        "contentDisposition": "attachment; filename=\"local-vosk-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "local-vosk"
      },
      "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/local-vosk"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/local-vosk",
    "downloadUrl": "https://openagent3.xyz/downloads/local-vosk",
    "agentUrl": "https://openagent3.xyz/skills/local-vosk/agent",
    "manifestUrl": "https://openagent3.xyz/skills/local-vosk/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/local-vosk/agent.md"
  }
}
```
## Documentation

### Local Vosk STT

Lightweight local speech-to-text using Vosk. Fully offline after model download.

### Use Cases

Telegram voice messages — transcribe .ogg voice notes automatically
Audio files — any format ffmpeg supports
Offline transcription — no API keys, no cloud, no costs

### Quick Start

# Transcribe Telegram voice message
./skills/local-vosk/scripts/transcribe voice_message.ogg

# Transcribe any audio
./skills/local-vosk/scripts/transcribe audio.mp3

# With language (default: en-us)
./skills/local-vosk/scripts/transcribe audio.wav --lang en-us

### Supported Formats

Any format ffmpeg can decode: ogg (Telegram), mp3, wav, m4a, webm, flac, etc.

### Models

Default model: vosk-model-small-en-us-0.15 (~40MB)

Other models available at https://alphacephei.com/vosk/models

### Setup (if not installed)

pip3 install vosk --user --break-system-packages

# Download model
mkdir -p ~/vosk-models && cd ~/vosk-models
wget https://alphacephei.com/vosk/models/vosk-model-small-en-us-0.15.zip
unzip vosk-model-small-en-us-0.15.zip

### Notes

Quality is good for conversational speech
For higher accuracy, use larger models or faster-whisper
Processes audio at ~10x realtime on typical hardware
Telegram voice messages are .ogg format — works out of the box
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sfkiwi
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T02:07:38.902Z
- Expires at: 2026-05-12T02:07:38.902Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/local-vosk)
- [Send to Agent page](https://openagent3.xyz/skills/local-vosk/agent)
- [JSON manifest](https://openagent3.xyz/skills/local-vosk/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/local-vosk/agent.md)
- [Download page](https://openagent3.xyz/downloads/local-vosk)