What problem does it solve? Extending an existing dlt REST API pipeline with a new endpoint requires understanding the current source configuration, researching the API's pagination and response structure, and matching existing patterns like incremental loading and write dispositions. This Skill guides that process end to end so the new resource integrates consistently. ## Core Features & Use Cases - Declarative resource addition: Adds endpoints to the RESTAPIConfig resources list with correct paths, params, data selectors, pagination, and response_actions for optional endpoints. - Custom resource fallback: Implements custom @dlt.resource functions with RESTClient for date-iterated endpoints or non-standard pagination that declarative config cannot express. - Isolated testing and consistency review: Tests the new resource with with_resources() and add_limit(), then checks alignment with existing incremental, merge, and processing-step patterns. - Use Case: You have a working dlt pipeline pulling GitHub issues and want to also pull repository members. The Skill reads the pipeline, researches the members endpoint, adds the resource with 404-ignore response actions, and verifies the load. ## Quick Start Ask the AI to add a new endpoint such as "user profiles" to your existing dlt pipeline and let it read the pipeline file, research the API, and implement the resource.