name: podcast-index description: Access and search podcast information using the Podcast Index API, including searching for podcasts, episodes, and retrieving details. homepage: https://podcastindex.org/api/docs metadata: {“openclaw”:{“requires”:{“env”:[“PODCASTINDEX_API_KEY”,“PODCASTINDEX_API_SECRET”]},“primaryEnv”:“PODCASTINDEX_API_KEY”,“emoji”:“🎙️”}} This skill allows you to interact with the Podcast Index API to search for podcasts, retrieve podcast and episode details, and more. Use this when the user asks for podcast recommendations, episode information, or searches related to podcasts. Prerequisites • Ensure PODCASTINDEX_API_KEY and PODCASTINDEX_API_SECRET are set in the environment or config. • All requests must be authenticated with specific headers. • Base URL: https://api.podcastindex.org/api/1.0 Authentication To authenticate a request: 1 Get the current Unix timestamp: unixTime = Math.floor(Date.now() / 1000) 2 Compute the SHA-1 hash: hash = crypto.createHash('sha1').update(PODCASTINDEX_API_KEY + PODCASTINDEX_API_SECRET + unixTime.toString()).digest('hex') 3 Include these headers in every request: ◦ User-Agent: OpenClaw/1.0 (or a suitable identifier) ◦ X-Auth-Key: [PODCASTINDEX_API_KEY] ◦ X-Auth-Date: [unixTime] ◦ Authorization: [hash] Use the built-in HTTP request tool (e.g., fetch or http_get) to send GET requests with these headers. If executing code, use Node.js modules like ‘node-fetch’ and ‘crypto’. Key Endpoints and Usage • Search Podcasts by Term: Use when searching for podcasts by keywords in title, author, or owner. ◦ Endpoint: GET /search/byterm?q=[query]&[optional params like max=10, fulltext=true] ◦ Example: To find podcasts about “AI”, request /search/byterm?q=AI • Search Podcasts by Title: Use for exact title matches. ◦ Endpoint: GET /search/bytitle?q=[query] • Search Episodes by Person: Use to find episodes featuring a specific person. ◦ Endpoint: GET /search/byperson?q=[person name] • Get Podcast by Feed ID: Use to retrieve full podcast details by its Podcast Index ID. ◦ Endpoint: GET /podcasts/byfeedid?id=[feedId] • Get Podcast by Feed URL: Use to retrieve details by RSS feed URL. ◦ Endpoint: GET /podcasts/byfeedurl?url=[encoded feed URL] • Get Episodes by Feed ID: Use to get a list of episodes for a podcast. ◦ Endpoint: GET /episodes/byfeedid?id=[feedId]&[max=10] • Get Episode by ID: Use for single episode metadata. ◦ Endpoint: GET /episodes/byid?id=[episodeId] • Trending Podcasts: Use for popular podcasts. ◦ Endpoint: GET /podcasts/trending?[cat=technology&max=10] • Recent Episodes: Use for newly released episodes. ◦ Endpoint: GET /recent/episodes?max=10 Always parse the JSON response and summarize relevant information for the user. If the request fails, check authentication and retry. Add ?pretty to URLs for readable output during testing.
podcastindex(podcastindex 搜索)
Agent Skill
podcastindex 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
总安装
周安装
GitHub Stars
下载量
安装方式
通过对话安装
复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。
请帮我安装这个 Agent Skill:podcastindex(podcastindex 搜索)
来源仓库:https://github.com/comicstrip/podcastindex
安装命令:
openclaw skills install podcastindex
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。命令行安装
复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。
openclaw skills install podcastindex简介
使用关键字、标题、提要 ID、URL 或具有经过身份验证的请求的特色人物,从 Podcast Index API 搜索和检索播客和剧集详细信息。
SKILL.md
适合场景
OpenClaw 用户查找和安装 Skill 时
用户想查找某类 Agent Skill 时
需要根据任务场景推荐可安装能力包时
需要对比不同来源的安装命令和来源信息时
能力概览
能力 1
按任务关键词查找相关 Skills
能力 2
展示可复制的安装命令
能力 3
保留来源站点、仓库和原始说明,方便继续核验
能力 4
补充不同宿主或平台的使用分布数据
能力 5
展示第三方安全扫描或审计结果
安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。
平台分布
OpenClaw
89.87%安全审计
VirusTotal
ClawScan
Static analysis
权限和风险
该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。
本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。
来源信息
继续浏览同类 Skills
上一个 Skill
podcastfy-openclaw-skill(podcastfy OpenClaw 技能)
podcastfy-openclaw-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
下一个 Skill
podcasts(podcasts 搜索)
podcasts 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。