Install
openclaw skills install pt-siteSearch and download torrents from NexusPHP-based PT sites, then add to qBittorrent. Use when user wants to search a specific PT site, download torrent, or fi...
openclaw skills install pt-siteSearch torrents on NexusPHP-based private trackers, download .torrent files, and add them to qBittorrent.
Credentials: ~/.clawdbot/credentials/pt-site/sites.json
{
"sites": {
"mySite": {
"url": "https://pt.example.com",
"cookie": "c_secure_uid=xxx; c_secure_pass=xxx"
}
}
}
# Search using browser or web_fetch
browser action=open targetUrl="https://pt.example.com/torrents.php?search=keyword&search_type=0"
Or use the site's search API if available.
NexusPHP torrent pages typically have:
torrents#, Type, Title, Download, Size, Seeders, Leechers, Completedownload.php?id=<id> or download.php?id=<id>&passkey=<passkey>Extract:
# Download with curl, include Cookie header
curl -L -o /tmp/torrent.torrent "https://pt.example.com/download.php?id=123" \
-H "Cookie: c_secure_uid=xxx; c_secure_pass=xxx"
Use qbittorrent skill:
# Add downloaded torrent
./scripts/qbit-api.sh add-file /tmp/torrent.torrent --category "PT"
Or by magnet/URL:
./scripts/qbit-api.sh add "magnet:?xt=..." --category "PT"
sites.json/tmp/ with unique names to avoid conflicts