Overview
- Skill Key
- harshilmathur/custom-podcast-discovery
- Author
- harshilmathur
- Source Repo
- openclaw/skills
- Version
- 1.0.1
- Source Path
- skills/harshilmathur/custom-podcast-discovery
- Latest Commit SHA
- db76de66461158705dbf8dac0b80a2d5b5259113
Discover, research, script, fact-check, and generate podcast episodes automatically. Multi-source topic discovery, LLM script generation, citation enforcement, ElevenLabs TTS. Zero vendor lock-in - works with any RSS feed, S3 or local storage.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 podcast 技能。 若已安装,则直接安装 podcast 技能。
# Podcast Discovery & Generation
Automated end-to-end podcast production pipeline. Discovers trending topics from configurable sources, researches them deeply, generates fact-checked scripts with citations, and produces audio via ElevenLabs TTS.
## Triggers
Use this skill when user asks to:
- "Generate a podcast"
- "Make a podcast episode"
- "Discover podcast topics"
- "Create an audio episode about X"
- "Find topics for podcast"
- "Research and script a podcast"
- "Produce a podcast episode"
## Quick Start
### 1. Configure
```bash
cd ~/.openclaw/skills/podcast
cp config.example.yaml config.yaml
# Edit config.yaml: add sources, interests, voice, storage
```
### 2. Discover Topics
```bash
python3 scripts/discover.py --config config.yaml --limit 10
```
### 3. Run Pipeline
```bash
python3 scripts/pipeline.py --config config.yaml --topic "Your Topic" --mode manual
```
## Configuration
**Minimal config.yaml:**
```yaml
sources:
- type: rss
url: https://aeon.co/feed.rss
name: Aeon
- type: hackernews
min_points: 200
interests:
- AI/Tech
- Science
voice:
voice_id: "<your-voice-id>"
storage:
type: local
path: ./output
```
**Storage options:**
- `type: s3` — Upload to S3 (requires bucket, region)
- `type: local` — Save to local directory
## Pipeline Stages
1. **Discovery** — Fetch and rank topics from sources
2. **Research** — Web search framework (OpenClaw worker populates)
3. **Script** — Generate script with LLM, enforce `[Source: URL]` citations
4. **Verify** — Cross-check claims against research sources
5. **Audio** — Strip citations, call ElevenLabs TTS
6. **Upload** — Save to S3 or local storage
Each stage can run standalone or as full pipeline.
## Usage Examples
**Discover only:**
```bash
python3 scripts/discover.py --config config.yaml --limit 5 --output topics.json
```
**Full pipeline (auto mode):**
```bash
python3 scripts/pipeline.py --config config.yaml --mode auto
```
**Specific topic:**
```bash
python3 scripts/pipelin...
# Podcast Discovery & Generation Skill Automated podcast topic discovery, research, script generation, fact-checking, and audio production using AI. Clean, configurable, open-source pipeline built for OpenClaw. ## Features - 🔍 **Multi-Source Discovery**: Fetch topics from RSS feeds, Hacker News, Nature, and more - 🧠 **Smart Ranking**: Prioritize topics by your interests using keyword matching - 📚 **Deep Research**: Structure for web research with source verification - ✍️ **Script Generation**: LLM-powered script writing with citation enforcement - ✅ **Fact Verification**: Cross-reference claims against research sources - 🎙️ **Audio Production**: ElevenLabs TTS with citation stripping - ☁️ **Flexible Storage**: S3 or local file storage - 📦 **Delivery-ready**: Designed to plug into your own delivery channel (WhatsApp/SMS/email) via a worker ## Quick Start ### 1. Install ```bash # Install via ClawHub (recommended) clawhub install podcast # Or manual install cd ~/.openclaw/skills/ git clone <repo-url> podcast cd podcast ``` ### 2. Configure ```bash cp config.example.yaml config.yaml # Edit config.yaml with your settings ``` **Required config:** - `sources`: List of RSS feeds and built-in sources - `interests`: Your topic preferences (keywords) - `voice.voice_id`: Your ElevenLabs voice ID - `storage.type`: `s3` or `local` **For S3 storage:** - `storage.bucket`: S3 bucket name - `storage.region`: AWS region - Ensure AWS credentials are configured (`aws configure`) ### 3. Discover Topics ```bash python3 scripts/discover.py --config config.yaml --limit 10 --output discovery.json ``` This scans all configured sources and outputs a ranked list of topics. ### 4. Run Full Pipeline (Manual Mode) ```bash python3 scripts/pipeline.py --config config.yaml --mode manual ``` Or specify a topic directly: ```bash python3 scripts/pipeline.py --config config.yaml --topic "AI Reasoning Models" --mode manual ``` **Manual mode** pauses after each stage so you can revi...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.