ワンクリックで
transcribe
Local speech-to-text transcription on Apple Silicon macOS. Supports wav directly and other audio formats via ffmpeg.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Local speech-to-text transcription on Apple Silicon macOS. Supports wav directly and other audio formats via ffmpeg.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Interactive browser automation via Chrome DevTools Protocol. Use when you need to interact with web pages, test frontends, or when user interaction with a visible browser is required.
Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. Lightweight, no browser required.
Google Drive CLI for listing, searching, uploading, downloading, and sharing files and folders.
Google Calendar CLI for listing calendars, viewing/creating/updating events, and checking availability.
Gmail CLI for searching emails, reading threads, sending messages, managing drafts, and handling labels/attachments.
Fetch transcripts from YouTube videos for summarization and analysis.
| name | transcribe |
| description | Local speech-to-text transcription on Apple Silicon macOS. Supports wav directly and other audio formats via ffmpeg. |
Local speech-to-text using parakeet-cpp-transcribe on Apple Silicon macOS.
{baseDir}/transcribe.sh <audio-file>
The first run downloads the macOS arm64 binary from the latest badlogic/pibot GitHub release into the extension's ignored bin directory:
{extensionDir}/bin/parakeet-cpp-transcribe
({extensionDir} is the parent directory of this skill's {baseDir}.) The binary downloads its GGUF model automatically if missing.
Plain text timestamped in 15 second chunks is written to stdout:
[00:00-00:15] transcript text
[00:15-00:30] more transcript text
Model/GGML diagnostic logs are written to stderr. Redirect stderr to hide them:
{baseDir}/transcribe.sh <audio-file> 2>/dev/null
curl and tarffmpeg for non-WAV input: brew install ffmpeg