From rustarr
Manages subtitles in Bazarr: lists missing subtitles for movies/series, triggers subtitle searches, checks provider health and system status.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rustarr:bazarrThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Inspect and trigger subtitle downloads in Bazarr for your Radarr movies and
Inspect and trigger subtitle downloads in Bazarr for your Radarr movies and Sonarr series via the Bazarr REST API.
All operations are read or search/refresh actions. Bazarr itself decides which subtitle file to download; this skill triggers the search and reports results.
Credentials are configured in the bazarr plugin settings (userConfig). A
SessionStart hook writes them to ~/.config/lab-bazarr/config.env, which the
script loads automatically — no manual file editing. Variables used:
BAZARR_URL="http://localhost:6767"
BAZARR_API_KEY="your-api-key"
BAZARR_URL: Bazarr base URL (no trailing slash)BAZARR_API_KEY: API key from Bazarr (Settings -> General -> Security -> API Key), sent as the X-API-KEY headerRun commands from this skill directory.
bash scripts/bazarr-api.sh status # Bazarr + provider status
bash scripts/bazarr-api.sh badges # counts of wanted movies/episodes
bash scripts/bazarr-api.sh wanted-movies # movies missing subtitles
bash scripts/bazarr-api.sh wanted-series # episodes missing subtitles
bash scripts/bazarr-api.sh providers # configured subtitle providers
bash scripts/bazarr-api.sh search-movie <radarrId> # search subs for a movie
bash scripts/bazarr-api.sh search-episode <sonarrEpisodeId> # search subs for an episode
bash scripts/bazarr-api.sh get "/api/system/status"
wanted-movies and wanted-seriessearch-movie <id>providersstatusX-API-KEY (not a query string). Never put the key in a URL./api/swagger). If a call returns 404, adjust the path
to match your version. The search-movie / search-episode ids must be numeric.npx claudepluginhub jmagar/dendrite --plugin rustarrCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.