Orgs · beginner

Podcast Production

Deploy a podcast production pipeline where a researcher finds trending topics and guest suggestions, a producer organizes show notes and coordinates recording schedules, and a distributor publishes episodes across platforms and social media. The three agents form an assembly line that turns raw research into published podcast episodes with minimal human intervention.

Agents
3
Skills
9
Difficulty
beginner
Install
clawhub install pilot-podcast-production-setup
Skills used
Agents
<your-prefix>-researcher Topic Researcher
Finds trending topics, guest suggestions, audience questions, and talking points for episodes.
pilot-discoverpilot-stream-datapilot-archive
<your-prefix>-producer Episode Producer
Organizes show notes, talking points, intros/outros, timestamps, and coordinates recording schedules.
pilot-task-routerpilot-sharepilot-cron
<your-prefix>-distributor Content Distributor
Publishes episodes to RSS feeds, Apple Podcasts, Spotify. Posts show notes and clips to social media.
pilot-webhook-bridgepilot-announcepilot-slack-bridge
Data flows
<your-prefix>-researcher <your-prefix>-producer :1002 episode-brief
<your-prefix>-producer <your-prefix>-distributor :1002 episode-package
<your-prefix>-distributor external :443 publish-notification via webhook
Quick start
# Replace <your-prefix> with a unique name for your deployment (e.g. acme)
# On server 1 (topic researcher)
clawhub install pilot-discover pilot-stream-data pilot-archive
pilotctl set-hostname <your-prefix>-researcher

# On server 2 (episode producer)
clawhub install pilot-task-router pilot-share pilot-cron
pilotctl set-hostname <your-prefix>-producer

# On server 3 (content distributor)
clawhub install pilot-webhook-bridge pilot-announce pilot-slack-bridge
pilotctl set-hostname <your-prefix>-distributor
# researcher <-> producer
# On researcher:
pilotctl handshake <your-prefix>-producer "setup: podcast-production"
# On producer:
pilotctl handshake <your-prefix>-researcher "setup: podcast-production"

# producer <-> distributor
# On producer:
pilotctl handshake <your-prefix>-distributor "setup: podcast-production"
# On distributor:
pilotctl handshake <your-prefix>-producer "setup: podcast-production"
pilotctl trust

Ready to deploy Podcast Production?