What problem does it solve? Manually testing HTTP APIs with tools like Postman requires repetitive clicking and ad-hoc checks. This Skill turns natural-language API descriptions into an automated test run: it parses endpoint specs, generates httpflex-py test clients, executes a case matrix, and produces a structured pass/fail report with business-level assertions on response data. ## Core Features & Use Cases - Natural Language to Endpoint Specs: Parses user-described interfaces (method, path, params, auth, expected response) into a structured endpoint checklist. - Automated Client Generation: Builds httpflex BaseClient subclasses with authentication (Bearer, Cookie, custom headers), retries, timeouts, and optional caching. - Case Matrix & Business Assertions: Covers normal, boundary, error-parameter, and missing-auth cases, asserting on result, code, and fields inside data rather than just HTTP status. - Use Case: A user says "test these three user-service endpoints with Bearer auth" — the Skill generates clients, runs all cases concurrently, and outputs a Markdown report showing 4/4 passed with per-case status codes. ## Quick Start Ask the AI to test your API by describing the base URL, authentication method, and endpoints, for example: "Test the user API at https://api.example.com with Bearer token, covering GET /users/{id} and POST /users."