capture-voice-idea
Installation
SKILL.md
Capture Idea (voice)
Pipeline: audio → transcript → structured idea workspace.
Steps
- Resolve config (workspace path, user context).
- Take the audio file path from the user. Verify it exists and looks like an audio file.
- Transcribe. Prefer the
claude-transcriptionplugin's skills if installed:claude-transcription:transcribe-gemini-cleaned— fastest path, removes filler wordsclaude-transcription:transcribe-gemini-raw— verbatim if the user wants every word preserved- Fallback: prompt the user to install
claude-transcriptionor supply an existing transcript.
- Save the raw transcript to a temp path. Show the user a short preview (first ~200 words) before proceeding.
- Hand the transcript to
capture-idea:- Pass the transcript text as the raw input
- Tag the resulting
idea.mdfrontmatter withsource: voiceandaudio_file: <original-path> - Copy the audio file (or symlink) into
<workspace_path>/ideas/<idea-slug>/source-audio.<ext>so the recording stays with the workspace
- Continue through
capture-idea's formatted-variant menu so the user can pick which derived versions to generate.