Skill v1.0.0
currentAutomated scan98/100version: "1.0.0" name: qbt-hub description: >- Manage qBittorrent downloads via WebUI API (v5.0+). Use this skill whenever the user asks to add a torrent or magnet link, check download progress, search/filter tasks, delete tasks, set speed limits, manage tags/categories, or do anything related to qBittorrent. Trigger keywords: qBittorrent, qbt, torrent, magnet, download task, seeding, add torrent, qbt-hub.
qbt-hub
Manage qBittorrent (v5.0+) via its WebUI API using the bundled scripts/qbt.py.
Authentication
Credentials are read from env vars (set once, reused forever):
QBT_HOST— e.g.http://qbt.example.comQBT_USER— WebUI usernameQBT_PASS— WebUI password
Can also be overridden per-call: --host / --user / --pass
Script Location
/var/minis/skills/qbt-hub/scripts/qbt.py
Alias for convenience:
alias qbt="python3 /var/minis/skills/qbt-hub/scripts/qbt.py"
Commands
Add a task
# magnet linkpython3 qbt.py add "magnet:?xt=urn:btih:..."# https .torrent URLpython3 qbt.py add "https://example.com/file.torrent"# local .torrent filepython3 qbt.py add ~/Downloads/movie.torrent# with optionspython3 qbt.py add "magnet:..." --savepath /data/movies --category Movies --tags "4K,DV" --paused --sequential
List / filter tasks
python3 qbt.py list # all taskspython3 qbt.py list --filter downloading # active downloadspython3 qbt.py list --filter completedpython3 qbt.py list --tag 4K --sort size # filter by tag, sort by sizepython3 qbt.py list --category Movies --asc
Filter choices: all downloading seeding completed paused active inactive stalled errored Sort choices: name size progress dlspeed upspeed ratio added_on
Search
python3 qbt.py search ubuntu # fuzzy match on task name
Global status
python3 qbt.py status # DL/UL speed, totals, limits, turtle mode
Task details
python3 qbt.py info ubuntu # progress, files, trackers, peers
Pause / Resume / Recheck
python3 qbt.py pause ubuntupython3 qbt.py resume allpython3 qbt.py recheck ubuntu
Delete
python3 qbt.py delete ubuntu # keep local filespython3 qbt.py delete ubuntu --files # also delete local data
Speed limits
# per-taskpython3 qbt.py limit ubuntu --dl 500 --ul 100 # KB/spython3 qbt.py limit ubuntu --dl 0 # remove limit# globalpython3 qbt.py speedlimit # show currentpython3 qbt.py speedlimit --dl 2048 --ul 512python3 qbt.py speedlimit --dl 0 # unlimitedpython3 qbt.py speedlimit --alt # toggle turtle mode
Tags
python3 qbt.py tag ubuntu --tags "linux,iso"python3 qbt.py untag ubuntu --tags "iso"python3 qbt.py tags # list all tags with counts
Categories
python3 qbt.py category ubuntu --cat Linuxpython3 qbt.py categories # list all categories
Rename / Move
python3 qbt.py rename ubuntu --name "Ubuntu 24.04 LTS"python3 qbt.py move ubuntu --path /data/iso
Top N
python3 qbt.py top --n 10 --sort size # largest taskspython3 qbt.py top --n 5 --sort dl # fastest downloadspython3 qbt.py top --n 5 --sort ratio # highest ratio seeders
Sort choices: size dl ul ratio progress added
RSS
python3 qbt.py rss listpython3 qbt.py rss add --url "https://example.com/feed.rss"python3 qbt.py rss remove --path "FeedName"python3 qbt.py rss addrule --name "4K Shows" --pattern "2160p" --category TVpython3 qbt.py rss removerule --name "4K Shows"
Workflow: Search the web and add a torrent
- Search for the torrent on sites like
torrentkitty.netorthepiratebay.orgusingbrowser_use - Extract the magnet link from the page
- Run
python3 qbt.py add "<magnet>" --savepath /path --tags "tag1,tag2"
Common patterns
# Check what's currently downloadingpython3 qbt.py list --filter downloading# Find and delete a large task including its filespython3 qbt.py top --n 10 --sort sizepython3 qbt.py delete "keyword" --files# Tag all completed taskspython3 qbt.py list --filter completed # find keywordpython3 qbt.py tag "keyword" --tags "done"# Slow down a task to save bandwidthpython3 qbt.py limit "keyword" --dl 200 --ul 50
Notes
keywordmatching is case-insensitive fuzzy match on task name- Use
allas keyword to target every task (e.g.resume all,pause all) deletealways prompts for confirmation before executingrenamerequires an exact single match; use a more specific keyword if multiple tasks match- qBittorrent instance:
http://qbt.wsen.me(internal network, v5.0.2)