Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计通过

podcast-automation播客自动化

Agent Skill

podcast-automation 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,844

周安装

348

GitHub Stars

89

下载量

4,834
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:podcast-automation(播客自动化)
来源仓库:https://github.com/claude-office-skills/skills
仓库路径:skills/podcast-automation
安装命令:
npx skills add https://github.com/claude-office-skills/skills --skill 'Podcast Automation'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/claude-office-skills/skills --skill 'Podcast Automation'

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合在代码变更或协作事项整理时提供上下文支持。podcast-automation 属于待分类类 Skill,可作为该场景下的辅助能力补充。
  • 可结合来源仓库 README 进一步核验具体用法和功能边界。
  • 安装前建议确认权限范围和维护状态,避免不必要的联网或执行。
  • 注意该技能不会自动修改代码,仅提供信息整合能力。

SKILL.md

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

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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.09%
按下载量换算1,890

Claude

27%
按下载量换算1,305

Cursor

17.38%
按下载量换算840

Gemini CLI

8.79%
按下载量换算425

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills