技能详情(站内镜像,无评论)
作者:Alone @al-one
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 1 · 328 · 0 current installs · 0 all-time installs
⭐ 1
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:al-one/qwen-asr
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's code and instructions match its stated purpose (upload audio to the Qwen ASR demo and return a transcript); it requests no credentials, but it will upload user audio to a third-party demo service (privacy consideration).
目的
Name, description, SKILL.md and scripts/main.py all describe transcribing audio via the Qwen ASR demo (BASE_URL = https://qwen-qwen3-asr-demo.ms.show). The script's network calls and use of gradio_client are consistent with that purpose. Requiring the 'uv' runner matches the provided usage examples (uv run ...).
说明范围
Runtime instructions tell the agent to run scripts/main.py with uv and/or pipe audio over stdin. The script uploads the audio to the Qwen ASR demo (/gradio_api/upload) and then calls the service via gradio_client to get transcripts. This is within the stated purpose, but it does mean user audio is transmitted to an external third-party endpoint — the SKILL.md mentions the demo host but does not explicitly warn about uploading potentially sensi…
安装机制
Install entries reference installing 'uv' (brew) and pip alternatives for uv/aiohttp/gradio_client. These are reasonable and expected for running the Python script. Minor inconsistency: registry metadata lists a brew requirement for 'uv', while SKILL.md metadata also includes pip-based install options; both are plausible but the mismatch is worth noticing.
证书
The skill declares no required environment variables, credentials, or config paths and the code does not read secrets or unrelated environment variables. No credentials are requested or needed for the demo service, which is proportional to the functionality.
持久
always is false and the skill does not modify other skills or system-wide configuration. It does not request permanent presence or elevated privileges.
综合结论
This skill appears to do what it says: it uploads audio to the Qwen ASR demo (https://qwen-qwen3-asr-demo.ms.show) and returns the transcript. Before installing, consider privacy and compliance: any audio you transcribe will be sent to that third-party demo service (no API key required). If the audio is sensitive, do not use this skill or run it only against a trusted/private ASR endpoint. Also note the skill expects the 'uv' runner and Python…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「🎤 Transcribe audio files using Qwen ASR. 千问STT」。简介:Transcribe audio files using Qwen ASR (千问STT). Use when the user sends voice me…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/al-one/qwen-asr/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: qwen-asr
description: Transcribe audio files using Qwen ASR (千问STT). Use when the user sends voice messages and wants them converted to text.
homepage: https://github.com/aahl/qwen-asr2api
metadata:
{
"openclaw":
{
"emoji": "🎤",
"requires": { "bins": ["uv"] },
"install":
[
{"id": "uv-brew", "kind": "brew", "formula": "uv", "bins": ["uv"], "label": "Install uv (brew)"},
{"id": "uv-pip", "kind": "pip", "formula": "uv", "bins": ["uv"], "label": "Install uv (pip)"},
{"id": "pip-aiohttp", "kind": "pip", "formula": "aiohttp", "label": "Install aiohttp (pip)"},
{"id": "pip-argparse", "kind": "pip", "formula": "argparse", "label": "Install argparse (pip)"},
{"id": "pip-gradio", "kind": "pip", "formula": "gradio_client", "label": "Install gradio (pip)"},
],
},
}
---
# Qwen ASR
Transcribe an audio file (wav/mp3/ogg...) to text using Qwen ASR. No configuration or API key required.
## Usage
```shell
uv run scripts/main.py -f audio.wav
cat audio.wav | uv run scripts/main.py > transcript.txt
```
## About
Qwen ASR is a free and open-source speech-to-text model.
It is trained on a large dataset of audio files from the web.
It is available in multiple languages.
This skill bases on the Qwen ASR Demo service (qwen-qwen3-asr-demo.ms.show).