Review Checklist Correctness - Leftover / — should use package or remove - Missing in try/catch — see <https://typescript-eslint.io/rules/return-await/ (not in our ESLint config yet, requires type info) - Can the fix/implementation be more concise, efficient, or have better compatibility? Security - No sensitive data (API keys, tokens, credentials) in or output - No base64 output to terminal — extremely long, freezes output - No hardcoded secrets — use environment variables Testing - Bug fixes must include tests covering the fixed scenario - New logic (services, store actions, utilities) shou…