소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 7월 31일 16:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill kong명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | kong |
| description | Kong API Gateway — routes, services, plugins, Admin API. |
Kong is an open-source API gateway and platform built on Nginx/OpenResty. In Supabase, Kong routes all traffic to internal services (PostgREST, GoTrue, Realtime, Storage, Edge Functions).
| Signal | Meaning |
|---|---|
kong service in docker-compose.yml | Self-hosted Kong |
volumes/api/kong.yml in Supabase project | Supabase-embedded Kong config |
KONG_* env vars | Kong configuration |
8000 / 8443 ports exposed | Kong proxy ports |
8001 / 8444 ports exposed | Kong Admin API ports |
| Concept | Description |
|---|---|
| Service | An upstream backend (e.g., PostgREST at http://rest:3000) |
| Route | A matching rule (host, path, method) that forwards to a Service |
| Plugin | Middleware attached to a Route, Service, or globally |
| Upstream | Load balancer target with health checks and multiple targets |
| Consumer | A user or application that calls your API (used for auth plugins) |
Declarative config only: Supabase does not use the Kong Admin API — all config is declarative in kong.yml. In self-hosted setups, always edit kong.yml rather than calling the Admin API, or changes will be lost on restart.
strip_path on prefix routes: always set strip_path: true on a route matched by a path prefix — otherwise Kong forwards the prefix to the upstream and the upstream returns 404 for every request.
apikey header: Supabase uses a custom apikey header (the anon or service-role key). The Supabase Kong config validates this via the JWT plugin — the apikey is a valid JWT signed with your JWT_SECRET. Always include apikey in the CORS plugin headers list.
| When | Load |
|---|---|
| Configuring plugins (JWT, CORS, rate-limiting, caching) | references/plugins.md |
| Setting up routes, services, Admin API, upstreams | references/routes-services.md |
| Rate limiting strategies or consumer management | references/consumers.md |