qbit-list
List active qBittorrent torrents with name, state, progress %, category, download speed, and ETA. Read-only. Authenticates with the WebUI session cookie.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
List active qBittorrent torrents with name, state, progress %, category, download speed, and ETA. Read-only. Authenticates with the WebUI session cookie.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Poll trusted Multiple Sclerosis RSS feeds, score credibility, save raw items, filter low-quality material, and promote high-value items into citation-grounded KB processing.
Save a URL, file path, pasted text, DOI, or PMID into the knowledgebase at $KB_ROOT/raw/manual/YYYY/MM/DD/. Enriches via the relevant MCP (pubmed/crossref) when input is a DOI or PMID. NON-DESTRUCTIVE — write-only into raw/, never into pages/.
Append a single timestamped bullet to today's $KB_ROOT/journals/YYYY/MM/YYYY_MM_DD.md describing what the agent just did. Logseq-compatible and date-partitioned. Call this at the end of every meaningful action (page write, ingest, query answered).
Self-heal the MS knowledgebase layout after RSS watch or weekly digest. Migrates legacy flat files into the V2 date/type structure, refreshes Start Here and Index pages, checks links/frontmatter, and journals the maintenance summary.
Answer a research question by searching the kb first, then PubMed → CrossRef → SearXNG, writing a citation-grounded content page under $KB_ROOT/content/<type>/YYYY/MM/. Every claim cites a DOI/PMID/URL or is dropped. This is the heart of the agent.
Safely prune generated RSS watcher raw cache after weekly digest retention, without touching manual raw ingests or the RSS seen ledger.
| name | qbit-list |
| description | List active qBittorrent torrents with name, state, progress %, category, download speed, and ETA. Read-only. Authenticates with the WebUI session cookie. |
| version | 0.1.0 |
| author | dobry-ops |
| license | MIT |
| metadata | {"hermes":{"tags":["media","qbittorrent","downloads"],"category":"media-ordering","related_skills":["arr-search","nzbget-list"]}} |
Read-only view of qBittorrent's current torrent list.
User asks about torrent download status — "what's downloading", "how's qbit looking", "any seeds I should kill", etc.
$QBITTORRENT_URL$QBITTORRENT_USERNAME$QBITTORRENT_PASSWORDqBittorrent's WebUI requires login → session cookie → API:
COOKIE=$(mktemp)
trap 'rm -f "$COOKIE"' EXIT
curl -sf -c "$COOKIE" \
-d "username=$QBITTORRENT_USERNAME&password=$QBITTORRENT_PASSWORD" \
"$QBITTORRENT_URL/api/v2/auth/login" > /dev/null
curl -sf -b "$COOKIE" \
"$QBITTORRENT_URL/api/v2/torrents/info" \
| jq 'map({name, state, progress, category, dlspeed, eta})'
[1] Some.Movie.2025.1080p.BluRay.x265-GROUP
State: downloading Progress: 47%
Category: radarr Speed: 6.2 MiB/s ETA: 12m
/api/v2/auth/login returns "Fails." or HTTP 403, creds are wrong —
say so, don't retry.