
Api Gateway
- 113 installs
- 99 repo stars
- Updated August 4, 2026
- thebeardedbearsas/claude-craft
Helps with backend & apis tasks.
About
api-gateway is a Claude Code skill for backend & apis. It helps solo builders move faster with AI-assisted coding.
- api-gateway
- Backend & APIs
- AI-coding skill
Api Gateway by the numbers
- 113 all-time installs (skills.sh)
- Ranked #2,914 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/thebeardedbearsas/claude-craft --skill api-gatewayAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 113 |
|---|---|
| repo stars | ★ 99 |
| Last updated | August 4, 2026 |
| Repository | thebeardedbearsas/claude-craft ↗ |
What it does
Helps with backend & apis tasks.
Files
API Gateway — Kong, Traefik, Patterns
API Gateway moderne pour routing, auth, rate limiting, observabilité.
Responsabilités
| Fonction | Outils |
|---|---|
| Routing (path, header, canary) | Kong, Traefik, Nginx |
| Auth (JWT, OAuth2, API keys) | Kong plugins, Traefik middleware |
| Rate Limiting (per-user/IP) | Redis-backed counters |
| Load Balancing | HAProxy, Traefik |
| Circuit Breaker | Resilience4j, Istio |
Stacks
Kong — Enterprise, plugins riches, K8s-native Traefik — Cloud-native, auto-discovery AWS API Gateway — Managed, serverless Nginx — Performance max, self-hosted Envoy — Service mesh (Istio), gRPC
Kong Config
services:
- name: payment-api
url: http://payment:8080
routes: [{ paths: ["/api/payments"] }]
plugins: [rate-limiting, jwt, prometheus]Traefik Config
http:
routers:
payment:
rule: "PathPrefix(`/api/payments`)"
middlewares: [rate-limit, auth]
middlewares:
rate-limit:
rateLimit: { average: 100, burst: 50 }Rate Limiting Algorithms
Fixed Window — Simple counter, bursty Sliding Window — Rolling counter, lissé Token Bucket — Flexible, burst toléré Leaky Bucket — Output constant, strict
---
Pour setup : @devops-engineer