Install
openclaw skills install pgetParallel file download and optional tar extraction using the pget CLI (single URL or multifile manifest). Use when you need high‑throughput downloads from HTTP(S)/S3/GCS, want to split a large file into chunks for speed, or want to download and extract a .tar/.tar.gz in one step.
openclaw skills install pgetUse pget for fast, parallel downloads and optional in‑memory tar extraction. Prefer it over curl/wget for large files or batch downloads.
pget <url> <dest>pget <url> <dest> -xpget multifile <manifest-path> (or - for stdin)pget <url> <dest>
--concurrency <n> to change chunk parallelism--chunk-size 125M (or other size)--retries <n>--force to overwriteUse when the URL points to a .tar, .tar.gz, or similar.
pget <url> <dest> -x
This extracts in‑memory without writing the tar to disk first.
URL + space + DEST per line.pget multifile /path/to/manifest.txt
# or
cat manifest.txt | pget multifile -
--max-concurrent-files <n>--max-conn-per-host <n>--force if the destination exists and you need overwrite.--connect-timeout accepts duration (e.g., 10s).--log-level debug or --verbose for troubleshooting.references/pget.md for full option list and examples.