api-gateway-configuration

仓库创建 2025年11月8日最近提交 29 天前SkillHot 收录 22 天前
▸ 精选理由

覆盖主流网关配置与职责,适合微服务治理和流量入口统一管理。

这个 Skill 做什么

设计并配置 API 网关,处理路由、鉴权、限流与请求转换。

设计并配置 API 网关来统一路由、鉴权、限流和请求/响应转换,把微服务前端的流量和安全策略集中管理。需要设置入口层、做流量控制、实现 JWT/OAuth 鉴权或做协议转换时就上网关。常用平台有 Kong、Nginx、AWS API Gateway、Traefik,能做 SSL 终止、限流、审计等功能。

▸ 展开 SKILL.md 英文原文

Configures API gateways for routing, authentication, rate limiting, and request transformation in microservice architectures. Use when setting up Kong, Nginx, AWS API Gateway, or Traefik for centralized API management.

开发编程API网关路由鉴权通用
180
Stars
28
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/secondsky/claude-skills/main/plugins/api-gateway-configuration/skills/api-gateway-configuration/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/secondsky/claude-skills/main/plugins/api-gateway-configuration/skills/api-gateway-configuration/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# API Gateway Configuration

Design and configure API gateways for microservice architectures.

## Gateway Responsibilities

- Request routing and load balancing
- Authentication and authorization
- Rate limiting and throttling
- Request/response transformation
- Logging and monitoring
- SSL termination

## Kong Configuration (YAML)

```yaml
_format_version: "3.0"

services:
  - name: user-service
    url: http://user-service:3000
    routes:
      - name: user-routes
        paths: ["/api/users"]
    plugins:
      - name: rate-limiting
        config:
          minute: 100
          policy: local
      - name: jwt

  - name: order-service
    url: http://order-service:3000
    routes:
    
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有