file-downloader — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited file-downloader (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Download files from specified URLs to local, supporting HTTP/HTTPS protocols.
Always use absolute paths for output! Skills directory should remain clean, only storing skill code.
# Download file (recommended)
skills_run(name="file-downloader", command="python scripts/download.py https://example.com/file.pdf -o /Users/xxx/Downloads/file.pdf")
# Download with progress display
skills_run(name="file-downloader", command="python scripts/download.py https://example.com/file.pdf -o /Users/xxx/Downloads/file.pdf -v")# Set timeout (seconds)
skills_run(name="file-downloader", command="python scripts/download.py https://example.com/file.pdf -o /Users/xxx/Downloads/file.pdf --timeout 60")
# Set user agent
skills_run(name="file-downloader", command="python scripts/download.py https://example.com/file.pdf -o /Users/xxx/Downloads/file.pdf --user-agent 'Mozilla/5.0'")
# Overwrite existing file
skills_run(name="file-downloader", command="python scripts/download.py https://example.com/file.pdf -o /Users/xxx/Downloads/file.pdf -f")url: URL of file to download (required)-o, --output: Output file path (use absolute path)-v, --verbose: Show detailed progress info-f, --force: Overwrite existing file--timeout: Request timeout in seconds (default 30s)--user-agent: Custom User-Agent| Path | Description |
|---|---|
| Absolute paths | User workspace, all downloaded files should be saved here |
/skills/ | Skill code directory, do not save user files here |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.