Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

podcast-copilotpodcast GitHub Copilot 搜索

Agent Skill

podcast-copilot 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,316

周安装

226

GitHub Stars

公开资料未说明

下载量

1,862
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:podcast-copilot(podcast GitHub Copilot 搜索)
来源仓库:https://github.com/skoowoo/podcast-copilot
安装命令:
openclaw skills install podcast-copilot
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install podcast-copilot

简介

podcast-copilot 基于 podwise CLI 提供播客发现与管理服务,支持搜索、订阅与热度监控。

  • 适用于听众寻找特定主题节目或内容团队策划推荐列表的场景。
  • 可设置关键词提醒自动抓取新发布剧集,整合 RSS 源与元数据分析。
  • 通过 clawhub 安装后需授予网络访问权限以拉取第三方播客数据库。
  • 搜索结果依赖公开索引质量,小众或私有订阅源可能无法完整覆盖。

SKILL.md

name
podwise-podcast-copilot
description
Podcast copilot workflows with podwise CLI: search podcasts or episodes by keyword, monitor followed shows for new releases, find current popular episodes, ask questions or extract insights by searching across podcast transcript content, process Podwise episode URLs, YouTube videos, Xiaoyuzhou episode links, and local audio or video files, then retrieve transcript, summary, chapters, Q&A, mind map, highlights, and keywords. Use when the user asks to find podcasts or episodes by name/topic/keyword, discover hot shows, check subscription updates, answer a question from podcast transcripts, synthesize transcript-grounded insights across podcasts, summarize an episode, extract subtitles or a transcript, turn YouTube into notes, summarize a Xiaoyuzhou episode, transcribe a local recording, or extract key points from a local video or audio file.

Podwise Podcast Copilot

Use this skill to turn raw podcast, video, and audio inputs into structured outputs that are easy to read, export, or reuse.

Goals

  1. Verify that podwise is installed and that the API key is configured.
  2. Distinguish keyword discovery from transcript-grounded answering, then choose the correct path: search, list, popular, ask, process, or get.
  3. Ask for user confirmation before any process command because it consumes quota/credits, unless the user explicitly asked to proceed without pausing.
  4. Fetch AI outputs only after process completes successfully and reaches done.
  5. Return output in the shape that matches the workflow: discovery lists, transcript-grounded answers, or episode artifacts.

Step 1: Check the Environment

Run:

podwise --help
podwise config show

Treat podwise --help and podwise <command> --help as the source of truth for exact flags, subcommands, and examples.

When a workflow needs command details beyond this skill, inspect help progressively:

podwise search --help
podwise search episode --help
podwise search podcast --help
podwise ask --help
podwise list --help
podwise process --help
podwise get --help
podwise get transcript --help

Step 2: Choose the Workflow

Discover Content, Podcasts, Episodes

  • Use search when the user wants matching podcasts or episodes returned as results to browse.
  • Use ask when the user wants an answer, synthesis, or insights derived from transcript content across podcasts.
  • If the user wants to find episodes by keyword, or title, run podwise search episode.
  • If the user wants to find shows or feeds by podcast name or keyword, run podwise search podcast.
  • If the user asks what podcasts say about a topic, asks for takeaways, or wants transcript-grounded analysis, run podwise ask.
  • If the user wants to discover what is currently trending across Podwise, run podwise popular.
  • If the user wants to check updates from podcasts they already follow, run podwise list episodes or podwise list podcasts.

Process an Episode

  • Before running any process command, ask whether the user wants to spend quota/credits on processing.
  • Skip that confirmation only when the user already made the intent explicit, for example by saying to process it now or not to pause for confirmation.
  • If the user provides a YouTube or Xiaoyuzhou URL and confirms processing, run podwise process <url>; Podwise will import it automatically.
  • If the user provides a local audio or video file path and confirms processing, run podwise process <file>; Podwise will upload it and create an episode automatically.
  • If the user provides a Podwise episode URL and processing may not be complete yet, ask for confirmation first, then run podwise process <episode-url>.

Retrieve AI Results

  • If the user wants a specific artifact for an already processed episode, run podwise get <type> <episode-url> directly.

Step 3: Run the Commands

Search for Episodes or Podcasts

podwise search episode "AI agent" --limit 10 --json
podwise search podcast "Lex Fridman" --limit 10 --json

Use --json when the output will be parsed by another tool or step.

Use search when the user wants a list of matching podcasts or episodes, not a synthesized answer.

Use episode search when the user is looking for a specific episode, or episode title keywords.

Use podcast search when the user is looking for a show by name, wants candidate podcasts to subscribe to, or is trying to identify the podcast behind an episode.

Multiple words are treated as a single phrase; pass them together as one quoted query or as separate arguments.

Discover Popular Episodes

podwise popular --json

Use popular when the user wants hot, trending, or currently popular episodes rather than keyword matches.

Check Followed Podcast Updates

podwise list episodes --json
podwise list episodes --json --date today
podwise list episodes --json --date yesterday
podwise list episodes --json --date 2026-03-01 
podwise list episodes --json --latest 7
podwise list podcasts --json
podwise list podcasts --json --date today
podwise list podcasts --json --latest 14

Use list episodes to see new episodes published by shows the user follows.

Use list podcasts to see which followed podcasts have had recent updates.

Ask Questions Across Podcast Transcripts

podwise ask "the future of AI agents"

Use ask when the user wants a synthesized answer, takeaways, comparison, or insights grounded in podcast transcripts rather than a list of matching episodes.

Do not use ask when the user only wants to locate podcasts or episodes by keyword; use search for that.

ask may take up to about 60s because Podwise searches transcripts and generates an answer.

Process an Episode, Video, or Local File

podwise process https://podwise.ai/dashboard/episodes/7360326
podwise process https://www.youtube.com/watch?v=d0-Gn_Bxf8s
podwise process https://youtu.be/d0-Gn_Bxf8s
podwise process https://www.xiaoyuzhoufm.com/episode/abc123
podwise process ./interview.mp3
podwise process ./meeting.wav --title "Product Review Meeting"
podwise process ./demo.mp4 --title "Launch Demo Recording" --hotwords "Podwise,LLM,ASR"

process always waits for processing to finish before it exits.

Because process consumes quota/credits, do not run it silently. Confirm with the user first unless they explicitly asked to proceed without pausing.

Supported local file extensions: .mp3 .wav .m4a .mp4 .m4v .mov .webm.

Retrieve AI Outputs

podwise get transcript <episode-url>
podwise get summary <episode-url>
podwise get qa <episode-url>
podwise get chapters <episode-url>
podwise get mindmap <episode-url>
podwise get highlights <episode-url>
podwise get keywords <episode-url>

podwise get accepts only a Podwise episode URL. Do not pass a YouTube URL, a Xiaoyuzhou URL, or a local file path to get.

For local files, follow the same pattern: run process <file> first, then use the resulting Podwise episode URL with get.

User Request to Command Mapping

  • "What do podcasts say about this topic?" -> ask
  • "Summarize the main insights from podcast transcripts on this topic" -> ask
  • "Find podcast episodes about this topic" -> search episode
  • "Find a few episodes on this topic, then I will choose what to read" -> search episode
  • "Find the podcast/show named Lex Fridman" -> search podcast
  • "Show me what's trending on Podwise right now" -> popular
  • "Show today's new episodes from podcasts I follow" -> list episodes
  • "Show which followed podcasts published recently" -> list podcasts
  • "Process this YouTube video and return the transcript and summary" -> confirm first, then process + get transcript + get summary
  • "Export this episode as subtitles" -> get transcript --format srt or get transcript --format vtt
  • "Give me an episode recap with summary, chapters, highlights, and keywords" -> get summary + get chapters + get highlights + get keywords
  • "Transcribe this local audio/video file and summarize the key points" -> confirm first, then process <file> + get transcript + get summary

Common Failure Cases

  • If podwise is missing or not configured correctly, stop immediately and tell the user to fix the CLI setup first.
  • If a local file does not exist or the extension is unsupported, stop and ask for a valid path or supported media format.
  • If the workflow requires process and the user has not agreed to spend quota/credits, pause and ask for confirmation before continuing.
  • If ask returns an error or plan-limit issue, report it directly; do not fabricate an answer.

Output Contract

For process and get workflows, include:

  1. The resolved Podwise episode URL.
  2. The current processing status.
  3. The requested artifacts such as summary or transcript.
  4. Any unavailable artifact explicitly marked as unavailable.

For ask workflows, include:

  1. The answer text.
  2. Source excerpts and episode links when --sources is used.
  3. A note if the answer is uncited because sources were not requested.

For search, list, and popular workflows, return the result list in a scannable order and preserve the CLI's intent: discovery, updates, or trending content.

For search workflows specifically, return matching podcasts or episodes rather than a transcript-synthesized answer.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

75.79%
按下载量换算1,411

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills