What problem does it solve? Building a client library for an API involves repetitive plumbing work: authentication handling, token refresh, retry logic, pagination, and error mapping. This Skill generates production-style SDK code so developers write business logic instead of HTTP boilerplate. ## Core Features & Use Cases - Idiomatic Client Generation: Produces Python and TypeScript SDK clients with namespaced sub-clients, typed return models, and context manager support. - Built-in Resilience: Implements exponential backoff with jitter, Retry-After handling for 429 responses, and typed exception hierarchies (AuthenticationError, RateLimitError, NotFoundError, ValidationError). - Transparent Pagination: Wraps cursor-based pagination in iterators and async generators so callers never manage cursors manually. - Use Case: You just shipped a REST API and need to publish Python and TypeScript SDKs to PyPI and npm. Use this Skill to generate the client structure, auth handling, retry logic, and publishing configuration. ## Quick Start Generate a Python SDK client for my orders API with API key authentication, automatic retries, and cursor-based pagination.