Radarr Fixed

ReviewAudited by ClawScan on May 10, 2026.

Overview

The Radarr integration mostly matches its purpose, but its collection command can enable ongoing automatic future movie additions without a clear pre-action opt-out.

Install only if you are comfortable giving the skill access to your Radarr API key. Be especially careful with add-collection, because it can enable ongoing collection monitoring and future automatic additions; confirm file deletion separately before any remove action with --delete-files.

Findings (4)

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

A single collection add could cause Radarr to automatically add/search for future movies without another prompt, potentially consuming storage or changing the library later.

Why it was flagged

The add-collection flow can persistently enable collection monitoring and future search-on-add behavior, which may trigger later Radarr changes after the original user request.

Skill content
updatePayload=$(echo "$fullCollection" | jq '. + {monitored: true, searchOnAdd: true}') ... echo "👁️ Collection monitored (new releases auto-added)"
Recommendation

Document this behavior prominently and require explicit confirmation or a separate flag before enabling ongoing collection monitoring/searchOnAdd; respect an opt-out such as --no-search for future collection automation.

What this means

The skill can make real changes to the Radarr library and, with the delete-files option, remove media files.

Why it was flagged

The script can add Radarr movies and remove library entries, including deleting underlying files when deleteFiles is true.

Skill content
result=$(curl -s -X POST ... "$API/movie") ... curl -s -X DELETE -H "$AUTH" "$API/movie/$movieId?deleteFiles=$deleteFiles"
Recommendation

Only approve add/remove actions for the exact movie or collection you intend, and require a clear confirmation before using --delete-files.

What this means

Anyone or any agent using this skill with that key can perform the Radarr actions allowed by the configured API key.

Why it was flagged

The skill reads a local Radarr API key or environment-provided key and uses it to authenticate API requests.

Skill content
CONFIG_FILE="$HOME/.openclaw/credentials/radarr/config.json" ... AUTH="X-Api-Key: $RADARR_API_KEY"
Recommendation

Store the API key securely, point RADARR_URL only at the intended Radarr instance, and rotate the key if you suspect it was exposed.

What this means

You have less external context for verifying authorship, update history, or whether this fork matches its stated origin.

Why it was flagged

The registry metadata does not provide a source repository or homepage, limiting provenance verification even though the included script is available for review.

Skill content
Source: unknown
Homepage: none
Recommendation

Review the included script before use and prefer skills with clear source repositories or verified provenance for long-term installation.