# Send salute speech 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": "salute-speech",
    "name": "salute speech",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/chorus12/salute-speech",
    "canonicalUrl": "https://clawhub.ai/chorus12/salute-speech",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/salute-speech",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=salute-speech",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "salute_transcribe.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "salute-speech",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T15:36:14.143Z",
      "expiresAt": "2026-05-19T15:36:14.143Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=salute-speech",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=salute-speech",
        "contentDisposition": "attachment; filename=\"salute-speech-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "salute-speech"
      },
      "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/salute-speech"
    },
    "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/salute-speech",
    "downloadUrl": "https://openagent3.xyz/downloads/salute-speech",
    "agentUrl": "https://openagent3.xyz/skills/salute-speech/agent",
    "manifestUrl": "https://openagent3.xyz/skills/salute-speech/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/salute-speech/agent.md"
  }
}
```
## Documentation

### Audio Transcription with Sber Salute Speech

Transcribe audio/video files to text with timestamps via Salute Speech async REST API.

### Requirements

API Key: Environment variable SALUTE_AUTH_DATA must be set (Base64-encoded client_id:client_secret or raw authorization key from https://developers.sber.ru/studio/).
SSL note: The script disables SSL verification by default (verify_ssl=False) because Sber's certificate chain is non-standard. This is expected.

### Supported formats & encodings

Audio encodingContent-TypeTypical extensionsMP3audio/mpeg.mp3PCM_S16LEaudio/wav.wavOPUSaudio/ogg.ogg, .opusFLACaudio/flac.flacALAWaudio/alaw.alawMULAWaudio/mulaw.mulaw

### Supported languages

ru-RU, en-US, kk-KZ (Kazakh), ky-KG (Kyrgyz), uz-UZ (Uzbek).

### Workflow

Identify input files — from user request.
Read API key from host environment.
Run transcription — execute salute_transcribe.py with uv and appropriate arguments.
Deliver results — present to user human-readable transcript with timestamps to the user and give a direct link to files.

### Usage

uv run --with requests {baseDir}/salute_transcribe.py \\
  --file /path/to/audio.mp3 \\
  --output_dir ~/.openclaw/workspace/transcriptions \\
  --lang ru-RU

### Arguments

ArgumentRequiredDefaultDescription--fileYes—Path to audio/video file--output_dirNo~/.openclaw/workspace/transcribationsOutput directory for results--langNoru-RULanguage code: ru-RU, en-US, kk-KZ, ky-KG, uz-UZ--audio-encodingNoMP3Codec: MP3, PCM_S16LE, OPUS, FLAC, ALAW, MULAW--modelNogeneralRecognition model: general or callcenter--hyp-countNo1Number of alternative hypotheses: 1 or 2--max-wait-timeNo300Max seconds to wait for async result--printNooffAlso print transcription to stdout

### Content-Type mapping

When the file extension doesn't match audio/mpeg, adjust content_type in the script or add logic. Current default is audio/mpeg (MP3). For .wav files use audio/wav, etc.

### Output files

For input file meetingABC.mp3 the script produces:

FileDescriptionmeetingABC_recognition_orig.jsonRaw API response (full JSON with all hypotheses, timing, confidence)meetingABC_pretty.txtFormatted human-readable transcript with timestamps

### Output text format

[00:01 - 00:20]:
Ну, даже если сосредоточиться на идее узкой щели.

[00:20 - 00:45]:
Следующий фрагмент текста здесь.

### Notes

Token is valid for ~30 minutes; the script fetches a new one each run.
Large files (>1 hour) may need --max-wait-time increased beyond 300s.
The callcenter model is optimized for telephony audio (8kHz, mono).
Profanity filter is disabled by default (enable_profanity_filter=False).
The script uses normalized text by default (numbers as digits, abbreviations expanded). Raw text is also available in the JSON output.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: chorus12
- 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-12T15:36:14.143Z
- Expires at: 2026-05-19T15:36:14.143Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/salute-speech)
- [Send to Agent page](https://openagent3.xyz/skills/salute-speech/agent)
- [JSON manifest](https://openagent3.xyz/skills/salute-speech/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/salute-speech/agent.md)
- [Download page](https://openagent3.xyz/downloads/salute-speech)