Transistor FM

ReviewAudited by ClawScan on May 1, 2026.

Overview

This is a straightforward Transistor.fm API guide, but it uses an account API key and includes actions that can publish or change podcast content.

Install only if you intend to let the agent help manage your Transistor.fm account. Keep the API key protected, and require explicit review before publishing, scheduling, updating, or deleting podcast content.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If used incorrectly, the agent could publish or schedule podcast content before the user intends.

Why it was flagged

The skill documents API calls that can publish podcast episodes. This is central to the stated purpose and is presented as an explicit workflow, but it is still a public/content-changing action.

Skill content
curl -s "$BASE/episodes/EPISODE_ID/publish" -X PATCH -H "x-api-key: $KEY" -d "episode[status]=published"
Recommendation

Confirm episode IDs, titles, audio, and publish timing before allowing publish or schedule requests.

What this means

Anyone or any agent with access to the API key may be able to read podcast data and perform account actions allowed by that key.

Why it was flagged

The skill requires an account API key, while the registry metadata does not declare a primary credential or required environment variable. The credential use is expected for the Transistor.fm API, but users should notice the account authority being granted.

Skill content
Transistor.fm API key ... Store as environment variable `TRANSISTOR_API_KEY` or retrieve from a secrets manager
Recommendation

Use a dedicated/revocable API key if available, store it in a secrets manager or environment variable, and avoid pasting it into prompts or logs.