← 返回 Skills 市场
85
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install martin-transcribe
功能描述
Speech-to-text via SkillBoss API Hub (STT, powered by Whisper and more).
使用说明 (SKILL.md)
Whisper STT via SkillBoss API Hub
Use SkillBoss API Hub's /v1/pilot to transcribe audio (STT), powered by OpenAI Whisper and other speech recognition models.
Quick start (Python)
import requests, base64, os
SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
API_BASE = "https://api.skillbossai.com/v1"
def pilot(body: dict) -> dict:
r = requests.post(
f"{API_BASE}/pilot",
headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},
json=body,
timeout=60,
)
return r.json()
# Transcribe audio file
audio_b64 = base64.b64encode(open("/path/audio.mp3", "rb").read()).decode()
result = pilot({"type": "stt", "inputs": {"audio_data": audio_b64, "filename": "audio.mp3"}})
text = result["result"]["text"]
print(text)
# Translate audio to English
result = pilot({"type": "stt", "inputs": {"audio_data": audio_b64, "filename": "audio.m4a", "task": "translate"}})
text = result["result"]["text"]
print(text)
Notes
- No local model download required; SkillBoss API Hub automatically routes to the best STT model.
SKILLBOSS_API_KEYenvironment variable required.- Response text is at
result["result"]["text"].
安全使用建议
This skill appears to do what it says: it reads local audio files and uploads them to SkillBoss for transcription using the SKILLBOSS_API_KEY. Before installing, confirm you trust api.skillbossai.com and its privacy/billing practices, avoid transcribing highly sensitive audio unless you accept uploading it to the service, store the API key securely (and rotate it if compromised), and limit the file paths the agent is allowed to access. If you need on-device transcription or tighter data control, consider a local/offline STT solution instead.
功能分析
Type: OpenClaw Skill
Name: martin-transcribe
Version: 1.0.0
The skill bundle provides documentation and example code for performing speech-to-text transcription via the SkillBoss API Hub. The code in SKILL.md demonstrates standard usage of the requests library to send base64-encoded audio to a designated API endpoint (api.skillbossai.com) and does not contain any indicators of malicious intent, data exfiltration beyond the stated purpose, or prompt injection.
能力标签
能力评估
Purpose & Capability
Name/description (speech-to-text via SkillBoss) align with the declared requirement (SKILLBOSS_API_KEY) and the runtime instructions which call SkillBoss's /v1/pilot endpoint. The requested environment variable is appropriate for calling a third‑party API.
Instruction Scope
SKILL.md instructs the agent to read local audio files (open('/path/audio.mp3')), base64-encode them, and POST to an external API. This is expected for a transcribe skill, but it does mean any audio the agent is pointed to will be uploaded to SkillBoss — a possible privacy/exfiltration concern if sensitive audio is used.
Install Mechanism
Instruction-only skill with no install spec or bundled code; nothing is written to disk by the skill itself, lowering supply-chain risk.
Credentials
Only a single API key (SKILLBOSS_API_KEY) is required, which is proportional to calling a third-party STT API. The key grants access to the external service and could incur usage/billing; no unrelated credentials are requested.
Persistence & Privilege
The skill is not marked always:true and has default invocation settings. It does not request system-wide configuration or modify other skills. No elevated persistence is requested.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install martin-transcribe - 安装完成后,直接呼叫该 Skill 的名称或使用
/martin-transcribe触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of speech-to-text transcription using SkillBoss API Hub, powered by Whisper and other models.
- Supports audio file transcription and audio translation to English.
- No need for local model downloads; API automatically selects the best model.
- Requires SKILLBOSS_API_KEY environment variable setup.
- Simple Python usage example included for quick start.
元数据
常见问题
transcribe 是什么?
Speech-to-text via SkillBoss API Hub (STT, powered by Whisper and more). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 85 次。
如何安装 transcribe?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install martin-transcribe」即可一键安装,无需额外配置。
transcribe 是免费的吗?
是的,transcribe 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
transcribe 支持哪些平台?
transcribe 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 transcribe?
由 KirkRaman(@kirkraman)开发并维护,当前版本 v1.0.0。
推荐 Skills