curl
Installation
SKILL.md
Contains Shell Commands
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
Curl HTTP Tool
Debug HTTP requests, inspect SSL certificates, and test endpoints using curl.
Tool Status
- Tool installed: !
command -v curl > /dev/null 2>&1 && echo "YES -- $(curl --version 2>/dev/null | head -1)" || echo "NO -- Install: apt install curl (Debian/Ubuntu) | brew install curl (macOS)" - Wrapper scripts available: !
test -f scripts/curl/check-ssl-certificate.sh && echo "YES -- use wrapper scripts for structured JSON output" || echo "NO -- using standalone mode with direct commands"
Mode: Wrapper Scripts Available
If wrapper scripts are available (shown as YES above), prefer these commands. They provide structured JSON output and educational context.
SSL/TLS Inspection
bash scripts/curl/check-ssl-certificate.sh <target> -j -x-- Inspect certificate validity, expiry, TLS versions, cipher suites
HTTP Debugging
bash scripts/curl/debug-http-response.sh <target> -j -x-- Debug response timing, headers, redirects, and latency breakdown