Agent skill · Content & Marketing

Podcast Generate

Generate podcast episodes from user-provided content or by searching the web for specified topics. If user uploads a text file/article, creates a dual-host dialogue podcast (or single-host upon request). If no content is provided, searches the web for information about the user-specified topic and generates a podcast. Duration scales with content size (3-20 minutes, ~240 chars/min). Uses z-ai-web-dev-sdk for LLM script generation and TTS audio synthesis. Outputs both a podcast script (Markdown) and a complete audio file (WAV).

jjyaoaogithub.com/jjyaoaoGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add jjyaoao/HelloAgents --skill podcast-generate --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 7
SKILL.md size: 3 KB
Bundled scripts: yes
Path: skills/podcast-generate/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,615
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Podcast Generate Skill(TypeScript 版本) 根据用户提供的资料或联网搜索结果,自动生成播客脚本与音频。 该 Skill 适用于: - 长文内容的快速理解和播客化 - 知识型内容的音频化呈现 - 热点话题的深度解读和讨论 - 实时信息的搜索和播客制作 --- ## 能力说明 ### 本 Skill 可以做什么 - **从文件生成**:接收一篇资料(txt/md/docx/pdf等文本格式),生成对谈播客脚本和音频 - **联网搜索生成**:根据用户指定的主题,联网搜索最新信息,生成播客脚本和音频 - 自动控制时长,根据内容长度自动调整(3-20 分钟) - 生成 Markdown 格式的播客脚本(可人工编辑) - 使用 z-ai TTS 合成高质量音频并拼接为最终播客 ### 本 Skill 当前不做什么 - 不生成 mp3 / 字幕 / 时间戳 - 不支持三人及以上播客角色 - 不加入背景音乐或音效 --- ## 文件与职责说明 本 Skill 由以下文件组成: - `generate.ts` 统一入口(支持文件模式和搜索模式) - **文件模式**:读取用户上传的文本文件 → 生成播客 - **搜索模式**:调用 web-search skill 获取资料 → 生成播客 - 使用 z-ai-web-dev-sdk 进行 LLM 脚本生成 - 使用 z-ai-web-dev-sdk 进行 TTS 音频生成 - 自动拼接音频片段 - 只输出最终文件 - `readme.md` 使用说明文档 - `SKILL.md` 当前文件,描述 Skill 能力、边界与使用约定 - `package.json` Node.js 项目配置与依赖 - `tsconfig.json` TypeScript 编译配置 --- ## 输入与输出约定 ### 输入(二选一) **方式 1:文件上传** - 一篇资料文件(txt / md / docx / pdf 等文本格式) - 资料长度不限,Skill 会自动压缩为合适长度 **方式 2:联网搜索** - 用户指定一个搜索主题 - 自动调用 web-search skill 获取相关内容 - 整合多个搜索结果作为资料来源 ### 输出(只输出 2 个文件) - `podcast_script.md` 播客脚本(Markdown 格式,可人工编辑) - `podcast.wav` 最终拼接完成的播客音频 **不输出中间文件**(如 segments.jsonl、meta.json 等) --- ## 运行方式 ### 依赖环境 - Node.js 18+ - z-ai-web-dev-sdk(已安装) - web-search skill(用于联网搜索模式) **不需要** z-ai CLI ###

What's inside
Steps it walks through
  1. 能力说明
  2. 本 Skill 可以做什么
  3. 本 Skill 当前不做什么
  4. 文件与职责说明
  5. 输入与输出约定
  6. 输入(二选一)
  7. 输出(只输出 2 个文件)
  8. 运行方式
  9. 依赖环境
  10. 安装依赖
  11. 使用示例
  12. 从文件生成播客
  13. 联网搜索生成播客
  14. 参数说明
Ships with 6 files
  • LICENSE.txt
  • generate.ts
  • package.json
  • readme.md
  • test_data/segments.jsonl
  • tsconfig.json
Commands it runs
npm install
npm run generate -- --input=test_data/material.txt --out_dir=out
npm run generate -- --topic="最新AI技术突破" --out_dir=out
npm run generate -- --topic="量子计算应用场景" --out_dir=out --duration=8
npm run generate -- --topic="气候变化影响" --out_dir=out --mode=single-male
More from HelloAgents
All skills →
About this skill
What does the Podcast Generate skill do?

Generate podcast episodes from user-provided content or by searching the web for specified topics. If user uploads a text file/article, creates a dual-host dialogue podcast (or single-host upon request). If no content is provided, searches the web for information about the user-specified topic and generates a podcast. Duration scales with content size (3-20 minutes, ~240 chars/min). Uses z-ai-web-dev-sdk for LLM script generation and TTS audio synthesis. Outputs both a podcast script (Markdown) and a complete audio file (WAV).

How do I install it?

Run `npx skills add jjyaoao/HelloAgents --skill podcast-generate --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jjyaoao/HelloAgents, a repository with 2,615 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going