← All skills
Tencent SkillHub · Developer Tools

Pget

Parallel 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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Parallel 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.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/pget.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Overview

Use pget for fast, parallel downloads and optional in‑memory tar extraction. Prefer it over curl/wget for large files or batch downloads.

Quick start

Single file: pget <url> <dest> Extract tar after download: pget <url> <dest> -x Multi-file manifest: pget multifile <manifest-path> (or - for stdin)

1) Download a single large file quickly

Choose destination path. Run: pget <url> <dest> Tune if needed: --concurrency <n> to change chunk parallelism --chunk-size 125M (or other size) --retries <n> --force to overwrite

2) Download and extract a tar archive

Use 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.

3) Download many files with a manifest

Create a manifest with URL + space + DEST per line. Run: pget multifile /path/to/manifest.txt # or cat manifest.txt | pget multifile - Tune: --max-concurrent-files <n> --max-conn-per-host <n>

Notes & pitfalls

Use --force if the destination exists and you need overwrite. --connect-timeout accepts duration (e.g., 10s). --log-level debug or --verbose for troubleshooting.

References

Load references/pget.md for full option list and examples.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • references/pget.md Docs