# Send Transistor FM 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": "transistorfm",
    "name": "Transistor FM",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/christophrumpel/transistorfm",
    "canonicalUrl": "https://clawhub.ai/christophrumpel/transistorfm",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/transistorfm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=transistorfm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/transistorfm"
    },
    "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/transistorfm",
    "downloadUrl": "https://openagent3.xyz/downloads/transistorfm",
    "agentUrl": "https://openagent3.xyz/skills/transistorfm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/transistorfm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/transistorfm/agent.md"
  }
}
```
## Documentation

### Transistor.fm Podcast Management

Manage podcasts hosted on Transistor.fm through their REST API.

### Prerequisites

Transistor.fm API key (from Dashboard → Account)
Store as environment variable TRANSISTOR_API_KEY or retrieve from a secrets manager

### Quick Reference

All requests use base URL https://api.transistor.fm/v1 with header x-api-key: <key>.
Rate limit: 10 requests per 10 seconds.

For full endpoint details, parameters, and response formats, see references/api.md.

### List shows and episodes

# Get all shows
curl -s "$BASE/shows" -H "x-api-key: $KEY"

# Get episodes for a show
curl -s "$BASE/episodes?show_id=SHOW_ID" -H "x-api-key: $KEY"

### Upload audio and create an episode

Three-step process:

# 1. Get authorized upload URL
UPLOAD=$(curl -s "$BASE/episodes/authorize_upload?filename=episode.mp3" -H "x-api-key: $KEY")
# Extract upload_url and audio_url from response

# 2. Upload the audio file
curl -X PUT -H "Content-Type: audio/mpeg" -T /path/to/episode.mp3 "$UPLOAD_URL"

# 3. Create episode with the audio_url
curl -s "$BASE/episodes" -X POST -H "x-api-key: $KEY" \\
  -d "episode[show_id]=SHOW_ID" \\
  -d "episode[title]=My Episode" \\
  -d "episode[summary]=Short description" \\
  -d "episode[audio_url]=$AUDIO_URL"

Episode is created as draft. Publish separately.

### Publish an episode

# Publish now
curl -s "$BASE/episodes/EPISODE_ID/publish" -X PATCH -H "x-api-key: $KEY" \\
  -d "episode[status]=published"

# Schedule for future
curl -s "$BASE/episodes/EPISODE_ID/publish" -X PATCH -H "x-api-key: $KEY" \\
  -d "episode[status]=scheduled" \\
  -d "episode[published_at]=2026-03-01 09:00:00"

### Check analytics

# Show-level (last 14 days default)
curl -s "$BASE/analytics/SHOW_ID" -H "x-api-key: $KEY"

# Episode-level
curl -s "$BASE/analytics/episodes/EPISODE_ID" -H "x-api-key: $KEY"

# Custom date range (dd-mm-yyyy)
curl -s "$BASE/analytics/SHOW_ID?start_date=01-01-2026&end_date=31-01-2026" -H "x-api-key: $KEY"

### Tips

Episodes are always created as drafts — publish is a separate step, allowing review before going live
Use episode[increment_number]=true to auto-assign the next episode number
episode[description] supports HTML; episode[summary] is plain text
Audio upload URLs expire in 600 seconds — upload promptly after authorizing
Use sparse fieldsets to reduce response size: fields[episode][]=title&fields[episode][]=status
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: christophrumpel
- Version: 1.0.0
## 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-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/transistorfm)
- [Send to Agent page](https://openagent3.xyz/skills/transistorfm/agent)
- [JSON manifest](https://openagent3.xyz/skills/transistorfm/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/transistorfm/agent.md)
- [Download page](https://openagent3.xyz/downloads/transistorfm)