with one click
http
Make HTTP requests using hurl. Use for accessing websites/apis
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Make HTTP requests using hurl. Use for accessing websites/apis
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Profile macOS processes (CPU hot spots, hangs, "what is X doing?"). Wraps sample/spindump/xctrace and prints a compact text summary or speedscope/flamegraph data.
Read Slack — search messages, list channels/users, read history and thread replies.
Access git.thalheim.io (Gitea) API as Janet — create repos, issues, PRs, releases, etc.
Read-only GitHub API access as Mic92 — issues, PRs, releases, commits, actions runs, etc.
Manage todos using todoman and vdirsyncer.
Manage documents in Paperless-ngx (search, upload, tag). Use for document management tasks.
| name | http |
| description | Make HTTP requests using hurl. Use for accessing websites/apis |
# GET HTML
hurl <<'EOF'
GET https://example.org
HTTP 200
[Asserts]
xpath "normalize-space(//head/title)" == "Hello world!"
EOF
# Chain requests with captures
hurl <<'EOF'
POST https://api.example.com/login
Content-Type: application/json
{"user": "me", "pass": "secret"}
HTTP 200
[Captures]
token: jsonpath "$.token"
GET https://api.example.com/resource
Authorization: Bearer {{token}}
HTTP 200
EOF
Flags: --variable key=val, --test (assert mode).