Severity: Low (Quality C2)
`src/db/client.ts` — The postgres client is created at module scope but never closed. CLI jobs call `process.exit(0)` without draining the connection pool.
Recommendation: Export a `close()` function and call it before `process.exit()` in all CLI jobs.
Severity: Low (Quality C2)
`src/db/client.ts` — The postgres client is created at module scope but never closed. CLI jobs call `process.exit(0)` without draining the connection pool.
Recommendation: Export a `close()` function and call it before `process.exit()` in all CLI jobs.