원클릭으로
transcribe-audio-to-text
Transcribe audio files to text using audinota cli
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Transcribe audio files to text using audinota cli
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Look up authoritative, up-to-date Claude Code, Agent SDK, hooks, MCP, skills, plugins, settings, subagents, and admin documentation. Use when the user asks how a Claude Code feature works, what a config field does, how to set up hooks/MCP/skills/subagents/plugins, when troubleshooting a Claude Code error or unexpected behavior, or when you need to cite current official docs rather than rely on training-cutoff knowledge.
Maintain the release-history.rst changelog for a Python project before publishing a new version. Use when the user wants to prepare release notes, update changelog, or is about to publish/tag a new version.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
File-based task management with shai-tix CLI. Use when user mentions kanban, ticket, planning, task tracking, or references tickets by [id] or #id format. MUST run via: uvx --from shai-tix==0.1.3 shai-tix <cmd>. Data stored in .tix/ directory (NOT .shai-tix/).
Create properly formatted references to paths (files or folders) in a git repository. Use when writing docs that need to link to any path in the repo.
Python unit testing patterns for pytest, including test file structure, fixtures, mocks, and coverage strategy. Use when asked to write tests (unit/integration) for any Python module, function, class, or method.
| name | transcribe-audio-to-text |
| description | Transcribe audio files to text using audinota cli |
Convert audio files to text using audinota transcription service.
# Use default audio file (output from youtube-video-to-audio skill)
python scripts/transcribe_audio.py
# Specify custom audio file
python scripts/transcribe_audio.py --audio-file-path "/path/to/audio.mp3"
--audio-file-path - Path to audio file to transcribe (default: ~/tmp/download_audio_result.mp3)# Transcribe default audio file
python scripts/transcribe_audio.py
# Transcribe custom audio file
python scripts/transcribe_audio.py --audio-file-path "~/Music/podcast.mp3"
# Get help
python scripts/transcribe_audio.py -h
~/Documents/GitHub/audinota-project/.venv/bin/audinotaThis skill works seamlessly with the youtube-video-to-audio skill. By default, it transcribes the audio file downloaded by that skill at ~/tmp/download_audio_result.mp3.