From ai-debugger
Use when generating curl commands from natural language or API specs - parses user intent, finds matching API endpoints, collects parameters, and builds executable curl
How this skill is triggered — by the user, by Claude, or both
Slash command
/ai-debugger:curl-genThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
사용자의 자연어 설명을 파싱하여 대상 API의 curl 명령을 생성한다.
사용자의 자연어 설명을 파싱하여 대상 API의 curl 명령을 생성한다.
사용자 설명에서 대상 API를 식별:
$API_TOKEN, $AUTH_HEADER)Authorization: Bearer ***)curl -X POST http://localhost:8080/api/orders \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $API_TOKEN" \
-H "X-Trace-Id: debug-$(date +%s)" \
-d '{"productId": 1, "quantity": 2}'
/curl-gen으로 직접 호출npx claudepluginhub 1989v/ai --plugin ai-debuggerSends HTTP requests using the Postman CLI. Supports methods, headers, body, form data, auth, environments, retries, and response saving.
Tests REST API endpoints: validates requests/responses/auth, generates curl/Postman/scripts, load tests concurrency/response times, security scans injections/XSS/CORS.
Generates API documentation for endpoints including HTTP methods, parameters, request bodies, responses, error codes, and curl examples. Outputs Markdown or OpenAPI/Swagger.