Agent Skills: HTTP Client Tool

发送HTTP请求,支持所有方法、请求头、认证和响应处理。

UncategorizedID: aidotnet/moyucode/http-client

Install this agent skill to your local

pnpm dlx add-skill https://github.com/AIDotNet/MoYuCode/tree/HEAD/skills/tools/http-client

Skill Files

Browse the full folder contents for http-client.

Download Skill

Loading file tree…

skills/tools/http-client/SKILL.md

Skill Metadata

Name
http-client
Description
发送HTTP请求,支持所有方法、请求头、认证和响应处理。

HTTP Client Tool

Description

Make HTTP requests with full support for GET, POST, PUT, DELETE, headers, authentication, and file uploads.

Trigger

  • /http command
  • User needs to make API calls
  • User wants to test endpoints

Usage

# GET request
python scripts/http_client.py GET https://api.example.com/users

# POST with JSON body
python scripts/http_client.py POST https://api.example.com/users --json '{"name": "John"}'

# With headers
python scripts/http_client.py GET https://api.example.com/data --header "Authorization: Bearer token"

# Upload file
python scripts/http_client.py POST https://api.example.com/upload --file document.pdf

Tags

http, api, rest, requests, client

Compatibility

  • Codex: ✅
  • Claude Code: ✅