Podcast Automation

AdvisoryAudited by Static analysis on May 12, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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 the wrong Feishu app or space is used, the agent could create podcast transcript pages in an unintended business Wiki location.

Why it was flagged

Archiving requires Feishu app credentials and wiki permission, which can create or modify workspace content. This is expected for the stated Feishu Wiki archive feature, but it is still delegated account authority.

Skill content
飞书自建应用 | Wiki 归档 | 需开通 `wiki:wiki` 权限,配置 `FEISHU_APP_ID` / `FEISHU_APP_SECRET`
Recommendation

Use a Feishu app with the minimum necessary Wiki access, confirm the target space ID, and avoid sharing broad tenant credentials with untrusted workflows.

What this means

Podcast transcripts selected for archiving will leave the local machine and be stored in Feishu Wiki.

Why it was flagged

The helper reads a user-specified transcript file and posts its contents to Feishu's document API. This provider data flow is disclosed and purpose-aligned, but transcripts may contain private audio-derived content.

Skill content
TRANSCRIPT=$(cat "$TRANSCRIPT_FILE" ...)
curl -s -X POST "https://open.feishu.cn/open-apis/docx/v1/documents/$OBJ_TOKEN/blocks/$OBJ_TOKEN/children"
Recommendation

Review transcript contents before archiving and ensure the Feishu Wiki space has the intended audience and retention policy.

What this means

The agent may start playback or change volume on a named Sonos speaker when asked to use this feature.

Why it was flagged

The skill exposes commands that control local Sonos speakers. This is central to the stated podcast playback purpose, but it can affect real devices on the local network.

Skill content
sonos play --name "Kitchen" "https://example.com/episode.mp3"
sonos volume set 20 --name "Kitchen"
Recommendation

Confirm the speaker name and volume before running playback commands, especially on shared networks.

What this means

Future installs may receive a different version of the Sonos CLI than the one originally reviewed.

Why it was flagged

The Sonos CLI is installed from a public Go module using @latest, so the installed code may change over time. This is a normal setup method for the declared Sonos feature, but it is unpinned.

Skill content
go | module: github.com/steipete/sonoscli/cmd/sonos@latest | creates binaries: sonos
Recommendation

Pin dependency versions where possible, or install from a trusted, reviewed version before using the skill.