http-fetch
Installation
SKILL.md
http-fetch (sub-skill)
Direct shell wrapper for a single HTTP request. Replaces
sub-agent sub-Agent steps that just GET/POST a URL — order-of-
magnitude faster (no LLM round-trip, no tool surface, no iteration
loop).
Inputs (with:)
| key | required | default | notes |
|---|---|---|---|
url |
yes | — | absolute http(s) URL |
method |
no | GET |
GET / POST / PUT / DELETE (case-insensitive) |
body |
no | '' |
request body, piped via stdin (for POST/PUT); empty = no body |
timeout |
no | 30 |
request timeout in seconds |
max_bytes |
no | 2000000 |
response body cap; larger payloads truncated + suffixed … |