Skip to content

Commit 524d0ad

Browse files
robbeverhelstclaude
andcommitted
docs(skill): add qBittorrent to ClawHub skill references
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6922d8a commit 524d0ad

4 files changed

Lines changed: 28 additions & 1 deletion

File tree

skills/tsarr/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: tsarr
3-
description: Manage home media services through TsArr from OpenClaw. Use for Radarr, Sonarr, Lidarr, Readarr, Prowlarr, and Bazarr tasks such as checking health, inspecting queues and history, browsing libraries, searching, adding, editing, deleting items, viewing profiles, tags, and root folders, and checking TsArr configuration.
3+
description: Manage home media services through TsArr from OpenClaw. Use for Radarr, Sonarr, Lidarr, Readarr, Prowlarr, Bazarr, and qBittorrent tasks such as checking health, inspecting queues and history, browsing libraries, searching, adding, editing, deleting items, viewing profiles, tags, and root folders, managing torrents, and checking TsArr configuration.
44
metadata:
55
openclaw:
66
requires:

skills/tsarr/references/common-workflows.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ tsarr radarr system health --json
2828
tsarr sonarr system status --json
2929
tsarr prowlarr system health --json
3030
tsarr bazarr system status --json
31+
tsarr qbit status show --json
3132
```
3233

3334
## Browse libraries
@@ -51,6 +52,9 @@ tsarr readarr book list --json
5152
tsarr bazarr series list --json
5253
tsarr bazarr movie list --json
5354
tsarr bazarr episode wanted --json
55+
56+
tsarr qbit torrents list --json
57+
tsarr qbit torrents list --filter downloading --json
5458
```
5559

5660
## Search and add
@@ -152,6 +156,7 @@ Use extra destructive flags only when the user clearly asks for them:
152156
```bash
153157
tsarr radarr movie delete --id 123 --delete-files
154158
tsarr sonarr series delete --id 456 --delete-files
159+
tsarr qbit torrents delete --hashes <hash> --delete-files
155160
```
156161

157162
## Configuration checks

skills/tsarr/references/service-cheatsheet.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,21 @@ tsarr bazarr system health --json
125125
tsarr bazarr system badges --json
126126
```
127127

128+
## qBittorrent
129+
130+
Use for torrent management and download status.
131+
132+
```bash
133+
tsarr qbit torrents list --json
134+
tsarr qbit torrents list --filter downloading --json
135+
tsarr qbit torrents pause --hashes <hash>
136+
tsarr qbit torrents resume --hashes <hash>
137+
tsarr qbit torrents delete --hashes <hash> --delete-files
138+
tsarr qbit status show --json
139+
```
140+
141+
qBittorrent uses username/password authentication instead of API keys. Configure via `tsarr config init` or environment variables `TSARR_QBITTORRENT_URL`, `TSARR_QBITTORRENT_USERNAME`, `TSARR_QBITTORRENT_PASSWORD`.
142+
128143
## Mutation rules
129144

130145
- Run `get` or `list` first when a delete or edit is requested.

skills/tsarr/references/setup.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ TsArr also supports service-specific environment variables with these patterns:
5858

5959
Replace `{SERVICE}` with `RADARR`, `SONARR`, `LIDARR`, `READARR`, `PROWLARR`, or `BAZARR`.
6060

61+
qBittorrent uses username/password instead of API keys:
62+
63+
- `TSARR_QBITTORRENT_URL`
64+
- `TSARR_QBITTORRENT_USERNAME`
65+
- `TSARR_QBITTORRENT_PASSWORD`
66+
6167
## Default ports
6268

6369
- Radarr: `7878`
@@ -66,6 +72,7 @@ Replace `{SERVICE}` with `RADARR`, `SONARR`, `LIDARR`, `READARR`, `PROWLARR`, or
6672
- Readarr: `8787`
6773
- Prowlarr: `9696`
6874
- Bazarr: `6767`
75+
- qBittorrent: `8080`
6976

7077
## Practical workflow
7178

0 commit comments

Comments
 (0)