Source profileQuality 71/100Review permissions

openai/skills/skills/.curated/transcribe/SKILL.md

transcribe

Transcribe audio files to text with optional diarization and known-speaker hints. Use when a user asks to transcribe speech from audio/video, extract text from recordings, or label speakers in interviews or meetings.

Source repository stars
24,265
Declared platforms
0
Static risk flags
1
Last source update
2026-07-14
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Transcribe audio using OpenAI, with optional speaker diarization when requested. Prefer the bundled CLI for deterministic, repeatable runs.

Best for

  • Use when a user asks to transcribe speech from audio/video, extract text from recordings, or label speakers in interviews or meetings.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/openai/skills --skill "skills/.curated/transcribe"
Safe inspection promptEditorial

Inspect the Agent Skill "transcribe" from https://github.com/openai/skills/blob/49f948faa9258a0c61caceaf225e179651397431/skills/.curated/transcribe/SKILL.md at commit 49f948faa9258a0c61caceaf225e179651397431. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Workflow

    1. Collect inputs: audio file path(s), desired response format (text/json/diarizedjson), optional language hint, and any known speaker references. 2. Verify OPENAIAPIKEY is set. If missing, ask the user to set it locally (do not ask them to paste the key). 3. Run the bundled tra…

    Collect inputs: audio file path(s), desired response format (text/json/diarizedjson), optional language hint, and any known speaker references.Verify OPENAIAPIKEY is set. If missing, ask the user to set it locally (do not ask them to paste the key).Run the bundled transcribediarize.py CLI with sensible defaults (fast text transcription).
  2. 02

    CLI quick start

    Single file (fast text default):

    Single file (fast text default):Diarization with known speakers (up to 4):Plain text output (explicit):
  3. 03

    Decision rules

    Default to gpt-4o-mini-transcribe with --response-format text for fast transcription.

    Default to gpt-4o-mini-transcribe with --response-format text for fast transcription.If the user wants speaker labels or diarization, use --model gpt-4o-transcribe-diarize --response-format diarizedjson.If audio is longer than 30 seconds, keep --chunking-strategy auto.
  4. 04

    Output conventions

    Use output/transcribe// for evaluation runs.

    Use output/transcribe// for evaluation runs.Use --out-dir for multiple files to avoid overwriting.- Use output/transcribe// for evaluation runs. - Use --out-dir for multiple files to avoid overwriting.

Permission review

Static risk signals and limitations

Runs scripts

medium · line 30

The documentation asks the agent to run terminal commands or scripts.

python3 -m pip install openai

Runs scripts

medium · line 50

The documentation asks the agent to run terminal commands or scripts.

python3 "$TRANSCRIBE_CLI" \

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score71/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars24,265SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
openai/skills
Skill path
skills/.curated/transcribe/SKILL.md
Commit
49f948faa9258a0c61caceaf225e179651397431
License
Not declared
Collected
2026-07-28
Default branch
main
View the original SKILL.md

Audio Transcribe

Transcribe audio using OpenAI, with optional speaker diarization when requested. Prefer the bundled CLI for deterministic, repeatable runs.

Workflow

  1. Collect inputs: audio file path(s), desired response format (text/json/diarized_json), optional language hint, and any known speaker references.
  2. Verify OPENAI_API_KEY is set. If missing, ask the user to set it locally (do not ask them to paste the key).
  3. Run the bundled transcribe_diarize.py CLI with sensible defaults (fast text transcription).
  4. Validate the output: transcription quality, speaker labels, and segment boundaries; iterate with a single targeted change if needed.
  5. Save outputs under output/transcribe/ when working in this repo.

Decision rules

  • Default to gpt-4o-mini-transcribe with --response-format text for fast transcription.
  • If the user wants speaker labels or diarization, use --model gpt-4o-transcribe-diarize --response-format diarized_json.
  • If audio is longer than ~30 seconds, keep --chunking-strategy auto.
  • Prompting is not supported for gpt-4o-transcribe-diarize.

Output conventions

  • Use output/transcribe/<job-id>/ for evaluation runs.
  • Use --out-dir for multiple files to avoid overwriting.

Dependencies (install if missing)

Prefer uv for dependency management.

uv pip install openai

If uv is unavailable:

python3 -m pip install openai

Environment

  • OPENAI_API_KEY must be set for live API calls.
  • If the key is missing, instruct the user to create one in the OpenAI platform UI and export it in their shell.
  • Never ask the user to paste the full key in chat.

Skill path (set once)

export CODEX_HOME="${CODEX_HOME:-$HOME/.codex}"
export TRANSCRIBE_CLI="$CODEX_HOME/skills/transcribe/scripts/transcribe_diarize.py"

User-scoped skills install under $CODEX_HOME/skills (default: ~/.codex/skills).

CLI quick start

Single file (fast text default):

python3 "$TRANSCRIBE_CLI" \
  path/to/audio.wav \
  --out transcript.txt

Diarization with known speakers (up to 4):

python3 "$TRANSCRIBE_CLI" \
  meeting.m4a \
  --model gpt-4o-transcribe-diarize \
  --known-speaker "Alice=refs/alice.wav" \
  --known-speaker "Bob=refs/bob.wav" \
  --response-format diarized_json \
  --out-dir output/transcribe/meeting

Plain text output (explicit):

python3 "$TRANSCRIBE_CLI" \
  interview.mp3 \
  --response-format text \
  --out interview.txt

Reference map

  • references/api.md: supported formats, limits, response formats, and known-speaker notes.

Alternatives

Compare before choosing