What problem does it solve? Applications deployed to stateless runtimes such as Cloud Run silently lose data when they write to local filesystems, and silent fallbacks to filesystem storage hide the failure until data disappears after a restart or redeploy. ## Core Features & Use Cases - Persistence Boundary Audit: Maps all storage adapters and identifies how the persistence provider is selected per environment. - Fail-Closed Enforcement: Requires a durable external provider in production and prohibits silent fallback to filesystem storage when the durable provider fails. - Safe Data Operations: Validates seeds and migrations so they do not overwrite existing data, and checks concurrency and atomicity for counters and updates. - Use Case: A Node/Express API deployed to Cloud Run loses all records after each redeploy. Use this Skill to trace the adapter selection logic, enforce a durable database provider in production, restrict filesystem storage to dev/test, and add tests proving safe failure without real credentials. ## Quick Start Audit my Node/Express app for persistence risks before deploying to Cloud Run and fix any silent filesystem fallbacks in production.