一键导入
speech-to-text
When the user needs to transcribe speech (such as .mp3, .wav, .ogg) into text, use the python_repl tool to generate text.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
When the user needs to transcribe speech (such as .mp3, .wav, .ogg) into text, use the python_repl tool to generate text.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Schedule reminders and recurring tasks. Actions: add, list, remove or set_context.
Periodic wake-up service that checks HEARTBEAT.md for pending tasks and executes them automatically. Use this skill to write or update HEARTBEAT.md.
Private knowledge base for indexing multimodal files or folders into a knowledge graph, supporting multi-hop graph retrieval
Generate wiki docs + Mermaid diagrams for any codebase. Use when the user asks to document a codebase, generate architecture diagrams, or create a structured wiki for a repo.
Parse an image from a file path to obtain a description, enabling non-multimodal LLMs to have vision capabilities.
When the user needs to transcribe video (such as .mp4, .mkv, .avi) into text, use the python_repl tool to generate text.
| name | speech_to_text |
| description | When the user needs to transcribe speech (such as .mp3, .wav, .ogg) into text, use the python_repl tool to generate text. |
from skills.builtin.core.speech_to_text.scripts import stt
if __name__ == '__main__':
audio_path: str = "{placeholder}" # <- replace with the absolute path of the input audio file
res = stt(audio_path)
print(res)