一键导入
http
Make HTTP requests using hurl. Use for accessing websites/apis
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Make HTTP requests using hurl. Use for accessing websites/apis
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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).