{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/transistorfm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=transistorfm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/transistorfm",
    "agentPageUrl": "https://openagent3.xyz/skills/transistorfm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/transistorfm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/transistorfm/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Transistor.fm Podcast Management",
        "body": "Manage podcasts hosted on Transistor.fm through their REST API."
      },
      {
        "title": "Prerequisites",
        "body": "Transistor.fm API key (from Dashboard → Account)\nStore as environment variable TRANSISTOR_API_KEY or retrieve from a secrets manager"
      },
      {
        "title": "Quick Reference",
        "body": "All requests use base URL https://api.transistor.fm/v1 with header x-api-key: <key>.\nRate limit: 10 requests per 10 seconds.\n\nFor full endpoint details, parameters, and response formats, see references/api.md."
      },
      {
        "title": "List shows and episodes",
        "body": "# Get all shows\ncurl -s \"$BASE/shows\" -H \"x-api-key: $KEY\"\n\n# Get episodes for a show\ncurl -s \"$BASE/episodes?show_id=SHOW_ID\" -H \"x-api-key: $KEY\""
      },
      {
        "title": "Upload audio and create an episode",
        "body": "Three-step process:\n\n# 1. Get authorized upload URL\nUPLOAD=$(curl -s \"$BASE/episodes/authorize_upload?filename=episode.mp3\" -H \"x-api-key: $KEY\")\n# Extract upload_url and audio_url from response\n\n# 2. Upload the audio file\ncurl -X PUT -H \"Content-Type: audio/mpeg\" -T /path/to/episode.mp3 \"$UPLOAD_URL\"\n\n# 3. Create episode with the audio_url\ncurl -s \"$BASE/episodes\" -X POST -H \"x-api-key: $KEY\" \\\n  -d \"episode[show_id]=SHOW_ID\" \\\n  -d \"episode[title]=My Episode\" \\\n  -d \"episode[summary]=Short description\" \\\n  -d \"episode[audio_url]=$AUDIO_URL\"\n\nEpisode is created as draft. Publish separately."
      },
      {
        "title": "Publish an episode",
        "body": "# Publish now\ncurl -s \"$BASE/episodes/EPISODE_ID/publish\" -X PATCH -H \"x-api-key: $KEY\" \\\n  -d \"episode[status]=published\"\n\n# Schedule for future\ncurl -s \"$BASE/episodes/EPISODE_ID/publish\" -X PATCH -H \"x-api-key: $KEY\" \\\n  -d \"episode[status]=scheduled\" \\\n  -d \"episode[published_at]=2026-03-01 09:00:00\""
      },
      {
        "title": "Check analytics",
        "body": "# Show-level (last 14 days default)\ncurl -s \"$BASE/analytics/SHOW_ID\" -H \"x-api-key: $KEY\"\n\n# Episode-level\ncurl -s \"$BASE/analytics/episodes/EPISODE_ID\" -H \"x-api-key: $KEY\"\n\n# Custom date range (dd-mm-yyyy)\ncurl -s \"$BASE/analytics/SHOW_ID?start_date=01-01-2026&end_date=31-01-2026\" -H \"x-api-key: $KEY\""
      },
      {
        "title": "Tips",
        "body": "Episodes are always created as drafts — publish is a separate step, allowing review before going live\nUse episode[increment_number]=true to auto-assign the next episode number\nepisode[description] supports HTML; episode[summary] is plain text\nAudio upload URLs expire in 600 seconds — upload promptly after authorizing\nUse sparse fieldsets to reduce response size: fields[episode][]=title&fields[episode][]=status"
      }
    ],
    "body": "Transistor.fm Podcast Management\n\nManage podcasts hosted on Transistor.fm through their REST API.\n\nPrerequisites\nTransistor.fm API key (from Dashboard → Account)\nStore as environment variable TRANSISTOR_API_KEY or retrieve from a secrets manager\nQuick Reference\n\nAll requests use base URL https://api.transistor.fm/v1 with header x-api-key: <key>. Rate limit: 10 requests per 10 seconds.\n\nFor full endpoint details, parameters, and response formats, see references/api.md.\n\nCore Workflows\nList shows and episodes\n# Get all shows\ncurl -s \"$BASE/shows\" -H \"x-api-key: $KEY\"\n\n# Get episodes for a show\ncurl -s \"$BASE/episodes?show_id=SHOW_ID\" -H \"x-api-key: $KEY\"\n\nUpload audio and create an episode\n\nThree-step process:\n\n# 1. Get authorized upload URL\nUPLOAD=$(curl -s \"$BASE/episodes/authorize_upload?filename=episode.mp3\" -H \"x-api-key: $KEY\")\n# Extract upload_url and audio_url from response\n\n# 2. Upload the audio file\ncurl -X PUT -H \"Content-Type: audio/mpeg\" -T /path/to/episode.mp3 \"$UPLOAD_URL\"\n\n# 3. Create episode with the audio_url\ncurl -s \"$BASE/episodes\" -X POST -H \"x-api-key: $KEY\" \\\n  -d \"episode[show_id]=SHOW_ID\" \\\n  -d \"episode[title]=My Episode\" \\\n  -d \"episode[summary]=Short description\" \\\n  -d \"episode[audio_url]=$AUDIO_URL\"\n\n\nEpisode is created as draft. Publish separately.\n\nPublish an episode\n# Publish now\ncurl -s \"$BASE/episodes/EPISODE_ID/publish\" -X PATCH -H \"x-api-key: $KEY\" \\\n  -d \"episode[status]=published\"\n\n# Schedule for future\ncurl -s \"$BASE/episodes/EPISODE_ID/publish\" -X PATCH -H \"x-api-key: $KEY\" \\\n  -d \"episode[status]=scheduled\" \\\n  -d \"episode[published_at]=2026-03-01 09:00:00\"\n\nCheck analytics\n# Show-level (last 14 days default)\ncurl -s \"$BASE/analytics/SHOW_ID\" -H \"x-api-key: $KEY\"\n\n# Episode-level\ncurl -s \"$BASE/analytics/episodes/EPISODE_ID\" -H \"x-api-key: $KEY\"\n\n# Custom date range (dd-mm-yyyy)\ncurl -s \"$BASE/analytics/SHOW_ID?start_date=01-01-2026&end_date=31-01-2026\" -H \"x-api-key: $KEY\"\n\nTips\nEpisodes are always created as drafts — publish is a separate step, allowing review before going live\nUse episode[increment_number]=true to auto-assign the next episode number\nepisode[description] supports HTML; episode[summary] is plain text\nAudio upload URLs expire in 600 seconds — upload promptly after authorizing\nUse sparse fieldsets to reduce response size: fields[episode][]=title&fields[episode][]=status"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/christophrumpel/transistorfm",
    "publisherUrl": "https://clawhub.ai/christophrumpel/transistorfm",
    "owner": "christophrumpel",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}