What problem does it solve? Writing HTTP automation and API test scripts requires knowing the Connekt DSL's execution model, where scripts register requests rather than executing imperatively. This Skill produces correct .connekt.kts scripts that follow the DSL's conventions, avoiding common mistakes like interpolating request results into URLs or placing assertions outside then blocks. ## Core Features & Use Cases - Request Generation: Create GET, POST, PUT, PATCH, DELETE and other HTTP requests with headers, query params, path params, JSON bodies, form data, and multipart uploads. - Response Handling: Chain then blocks with assertions, typed decode<T>() deserialization via JSONPath, and soft assertions for multi-field validation. - Workflow Composition: Group multi-step business scenarios into useCase blocks, pass results between requests via pathParam, and configure OAuth2, Basic, or Bearer authentication. - Use Case: You need to test a REST API's CRUD flow. Describe the endpoints and the Skill generates a .connekt.kts script that creates a resource, verifies it, updates it, and deletes it, reading the base URL from connekt.env.json. ## Quick Start Write a Connekt script that sends a POST request to create a pet at the host defined in connekt.env.json and asserts the response status is 201.