Install
$ agentstack add skill-prateekmedia-agent-skills-borrow ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Torrent Search & Download
Prerequisites
- API at
http://localhost:3000
``bash # Clone to /tmp and start cd /tmp && git clone https://github.com/prateekmedia/Borrow cd Borrow && npm install && npm start & ``
jqfor JSON parsing
Search
scripts/search.sh "" [page]
scripts/search.sh piratebay "ubuntu iso" 1
scripts/search.sh yts "big buck bunny" 1
Sources
List available sources:
scripts/search.sh --list-sources
Get Magnet Link
# First result
scripts/search.sh piratebay "ubuntu" 1 | head -1 | cut -f4
# Filter by seeders (>10), get first magnet
scripts/search.sh piratebay "ubuntu" 1 | awk -F'\t' '$3+0 > 10 {print $4; exit}'
Download
# Basic download
node scripts/download.js "magnet:?xt=urn:btih:..." /tmp/downloads
# With custom timeout (default: 10800s)
node scripts/download.js "magnet:?xt=urn:btih:..." /tmp/downloads --timeout 3600
# JSON output for automation
node scripts/download.js "magnet:?xt=urn:btih:..." /tmp/downloads --json
Complete Workflow
MAGNET=$(scripts/search.sh piratebay "ubuntu iso" 1 | head -1 | cut -f4)
node scripts/download.js "$MAGNET" /tmp/downloads
Troubleshooting
| Issue | Fix | |-------|-----| | API not responding | cd /tmp/Borrow && npm start & | | Download slow/hangs | Filter for seeders > 20; try different source |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: prateekmedia
- Source: prateekmedia/agent-skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.