Sample Deliverable

프로덕션 버그 트리아지 샘플

실제 고객 데이터가 아닌 가상 예시입니다. 유료 트리아지에서는 이런 식으로 증상, 증거, 원인 후보, 다음 조치를 분리해서 전달합니다.

Input Summary

Findings

P1 - API route reads a newly required env var without fallback.
Evidence:
- `api/orders.ts` now creates the service client during module load.
- The deployment log starts failing immediately after import, before request handling.
- Other authenticated routes still return 200, so this is not a global auth outage.

P2 - Frontend masks the server failure as an empty state.
Evidence:
- The list component renders `[]` after catch.
- No visible error message or retry path is shown to the operator.

Not proven:
- Database outage. No evidence yet; health route and unrelated reads still work.
- User token issue. Sign-in and profile route still work.

Next Fix Step