mcpbeat Sign in

Podcast Automation Agent Skill

Automate podcast production workflows including recording, editing, publishing, and distribution

3k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
353
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/claude-office-skills/skills --skill Podcast Automation

The instruction itself

20 sections, as written by the author

Podcast Automation

Comprehensive skill for automating podcast production and distribution.

Core Workflows

1. Production Pipeline

PODCAST PRODUCTION FLOW:
┌─────────────────┐
│    Planning     │
│  - Topics       │
│  - Guests       │
│  - Schedule     │
└────────┬────────┘
         ▼
┌─────────────────┐
│   Recording     │
│  - Audio        │
│  - Video (opt)  │
└────────┬────────┘
         ▼
┌─────────────────┐
│    Editing      │
│  - Clean audio  │
│  - Add intro    │
│  - Mastering    │
└────────┬────────┘
         ▼
┌─────────────────┐
│   Production    │
│  - Show notes   │
│  - Transcript   │
│  - Chapters     │
└────────┬────────┘
         ▼
┌─────────────────┐
│  Distribution   │
│  - RSS          │
│  - Platforms    │
│  - Social       │
└─────────────────┘

2. Episode Configuration

episode_config:
  metadata:
    title: "{{episode_title}}"
    episode_number: "{{number}}"
    season: "{{season}}"
    description: "{{description}}"
    
  audio:
    file: "episode_{{number}}.mp3"
    format: mp3
    bitrate: 128kbps
    sample_rate: 44100
    
  settings:
    explicit: false
    episode_type: full  # full, trailer, bonus
    
  chapters:
    - start: "00:00:00"
      title: "Introduction"
    - start: "00:02:30"
      title: "Main Topic"
    - start: "00:45:00"
      title: "Q&A"
    - start: "00:55:00"
      title: "Wrap Up"
      
  links:
    - title: "Show Notes"
      url: "{{show_notes_url}}"
    - title: "Guest's Website"
      url: "{{guest_url}}"

Audio Processing

Processing Pipeline

audio_processing:
  input:
    format: wav
    channels: stereo
    
  processing:
    - step: noise_reduction
      threshold: -30db
      
    - step: normalization
      target_lufs: -16
      
    - step: compression
      ratio: 4:1
      threshold: -20db
      
    - step: eq
      preset: voice_enhance
      
    - step: add_intro
      file: "intro.mp3"
      fade_in: 2s
      
    - step: add_outro
      file: "outro.mp3"
      fade_out: 3s
      
  output:
    format: mp3
    bitrate: 128kbps
    filename: "{{show}}_E{{number}}.mp3"

Mastering Template

mastering_config:
  loudness:
    target: -16 LUFS
    range: 8 LU
    true_peak: -1 dBTP
    
  eq_settings:
    high_pass: 80Hz
    presence_boost: +2dB @ 3kHz
    air: +1dB @ 12kHz
    
  dynamics:
    compressor:
      ratio: 3:1
      attack: 10ms
      release: 100ms
    limiter:
      ceiling: -1dB

Show Notes Template

Episode Notes

show_notes_template:
  format: markdown
  
  structure: |
    # {{episode_title}}
    
    ## Episode {{number}} | Season {{season}}
    
    **Published:** {{publish_date}}
    **Duration:** {{duration}}
    
    ## Summary
    {{summary}}
    
    ## Guest
    {{#if guest}}
    **{{guest.name}}** - {{guest.title}}
    - Website: {{guest.website}}
    - Twitter: {{guest.twitter}}
    - LinkedIn: {{guest.linkedin}}
    {{/if}}
    
    ## Timestamps
    {{#each chapters}}
    - {{this.start}} - {{this.title}}
    {{/each}}
    
    ## Key Takeaways
    {{#each takeaways}}
    - {{this}}
    {{/each}}
    
    ## Resources Mentioned
    {{#each resources}}
    - [{{this.title}}]({{this.url}})
    {{/each}}
    
    ## Subscribe
    - [Apple Podcasts]({{apple_url}})
    - [Spotify]({{spotify_url}})
    - [RSS Feed]({{rss_url}})

RSS Feed Management

Feed Configuration

rss_feed:
  channel:
    title: "{{podcast_name}}"
    description: "{{podcast_description}}"
    language: "en-us"
    copyright: "© 2024 {{company}}"
    author: "{{host_name}}"
    owner:
      name: "{{owner_name}}"
      email: "{{owner_email}}"
    image:
      url: "{{artwork_url}}"
      width: 3000
      height: 3000
    categories:
      - "Business"
      - "Technology"
    explicit: false
    
  itunes:
    type: episodic  # or serial
    complete: false
    
  items:
    - title: "{{episode.title}}"
      description: "{{episode.description}}"
      enclosure:
        url: "{{audio_url}}"
        length: "{{file_size}}"
        type: "audio/mpeg"
      pubDate: "{{publish_date}}"
      duration: "{{duration}}"
      explicit: false
      episode: "{{number}}"
      season: "{{season}}"

Distribution

Platform Distribution

distribution_platforms:
  primary:
    - platform: apple_podcasts
      api: podcasts_connect
      auto_publish: true
      
    - platform: spotify
      api: spotify_for_podcasters
      auto_publish: true
      
  secondary:
    - google_podcasts
    - amazon_music
    - stitcher
    - overcast
    - pocket_casts
    - castbox
    
  video:
    - platform: youtube
      type: full_episode
      thumbnail: auto_generate
      
    - platform: youtube
      type: clips
      count: 3-5
      duration: 60s

Social Distribution

social_promotion:
  on_publish:
    - platform: twitter
      posts:
        - type: announcement
          text: |
            🎙️ New Episode!
            
            {{episode.title}}
            
            {{teaser}}
            
            Listen now: {{link}}
            
        - type: clip
          audio_clip: 60s
          timestamp: best_moment
          
    - platform: linkedin
      text: |
        Excited to share our latest episode!
        
        {{episode.title}}
        
        Key takeaways:
        {{takeaways}}
        
        Link in comments 👇
        
    - platform: instagram
      type: carousel
      slides:
        - cover_image
        - quote_1
        - quote_2
        - cta

Analytics Dashboard

PODCAST ANALYTICS - LAST 30 DAYS
═══════════════════════════════════════

DOWNLOADS: 45,230 (+12%)
UNIQUE LISTENERS: 28,450

BY EPISODE:
┌─────────────────────────────────────┬───────────┐
│ Episode                              │ Downloads │
├─────────────────────────────────────┼───────────┤
│ E45: Interview with CEO             │ 8,450     │
│ E44: Industry Trends 2024           │ 6,230     │
│ E43: Behind the Scenes              │ 5,890     │
└─────────────────────────────────────┴───────────┘

BY PLATFORM:
Apple Podcasts  ████████████████ 52%
Spotify         ██████████░░░░░░ 32%
Google          ████░░░░░░░░░░░░ 8%
Other           ███░░░░░░░░░░░░░ 8%

LISTENER RETENTION:
0-25%    ████████████████████ 100%
25-50%   ██████████████████░░ 89%
50-75%   ██████████████░░░░░░ 72%
75-100%  ████████████░░░░░░░░ 58%

GEOGRAPHY:
United States   ████████████████ 65%
United Kingdom  ████░░░░░░░░░░░░ 12%
Canada          ███░░░░░░░░░░░░░ 8%
Australia       ██░░░░░░░░░░░░░░ 5%

Guest Management

Guest Workflow

guest_workflow:
  outreach:
    template: |
      Hi {{guest_name}},
      
      I'm the host of {{podcast_name}}, a podcast about {{topic}}.
      
      I'd love to have you on to discuss {{proposed_topic}}.
      
      Our audience is {{audience_description}}.
      
      Would you be interested?
      
  scheduling:
    tool: calendly
    duration: 60_minutes
    buffer: 15_minutes
    
  pre_interview:
    send_days_before: 3
    includes:
      - recording_guide
      - topic_outline
      - tech_requirements
      - consent_form
      
  post_interview:
    - send_thank_you
    - share_publish_date
    - provide_promotional_assets
    - request_share

Monetization

Revenue Streams

monetization:
  sponsorships:
    placements:
      - pre_roll: 15-30s
      - mid_roll: 60s
      - post_roll: 15s
    pricing:
      cpm: 25  # per 1000 downloads
      
  premium_content:
    platform: patreon
    tiers:
      - name: "Supporter"
        price: 5
        benefits:
          - ad_free_episodes
          - bonus_content
      - name: "Premium"
        price: 15
        benefits:
          - all_supporter
          - exclusive_episodes
          - community_access
          
  affiliate:
    programs:
      - amazon_associates
      - product_partnerships
    disclosure: required

Best Practices

  • Consistent Schedule: Same day/time each week
  • Quality Audio: Invest in good equipment
  • Show Notes: Detailed and SEO-optimized
  • Transcripts: Accessibility and SEO
  • Promotion: Multi-platform marketing
  • Engage Listeners: Respond to feedback
  • Analytics: Track and improve
  • Guest Prep: Well-prepared interviews

Other skills for the same job

different authors, same section of the catalogue
Doc Coauthoring
by anthropics
vendor ×10

Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.

4k tokens
Peer Review
by christophacham
×1

Structured manuscript/grant review with checklist-based evaluation. Use when writing formal peer reviews with specific criteria methodology assessment, statistical validity, reporting standards compliance (CONSORT/STROBE), and constructive feedback. Best for actual review writing, manuscript revision. For evaluating claims/evidence quality use scientific-critical-thinking; for quantitative scoring frameworks use scholar-evaluation.

13k tokens
Agile Product Owner
by ComeOnOliver
×1

Agile product ownership toolkit for Senior Product Owner including INVEST-compliant user story generation, sprint planning, backlog management, and velocity tracking. Use for story writing, sprint planning, stakeholder communication, and agile ceremonies.

9k tokens scripts
Claude Hook Writer
by ComeOnOliver
×1

Expert guidance for writing secure, reliable, and performant Claude Code hooks - validates design decisions, enforces best practices, and prevents common pitfalls. Use when creating, reviewing, or debugging Claude Code hooks.

12k tokens
Brainstorming
by ComeOnOliver
×1

Use when creating or developing anything, before writing code or implementation plans - refines rough ideas into fully-formed designs through structured Socratic questioning, alternative exploration, and incremental validation

5k tokens
Peer Review
by ComeOnOliver
×1

Structured manuscript/grant review with checklist-based evaluation. Use when writing formal peer reviews with specific criteria methodology assessment, statistical validity, reporting standards compliance (CONSORT/STROBE), and constructive feedback. Best for actual review writing, manuscript revision. For evaluating claims/evidence quality use scientific-critical-thinking; for quantitative scoring frameworks use scholar-evaluation.

17k tokens
Feature Forge
by Jeffallan

Conducts structured requirements workshops to produce feature specifications, user stories, EARS-format functional requirements, acceptance criteria, and implementation checklists. Use when defining new features, gathering requirements, or writing specifications. Invoke for feature definition, requirements gathering, user stories, EARS format specs, PRDs, acceptance criteria, or requirement matrices.

5k tokens
Markdown Drafts
by cloudflare
vendor

Use markdown formatting when drafting content intended for external systems (GitHub issues/PRs, Jira tickets, wiki pages, design docs, etc.) so formatting is preserved when the user copies it. Load this skill before producing any draft the user will paste elsewhere.

889 tokens

How to use it

Copy the folder

Take claude-office-skills/podcast automation from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.