API-First Development — OpenAPI a Produccion
Implementacion de endpoints desde OpenAPI spec con verificacion automatica via schemathesis.
Contexto
Desarrollo API-first donde OpenAPI spec es la fuente de verdad. intake normaliza, architect implementa con schemathesis como check, y vigil verifica la seguridad de las rutas.
Flujo con 4 herramientas
◻ Fase 01 — intake
OpenAPI como spec
Normaliza OpenAPI spec y tickets de Jira en formato architect.
◻ intake
intake init "User Management API v2" \
--source api/openapi-users-v2.yaml \
--source jira://API/sprint-12 \
--format architect △ Fase 02 — architect
Implementacion de endpoints
Loop con schemathesis y vigil como checks.
△ architect
architect loop "Implementa endpoints segun OpenAPI spec" \
--check "schemathesis run api/openapi-users-v2.yaml --base-url http://localhost:8000" \
--check "vigil scan src/routes/" \
--max-iterations 20