What problem does it solve? Developers and testers working with an inventory system need a safe, controlled way to wipe inventory transaction data from the current development instance without risking unrelated services, databases, or Docker volumes. ## Core Features & Use Cases - Guarded Deletion Workflow: Runs the clear-business-data.ps1 script with the Inventory scope, which verifies the backend is stopped, the port is unused, database identity, Compose ownership, and the singleton instance row before deleting. - Explicit User Confirmation: Requires the user to type the exact confirmation text (CLEAR followed by the current instance ID) in an interactive PowerShell session, preventing accidental data loss. - Safety Constraints: Prohibits direct docker exec or psql calls, stopping unrelated services, deleting Compose volumes, or synthesizing confirmation text. - Use Case: A developer finishing a test cycle needs to reset the inv_ledger table on their local instance before a fresh test run, while keeping all other data and services intact. ## Quick Start Ask the assistant to clear the inventory transactions for the current instance and confirm the exact text when the script prompts you.