Agent skill · Security

curl

HTTP client examples including download, POST, auth, JSON, headers, proxy, and FTP operations.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill curl --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/api/curl/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# curl — Handy Examples **Download Files** ```bash # Download a file and save with original filename curl -O http://example.com/file.txt # Download a file with specific name curl -o filename.ext http://example.com/file.txt # Download and limit speed curl --limit-rate 100K -O http://example.com/largefile.zip # Resume interrupted download curl -C - -O http://example.com/largefile.zip # Download multiple files curl -O http://example.com/file1.txt -O http://example.com/file2.txt # Download all sequentially numbered files (1-24) curl http://example.com/pic[1-24].jpg ``` **HTTP Methods & Data** ```bash # POST data curl -d "name=value" http://example.com/resource # POST JSON data curl -H "Content-Type: application/json" -d '{"key":"value"}' http://example.com/resource # Send URL-encoded data curl --data-urlencode "key=value" http://example.com/resource # Custom HTTP method curl -X PUT http://example.com/resource curl -X DELETE http://example.com/resource ``` **Headers & Authentication** ```bash # Include headers in output curl -i http://example.com # Show only HTTP headers curl -I http://example.com # Custom header curl -H "Custom-Header: Value" http://example.com # Basic authentication c

What's inside
Ships with 1 file
  • metadata.json
Commands it runs
Download a file and save with original filename
curl -O http://example.com/file.txt
Download a file with specific name
curl -o filename.ext http://example.com/file.txt
Download and limit speed
curl --limit-rate 100K -O http://example.com/largefile.zip
Resume interrupted download
curl -C - -O http://example.com/largefile.zip
Download multiple files
curl -O http://example.com/file1.txt -O http://example.com/file2.txt
More from claude-skill-registry
All skills →
About this skill
What does the curl skill do?

HTTP client examples including download, POST, auth, JSON, headers, proxy, and FTP operations.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill curl --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going