chore: initial commit of Go API gateway
CI / Test (push) Canceled after 0s
CI / Vet (push) Canceled after 0s
CI / Build (push) Canceled after 0s
CI / Security (govulncheck) (push) Canceled after 0s

Baseline for the Kong replacement on api.riotpiao.com. Brings the working
tree under version control for the first time: gateway source, the task
board that drives the agent runs, test fixtures, and K8s manifests.

Anchor the gateway ignore rule to the repo root. Unanchored, "gateway"
also matched the cmd/gateway/ source directory, so the program entrypoint
was excluded from every commit.

Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
This commit is contained in:
Story Crater Bot
2026-08-19 20:54:34 -07:00
co-authored by Claude Opus 5
commit 058f11cf2b
109 changed files with 8992 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
# 4.3 — RFC 9457 problem+json rejections (RED)
Phase: 4 — Limits and budgets
Stage: RED
Every rejection the gateway generates itself must be a machine-readable problem
document. Upstream responses are passed through untouched — this covers only errors
the gateway originates.
- [ ] Every gateway-originated rejection responds with `Content-Type: application/problem+json`
- [ ] The body carries at minimum `type`, `title`, `status`, and `detail`, and `status` equals the HTTP status line
- [ ] `type` is a stable, distinct URI per rejection reason, so a client can branch on it without parsing prose
- [ ] `detail` is human-useful and names the offending input where one exists
- [ ] `Retry-After` is set whenever a retry time is knowable — queue full, budget exhausted, upstream saturated
- [ ] `Retry-After` is absent when no retry will help — unknown model, malformed body, oversized body
- [ ] No token, credential, header value, or request body content appears in any field
- [ ] A rejection is emitted as a structured log line carrying the same reason identifier used in `type`
Tests come first and must fail because the shape does not exist yet, not because a
route is missing.
## Verify
```bash
curl -s -D - -o /tmp/p.json -X POST localhost:8080/v1/chat/completions \
-H 'content-type: application/json' -d '{"model":"nope"}' | grep -i content-type
# expected: application/problem+json
python3 -c "import json;d=json.load(open('/tmp/p.json'));assert{'type','title','status','detail'}<=d.keys();assert d['status']==400;print('ok')"
# expected: ok
```