🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Httpstat

by @rogue-agent1

Pretty HTTP response statistics with timing waterfall. Use when asked to check a URL's response time, debug slow requests, measure TTFB, or get HTTP timing b...

Versionv1.0.0
Downloads385
Installs1
TERMINAL
clawhub install httpstat

πŸ“– About This Skill


name: httpstat description: Pretty HTTP response statistics with timing waterfall. Use when asked to check a URL's response time, debug slow requests, measure TTFB, or get HTTP timing breakdown. Like curl -v but readable. Zero dependencies.

httpstat ⚑

Pretty HTTP timing statistics. Shows DNS, TCP, TLS, TTFB, and transfer times.

Usage

# Basic timing
python3 scripts/httpstat.py https://example.com

With headers

python3 scripts/httpstat.py https://api.github.com -H "Accept: application/json"

POST request

python3 scripts/httpstat.py https://httpbin.org/post -X POST -d '{"key":"value"}'

Output

Shows a visual waterfall of: DNS Lookup β†’ TCP Connection β†’ TLS Handshake β†’ Server Processing β†’ Content Transfer

πŸ’‘ Examples

# Basic timing
python3 scripts/httpstat.py https://example.com

With headers

python3 scripts/httpstat.py https://api.github.com -H "Accept: application/json"

POST request

python3 scripts/httpstat.py https://httpbin.org/post -X POST -d '{"key":"value"}'