用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/supercli --skill go-http-cli命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | go-http-cli |
| description | Use this skill when the user wants to make HTTP requests, test APIs, or use a cURL alternative. |
A powerful HTTP CLI client written in Go. cURL alternative with profiles, variables, and named requests.
go-http-cli request http — Make HTTP requestgo-http-cli _ _ — Passthrough to http CLIDownload from GitHub releases:
# Download for your platform from:
# https://github.com/visola/go-http-cli/releases
# Unzip and add to PATH
export PATH=$PATH:/path/to/extracted/root
# GET request
go-http-cli request http https://httpbin.org/get
# POST with JSON
go-http-cli request http https://httpbin.org/post -X POST -d '{"name": "John"}'
# With headers
go-http-cli request http https://api.example.com -H "Content-Type: application/json"
# Query parameters
go-http-cli request http https://httpbin.org/get key=value
# POST with form data
go-http-cli request http https://httpbin.org/post -X POST name=John
# Any http command with passthrough
go-http-cli _ _ https://api.example.com -X GET
go-http-cli _ _ https://api.example.com -H "Authorization: Bearer token"