Configure API gateways for SDK traffic management
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill api-gateway-configurator --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Api Gateway Configurator?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-api-gateway-configurator-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: api-gateway-configurator
description: Configure API gateways for SDK traffic management
allowed-tools:
- Read
- Write
- Edit
- Glob
- Grep
- Bash
graph:
domains: [domain:software-engineering]
specializations: [specialization:sdk-platform-development]
skillAreas: [skill-area:api-design, skill-area:deployment-infrastructure-management]
roles: [role:platform-engineer]
topics: [topic:api-design, topic:developer-experience]
---
# API Gateway Configurator Skill
## Overview
This skill configures API gateways to manage SDK traffic including routing, authentication, rate limiting, and circuit breakers for reliable API delivery.
## Capabilities
- Configure request routing and load balancing
- Implement rate limiting and throttling
- Set up authentication and authorization
- Configure circuit breakers for resilience
- Implement request/response transformation
- Set up API versioning routes
- Configure caching policies
- Implement CORS and security headers
## Target Processes
- Platform API Gateway Design
- API Versioning Strategy
- Authentication and Authorization Patterns
## Integration Points
- Kong Gateway
- AWS API Gateway
- Apigee
- Azure API Management
- Envoy/Istio
## Input Requirements
- Routing requirements
- Rate limiting policies
- Authentication methods
- Transformation needs
- Resilience requirements
## Output Artifacts
- Gateway configuration files
- Route definitions
- Rate limit policies
- Authentication plugins
- Circuit breaker configs
- Transformation rules
## Usage Example
```yaml
skill:
name: api-gateway-configurator
context:
gateway: kong
routes:
- path: /v1/*
upstream: api-v1
plugins:
- rate-limiting
- jwt-auth
- path: /v2/*
upstream: api-v2
plugins:
- rate-limiting
- oauth2
rateLimiting:
default: 1000/hour
authenticated: 10000/hour
circuitBreaker:
threshold: 5
timeout: 30s
```
## Best Practices
1. Use declarative configurations
2. Implement proper rate limiting tiers
3. Configure circuit breakers for all upstreams
4. Version APIs through routing
5. Centralize authentication
6. Monitor gateway metrics
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!