whisper
Local audio transcription using faster-whisper (CPU, int8)
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Local audio transcription using faster-whisper (CPU, int8)
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Calendar operations with CalDAV
Git repository management, GitLab merge requests, and GitHub pull requests
Location tracking, place recognition, visit history, and calendar attendance
Persistent memory writes — USER.md (behavioral) and the knowledge graph (facts).
Accounting operations (ledger, invoicing, transactions, work log, investment portfolio) — runs in-process via the vendored money package
Send a push notification to the user's configured ntfy device(s). One-way (bot to phone), no reply channel.
| name | whisper |
| triggers | ["transcribe","whisper","audio","voice","speech","dictation","recording","voice memo"] |
| description | Local audio transcription using faster-whisper (CPU, int8) |
| cli | true |
| file_types | ["mp3","wav","ogg","flac","m4a","opus","webm","mp4","aac","wma"] |
| companion_skills | ["untrusted_input"] |
| dependencies | ["faster_whisper>=1.1.0"] |
Transcribe audio files locally using faster-whisper (CPU, int8 quantization). Supports all common audio formats (wav, mp3, m4a, flac, ogg, webm).
# Basic transcription (auto-selects model based on available RAM)
istota-skill whisper transcribe /path/to/audio.wav
# Specify model and language
istota-skill whisper transcribe /path/to/audio.wav --model small --language en
# Output as SRT subtitles and save to file
istota-skill whisper transcribe /path/to/audio.wav --output srt --save
# Output as WebVTT
istota-skill whisper transcribe /path/to/audio.wav --output vtt
# Plain text output
istota-skill whisper transcribe /path/to/audio.wav --output text
# List available models and RAM requirements
istota-skill whisper models
# Pre-download a model
istota-skill whisper download small
{
"status": "ok",
"model": "small",
"language": "en",
"language_probability": 0.9876,
"duration_seconds": 45.2,
"processing_seconds": 12.3,
"text": "Full transcription text...",
"segments": [
{
"start": 0.0,
"end": 3.5,
"text": "Hello, this is a test.",
"words": [
{"start": 0.0, "end": 0.5, "word": "Hello,", "probability": 0.98},
{"start": 0.6, "end": 0.9, "word": "this", "probability": 0.99}
]
}
]
}
| Model | RAM (~GB) | Speed | Quality |
|---|---|---|---|
| tiny | 1.0 | Fastest | Basic |
| base | 1.5 | Fast | Good for clear audio |
| small | 2.5 | Moderate | Good general-purpose |
| medium | 5.0 | Slow | High quality |
| large-v3 | 10.0 | Slowest | Best quality |
With --model auto (default), the largest model that fits in available RAM is selected.
--language if detection is unreliable or you know the language.--save when the user wants to keep the transcription as a file./Users/{user_id}/inbox/ or shared files.