为自然搜索排名提供站点审计、内容撰写与竞品分析。
设计与多媒体
speech
试用通过 OpenAI 文字转语音接口,把文本生成单条或批量音频,沿用内置 CLI。
它能做什么
基于 OpenAI 音频接口生成语音。根据请求自动选择单条或批量模式,先收集文本、声音、风格与格式等参数,再调用打包好的 scripts/text_to_speech.py CLI(默认模型 gpt-4o-mini-tts-2025-12-15,默认声音 cedar)。把用户的方向描述整理成简短的结构化规格,不改写原文。仅支持内置声音,自定义声音不在范围内。调用前需要设置 OPENAI_API_KEY;单次输入 ≤ 4096 字符,每分钟最多 50 次请求。最终产物写入 output/speech/。
什么时候用它
- 为产品演示或解说词生成单条旁白
- 批量生成 IVR / 电话菜单提示音
- 按指定声音与节奏朗读无障碍内容
- 在不改动原文的前提下调整语气、节奏与重音
技能文档
Speech Generation Skill
Generate spoken audio for the current project (narration, product demo voiceover, IVR prompts, accessibility reads). Defaults to gpt-4o-mini-tts-2025-12-15 and built-in voices, and prefers the bundled CLI for deterministic, reproducible runs.
When to use
- Generate a single spoken clip from text
- Generate a batch of prompts (many lines, many files)
Decision tree (single vs batch)
- If the user provides multiple lines/prompts or wants many outputs -> batch
- Else -> single
Workflow
- Decide intent: single vs batch (see decision tree above).
- Collect inputs up front: exact text (verbatim), desired voice, delivery style, format, and any constraints.
- If batch: write a temporary JSONL under tmp/ (one job per line), run once, then delete the JSONL.
- Augment instructions into a short labeled spec without rewriting the input text.
- Run the bundled CLI (
scripts/text_to_speech.py) with sensible defaults (see references/cli.md). - For important clips, validate: intelligibility, pacing, pronunciation, and adherence to constraints.
- Iterate with a single targeted change (voice, speed, or instructions), then re-check.
- Save/return final outputs and note the final text + instructions + flags used.
Temp and output conventions
- Use
tmp/speech/for intermediate files (for example JSONL batches); delete when done. - Write final artifacts under
output/speech/when working in this repo. - Use
--outor--out-dirto control output paths; keep filenames stable and descriptive.
Dependencies (install if missing)
Prefer uv for dependency management.
Python packages:
uv pip install openai
If uv is unavailable:
python3 -m pip install openai
Environment
OPENAI_API_KEYmust be set for live API calls.
If the key is missing, give the user these steps:
- Create an API key in the OpenAI platform UI: https://platform.openai.com/api-keys
- Set
OPENAI_API_KEYas an environment variable in their system. - Offer to guide them through setting the environment variable for their OS/shell if needed.
- Never ask the user to paste the full key in chat. Ask them to set it locally and confirm when ready.
If installation isn't possible in this environment, tell the user which dependency is missing and how to install it locally.
Defaults & rules
- Use
gpt-4o-mini-tts-2025-12-15unless the user requests another model. - Default voice:
cedar. If the user wants a brighter tone, prefermarin. - Built-in voices only. Custom voices are out of scope for this skill.
instructionsare supported for GPT-4o mini TTS models, but not fortts-1ortts-1-hd.- Input length must be <= 4096 characters per request. Split longer text into chunks.
- Enforce 50 requests/minute. The CLI caps
--rpmat 50. - Require
OPENAI_API_KEYbefore any live API call. - Provide a clear disclosure to end users that the voice is AI-generated.
- Use the OpenAI Python SDK (
openaipackage) for all API calls; do not use raw HTTP. - Prefer the bundled CLI (
scripts/text_to_speech.py) over writing new one-off scripts. - Never modify
scripts/text_to_speech.py. If something is missing, ask the user before doing anything else.
Instruction augmentation
Reformat user direction into a short, labeled spec. Only make implicit details explicit; do not invent new requirements.
Quick clarification (augmentation vs invention):
- If the user says "narration for a demo", you may add implied delivery constraints (clear, steady pacing, friendly tone).
- Do not introduce a new persona, accent, or emotional style the user did not request.
Template (include only relevant lines):
Voice Affect:
Tone:
Pacing:
Emotion:
Pronunciation:
Pauses:
Emphasis:
Delivery:
Augmentation rules:
- Keep it short; add only details the user already implied or provided elsewhere.
- Do not rewrite the input text.
- If any critical detail is missing and blocks success, ask a question; otherwise proceed.
Examples
Single example (narration)
Input text: "Welcome to the demo. Today we'll show how it works."
Instructions:
Voice Affect: Warm and composed.
Tone: Friendly and confident.
Pacing: Steady and moderate.
Emphasis: Stress "demo" and "show".
Batch example (IVR prompts)
{"input":"Thank you for calling. Please hold.","voice":"cedar","response_format":"mp3","out":"hold.mp3"}
{"input":"For sales, press 1. For support, press 2.","voice":"marin","instructions":"Tone: Clear and neutral. Pacing: Slow.","response_format":"wav"}
Instructioning best practices (short list)
- Structure directions as: affect -> tone -> pacing -> emotion -> pronunciation/pauses -> emphasis.
- Keep 4 to 8 short lines; avoid conflicting guidance.
- For names/acronyms, add pronunciation hints (e.g., "enunciate A-I") or supply a phonetic spelling in the text.
- For edits/iterations, repeat invariants (e.g., "keep pacing steady") to reduce drift.
- Iterate with single-change follow-ups.
More principles: references/prompting.md. Copy/paste specs: references/sample-prompts.md.
Guidance by use case
Use these modules when the request is for a specific delivery style. They provide targeted defaults and templates.
- Narration / explainer:
references/narration.md - Product demo / voiceover:
references/voiceover.md - IVR / phone prompts:
references/ivr.md - Accessibility reads:
references/accessibility.md
CLI + environment notes
- CLI commands + examples:
references/cli.md - API parameter quick reference:
references/audio-api.md - Instruction patterns + examples:
references/voice-directions.md - If network approvals / sandbox settings are getting in the way:
references/codex-network.md
Reference map
references/cli.md: how to run speech generation/batches viascripts/text_to_speech.py(commands, flags, recipes).references/audio-api.md: API parameters, limits, voice list.references/voice-directions.md: instruction patterns and examples.references/prompting.md: instruction best practices (structure, constraints, iteration patterns).references/sample-prompts.md: copy/paste instruction recipes (examples only; no extra theory).references/narration.md: templates + defaults for narration and explainers.references/voiceover.md: templates + defaults for product demo voiceovers.references/ivr.md: templates + defaults for IVR/phone prompts.references/accessibility.md: templates + defaults for accessibility reads.references/codex-network.md: environment/sandbox/network-approval troubleshooting.
常见问题
- 能创建自定义声音吗?
- 不能。仅支持内置声音,自定义声音明确不在范围内。
- 默认使用哪个模型和声音?
- 模型为 gpt-4o-mini-tts-2025-12-15,默认声音 cedar;想要更明亮的音色可切换到 marin。
- 运行前需要做哪些环境准备?
- 安装 openai Python 包(推荐用 uv),并在本地设置 OPENAI_API_KEY;技能文档明确要求不要把密钥贴到聊天里。
相关技能
通过 OAuth 认证网关管理 Stripe 客户、订阅、发票、产品、价格和支付。
通过 OAuth 代理调用 Twilio API,完成短信发送、语音外呼与电话号资源管理。
通过一次 REST API 调用,向 10 个社交平台发布视频、图片、文字与文档。
通过托管 OAuth 代理访问 YouTube Data API v3,搜索与管理视频、播放列表、频道、订阅和评论。
用可量化的层级、间距、字号、配色与版式规则,绘制并诊断视觉作品。
OpenAI 的更多技能
浏览全部技能按文档优先流程,为 ChatGPT Apps SDK 应用搭建 MCP 服务端与组件 UI 的工程骨架。
通过复用目标文件已发布的设计系统(组件、变量、样式),在 Figma 中构建或更新整页屏幕。
按五阶段流程从代码库生成与之对齐的 Figma 设计系统,每个阶段都设有强制用户检查点。
通过 use_figma MCP 在 Figma 文件中执行 JavaScript 的规则与避坑参考。
生成 Codex 兼容的动画宠物,附带校验后的图集、QA 拼图和 pet.json 打包。
imagegen
官方通过 Codex 内置的 image_gen 工具生成或编辑位图,按结构化提示词支持新图、编辑与批量变体。