Podwise
Analysis
Podwise is a coherent podcast-workflow skill, but it relies on an external CLI/account and can process local media, read listening-profile data, export notes, and change podcast subscriptions when used.
Findings (5)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
curl -sL https://raw.githubusercontent.com/hardhackerlabs/podwise-cli/main/install.sh | sh
The setup guide includes an optional remote shell installer from the repository's main branch. This is a common CLI installation pattern and is user-directed, but it is not pinned to a specific release or checksum.
podwise follow https://podwise.ai/dashboard/podcasts/{id}
podwise unfollow https://podwise.ai/dashboard/podcasts/{id}
...
podwise export notion <episode-url>
podwise export readwise <episode-url>
podwise export obsidian <episode-url>The documented CLI can change podcast subscriptions and export content to external tools. These actions align with the skill's stated purpose, but they are account- or workspace-mutating operations.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
podwise auth ... podwise config set api_key your-sk-xxxx ... The configuration is stored at `~/.config/podwise/config.toml`.
The skill requires the Podwise CLI to authenticate and store an API key locally. This is expected for a Podwise account integration, but it gives the CLI delegated account access.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Submit an episode, video, or local file for AI processing. ... podwise process ./meeting.wav --title "Product Review Meeting" ... `process` consumes quota/credits. Always confirm with the user before running it
The CLI can process local audio or video files through Podwise. The instructions require user confirmation, which is good, but users should still consider privacy before submitting local recordings.
Look for `taste.md` in the current working directory. ... If found, read it silently. Use the **Core Interest Areas**, **Shows to Prioritize**, and **Shows to Deprioritize** sections
The workflows use a persistent local listener profile to personalize results. This is purpose-aligned, but the file can influence later recommendations and triage behavior.
