Install explicitly
$ afk install-agent-skill
The skill is installed at ~/.agents/skills/afk-transcription. A different existing copy is not overwritten unless you deliberately use --force.
Turn a folder of recordings into matching transcript files with a small shell loop. AFK's CLI takes one file at a time, so wrap each input in the loop; the same pattern gives an agent a clear handoff.
This is the complete pattern for a folder of M4A recordings. Each command writes its transcript to a matching TXT file:
$ for f in *.m4a; do
> afk transcribe "$f" > "${f%.*}.txt"
> done
*.m4a pattern finds the files in the current folder.${f%.*}.txt changes the extension while keeping the base name.AFK bundles an Agent Skill that explains quoting paths, keeping transcript output on stdout, keeping progress and errors on stderr, handling MP4, and separating local transcription from any later step.
$ afk install-agent-skill
The skill is installed at ~/.agents/skills/afk-transcription. A different existing copy is not overwritten unless you deliberately use --force.
Transcript text goes to stdout. Model status and errors go to stderr, so an agent or shell can redirect the text without swallowing diagnostics.
The installed skill points an agent to the CLI, its output streams, and the local transcription steps.
The agents guide covers the installed skill, and the CLI reference owns flags and exit behavior. For MP4 recordings, read the video-to-text use case.