# Send Podcast Generation from PDF, Text, and Links to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ai-podcast",
    "name": "Podcast Generation from PDF, Text, and Links",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mogens9/ai-podcast",
    "canonicalUrl": "https://clawhub.ai/mogens9/ai-podcast",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ai-podcast",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ai-podcast",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "PUBLISH.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ai-podcast"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ai-podcast",
    "downloadUrl": "https://openagent3.xyz/downloads/ai-podcast",
    "agentUrl": "https://openagent3.xyz/skills/ai-podcast/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ai-podcast/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ai-podcast/agent.md"
  }
}
```
## Documentation

### 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:

Ask what the podcast should be about.
Ask for source: PDF URL or pasted text.
Ask for podcast language (do not assume).
Confirm: Ok, want me to make a podcast of this "topic/pdf" in "language". Should I do it?
Create a two-person dialogue podcast from that exact source.
Immediately return https://www.magicpodcast.app/app so user can open their podcast dashboard.
Check status only when user asks.
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="<your_api_key>"

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

### Guided onboarding (one step at a time)

Ask one question at a time, then wait for the user's reply before asking the next.
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.
If user has a local PDF file, ask them to upload it to a reachable URL first.
After key is available, continue:

topic
source (PDF URL or pasted text)
language
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: <url>.
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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mogens9
- Version: 1.0.11
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ai-podcast)
- [Send to Agent page](https://openagent3.xyz/skills/ai-podcast/agent)
- [JSON manifest](https://openagent3.xyz/skills/ai-podcast/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ai-podcast/agent.md)
- [Download page](https://openagent3.xyz/downloads/ai-podcast)