agentsclimarketplace

Api gateway configurator

Skill a5c-ai/babysitter/library/specializations/sdk-platform-development/skills/api-gateway-configurator

Configure API gateways for SDK traffic managementFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill api-gateway-configurator

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

2.2 KB, 391 tokens by cl100k_base, as published. Nobody here has run it

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

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

What ships with it: 1 file

468 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.