What problem does it solve?
This Skill helps you add a new config-driven API gateway route without hard-coding path logic, so you can compose upstream services, middleware, and response handling in a consistent way.
Core Features & Use Cases
- Route Composition: Define a gateway endpoint that chains one or more upstream calls in sequence, in parallel, or conditionally.
- Schema and Middleware Updates: Extend the config schema, register the route dynamically, and wire in auth, rate limiting, and error normalization when needed.
- Testing and Validation: Add unit and integration coverage for success paths, upstream failures, auth failures, and rate-limit behavior before shipping.
- Use Case: For example, you can create a protected
/api/v1/orders route that validates configuration, calls inventory and pricing services, merges the results, and returns a normalized response.
Quick Start
Describe the new gateway route, including its path, method, upstream calls, auth requirements, and any request or response transformations you need.