원클릭으로
agent-interview
Create an audio interview with a selected agent using OpenAI TTS. Generates a single MP3 file with a Q&A podcast session.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create an audio interview with a selected agent using OpenAI TTS. Generates a single MP3 file with a Q&A podcast session.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | agent-interview |
| description | Create an audio interview with a selected agent using OpenAI TTS. Generates a single MP3 file with a Q&A podcast session. |
| license | MIT |
| compatibility | claude-code opencode github-copilot devin pi cursor |
Create a single MP3 audio file featuring a podcast-style interview with an agent.
OPENAI_API_KEYopenai Python package (pip install -r requirements.txt)agent_interview.py — main generator scriptrequirements.txt — Python dependenciesexamples/research-agent.json — example agent configSave the agent as a JSON file:
{
"name": "Research Navigator",
"role": "scientific literature assistant",
"description": "An agent that searches, summarizes, and explains academic papers.",
"skills": ["pubmed search", "paper summarization", "evidence synthesis"],
"purpose": "To cut the time between a research question and a useful answer.",
"tone": "curious, precise, and gently skeptical"
}
pip install -r requirements.txt
export OPENAI_API_KEY="..."
python agent_interview.py examples/research-agent.json
Optional CLI flags:
python agent_interview.py examples/research-agent.json \
--output-dir audio \
--interviewer-voice alloy \
--agent-voice nova \
--text-model gpt-4o-mini \
--tts-model tts-1
Other OpenAI TTS voices: echo, fable, onyx, shimmer.
File: {agent_name}_interview.mp3
Create a new skill or improve an existing one. Use when the user wants to capture a workflow as a reusable skill, edit a skill, or optimize its triggering.
Create Scratch 3.0 projects using Python and ScratchGen. Use when the user wants to generate a .sb3 file with sprites, scripts, and assets.
Search across multiple web providers with automatic failover. Use when the user needs quota-aware, multi-provider web search.
Write technical blog posts about real engineering challenges. Use when the user wants technical content, blog posts, tutorials, or explanations for mixed audiences including non-technical readers.
Automate browser interactions for scraping, testing, and workflows. Use when the user wants to navigate pages, fill forms, extract data, or take screenshots with Puppeteer or Playwright.
Build a composable command-line tool from API docs, OpenAPI specs, SDKs, curl examples, or existing scripts. Use when the user wants a durable CLI that future agents can run from any directory.