From aidotnet-moyucode
Sends HTTP requests with support for GET, POST, PUT, DELETE, custom headers, authentication, JSON bodies, and file uploads.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aidotnet-moyucode:http-clientThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Make HTTP requests with full support for GET, POST, PUT, DELETE, headers, authentication, and file uploads.
Make HTTP requests with full support for GET, POST, PUT, DELETE, headers, authentication, and file uploads.
/http command# 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
http, api, rest, requests, client
npx claudepluginhub joshuarweaver/cascade-data-analytics --plugin aidotnet-moyucodeEssential curl commands for HTTP requests, API testing, and file transfers. Covers GET, POST, PUT, DELETE, custom headers, authentication, cookies, timeouts, and proxy.
Sends HTTP requests using the Postman CLI. Supports methods, headers, body, form data, auth, environments, retries, and response saving.
Assists with HTTP method operations (GET, POST, PUT, DELETE) for API development, including curl-based request generation and validation.