npx skills add https://github.com/openclaw/skills
thinkfleetai/thinkfleet-engine
voice-transcribe
Transcribe audio files using OpenAI's gpt-4o-mini-transcribe model with vocabulary hints and text replacements. Requires uv (https://docs.astral.sh/uv/).
Installation
npx skills add thinkfleetai/thinkfleet-engine --skill voice-transcribe
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existi…
866.4K installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsAlso in this package
Other skills from thinkfleetai/thinkfleet-engine · top by installs.
npx skills add thinkfleetai/thinkfleet-engine
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,450 B -
docs
SUMMARY.md177 B
History
- First seen on skills.sh
- First recorded snapshot · 12 installs
SKILL.md
voice-transcribe
transcribe audio files using openai's gpt-4o-mini-transcribe model.
when to use
when receiving voice memos (especially via whatsapp), just run:
uv run /Users/darin/thinkfleet/skills/voice-transcribe/transcribe <audio-file>
then respond based on the transcribed content.
fixing transcription errors
if darin says a word was transcribed wrong, add it to vocab.txt (for hints) or replacements.txt (for guaranteed fix). see sections below.
supported formats
- mp3, mp4, mpeg, mpga, m4a, wav, webm, ogg, opus
examples
# transcribe a voice memo
transcribe /tmp/voice-memo.ogg
# pipe to other tools
transcribe /tmp/memo.ogg | pbcopy
setup
- add your openai api key to
/Users/darin/thinkfleet/skills/voice-transcribe/.env:
`` OPENAIAPIKEY=sk-... ``
custom vocabulary
add words to vocab.txt (one per line) to help the model recognize names/jargon:
ThinkFleetis
ThinkFleet
text replacements
if the model still gets something wrong, add a replacement to replacements.txt:
wrong spelling -> correct spelling
notes
- assumes english (no language detection)
- uses gpt-4o-mini-transcribe model specifically
- caches by sha256 of audio file