← 返回 Skills 市场
chaoliuzhu

AI播客生成器

作者 Chaoliuzhu · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
114
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install delonix-ai-podcast
功能描述
Generate AI podcast episodes from PDFs, text, notes, and links using MagicPodcast in OpenClaw. Creates natural two-person dialogue audio, supports custom lan...
使用说明 (SKILL.md)

What this skill does

Magic Podcast turns PDFs, documents, and notes into a natural two-host conversation you can listen to in minutes.

Use MagicPodcast to:

  1. Ask what the podcast should be about.
  2. Ask for source: PDF URL or pasted text.
  3. Ask for podcast language (do not assume).
  4. Confirm: Ok, want me to make a podcast of this "topic/pdf" in "language". Should I do it?
  5. Create a two-person dialogue podcast from that exact source.
  6. Immediately return https://www.magicpodcast.app/app so user can open their podcast dashboard.
  7. Check status only when user asks.
  8. Return title plus the shareable podcast URL when complete.

Keywords

ai podcast, podcast, podcast generator, ai podcast generator, pdf to podcast, text to podcast, podcast from pdf, audio podcast, magicpodcast

Setup

Set required env:

export MAGICPODCAST_API_URL="https://api.magicpodcast.app"
export MAGICPODCAST_API_KEY="\x3Cyour_api_key>"

Get API key: https://www.magicpodcast.app/openclaw

Guided onboarding (one step at a time)

  1. Ask one question at a time, then wait for the user's reply before asking the next.
  2. If API key is missing or invalid, stop and say: It's free to get started, and it takes under a minute. Open https://www.magicpodcast.app/openclaw, sign in with Google, copy your API key, and paste it here.
  3. If user has a local PDF file, ask them to upload it to a reachable URL first.
  4. After key is available, continue:
    1. topic
    2. source (PDF URL or pasted text)
    3. language
    4. final confirmation before create

Secure command templates

Never interpolate raw user text directly into shell commands.
Always validate first, then JSON-encode with jq.

safe_job_id() {
  printf '%s' "$1" | grep -Eq '^[A-Za-z0-9_-]{8,128}$'
}

safe_http_url() {
  printf '%s' "$1" | grep -Eq '^https?://[^[:space:]]+$'
}

Create from PDF:

# Inputs expected from conversation state:
# PDF_URL, LANGUAGE
if ! safe_http_url "$PDF_URL"; then
  echo "Invalid PDF URL" >&2
  exit 1
fi

payload="$(jq -n --arg pdfUrl "$PDF_URL" --arg language "$LANGUAGE" '{pdfUrl:$pdfUrl,language:$language}')"

curl -sS -X POST "$MAGICPODCAST_API_URL/agent/v1/podcasts/pdf" \
  -H "Content-Type: application/json" \
  -H "x-api-key: $MAGICPODCAST_API_KEY" \
  --data-binary "$payload"

Create from text:

# Inputs expected from conversation state:
# SOURCE_TEXT, LANGUAGE
payload="$(jq -n --arg text "$SOURCE_TEXT" --arg language "$LANGUAGE" '{text:$text,language:$language}')"

curl -sS -X POST "$MAGICPODCAST_API_URL/agent/v1/podcasts/text" \
  -H "Content-Type: application/json" \
  -H "x-api-key: $MAGICPODCAST_API_KEY" \
  --data-binary "$payload"

Check job once:

# Input expected from API response:
# JOB_ID
if ! safe_job_id "$JOB_ID"; then
  echo "Invalid job id" >&2
  exit 1
fi

curl -sS "$MAGICPODCAST_API_URL/agent/v1/jobs/$JOB_ID" \
  -H "x-api-key: $MAGICPODCAST_API_KEY"
  • Signed-in users can generate free podcast.
  • Expected generation time is usually 2-5 minutes.
  • Right after starting, direct users to https://www.magicpodcast.app/app.
  • Tell the user this page is their dashboard: they can see created podcasts, live progress/status, and finished episodes.
  • Return outputs.shareUrl as the default completion link.
  • If outputs.shareUrl is missing, fall back to outputs.appUrl.
  • On completion, answer: Here is your podcast link: \x3Curl>.
  • If API returns an error, surface the exact error message and details.
  • Warn users not to send sensitive documents unless they approve external processing.

Status checks:

  • statusLabel = "complete": return outputs.shareUrl (or outputs.appUrl as fallback).
  • statusLabel = "failed": return error message/details to user.
安全使用建议
This skill appears to do what it claims: it asks for a source and language then posts to MagicPodcast endpoints using an API key. Before installing: 1) Verify the skill owner and slug/version mismatch (registry metadata vs _meta.json) — confirm you trust the publisher. 2) Make sure MAGICPODCAST_API_URL is the official API (https://api.magicpodcast.app) and obtain your API key from the official OpenClaw link shown in SKILL.md. 3) Keep sensitive documents local — the skill explicitly sends content to MagicPodcast; do not upload confidential files unless you're sure about the service's data handling. 4) Ensure curl and jq are available on the agent host. If you need higher assurance about provenance, ask the publisher to resolve the metadata inconsistencies and provide a clear owner ID before proceeding.
功能分析
Type: OpenClaw Skill Name: delonix-ai-podcast Version: 1.0.0 The skill is a legitimate integration for the MagicPodcast service, allowing users to convert PDFs and text into audio podcasts. The shell templates in SKILL.md demonstrate good security practices, such as using jq for JSON encoding to prevent command injection and implementing regex-based validation for URLs and job IDs. All network traffic is directed to the service's official API (api.magicpodcast.app), and there is no evidence of data exfiltration, obfuscation, or malicious prompt injection.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The name/description (PDF/text-to-podcast using MagicPodcast) match the declared requirements (curl, jq, MAGICPODCAST_API_URL, MAGICPODCAST_API_KEY) and the SKILL.md calls only MagicPodcast endpoints. However, package metadata inconsistencies exist: registry metadata lists ownerId 'kn75tsqd...' and slug 'delonix-ai-podcast' / version 1.0.0, while _meta.json shows ownerId 'kn79nyref...' slug 'ai-podcast' / version 1.0.11. This mismatch could be a benign packaging error but raises a provenance question.
Instruction Scope
SKILL.md instructions are narrowly scoped to asking the user for topic/source/language and then calling the declared MagicPodcast API endpoints. It includes safe URL/job-id validation and JSON encoding with jq and warns users not to upload sensitive documents. The instructions do not reference other system files, secrets, or unexpected external endpoints.
Install Mechanism
There is no install spec and no code files — the skill is instruction-only and relies on existing curl and jq binaries. This is the lowest-risk install mechanism.
Credentials
The only environment variables required are MAGICPODCAST_API_URL and MAGICPODCAST_API_KEY, which are appropriate for calling the MagicPodcast API. No unrelated credentials or filesystem config paths are requested.
Persistence & Privilege
The skill is not always-enabled, does not request elevated presence, and is user-invocable. It does not attempt to modify other skills or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install delonix-ai-podcast
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /delonix-ai-podcast 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
首发版本:PDF/文本转AI播客,支持多语言对话
元数据
Slug delonix-ai-podcast
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

AI播客生成器 是什么?

Generate AI podcast episodes from PDFs, text, notes, and links using MagicPodcast in OpenClaw. Creates natural two-person dialogue audio, supports custom lan... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 114 次。

如何安装 AI播客生成器?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install delonix-ai-podcast」即可一键安装,无需额外配置。

AI播客生成器 是免费的吗?

是的,AI播客生成器 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

AI播客生成器 支持哪些平台?

AI播客生成器 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 AI播客生成器?

由 Chaoliuzhu(@chaoliuzhu)开发并维护,当前版本 v1.0.0。

💬 留言讨论