```json
{
  "risk_level": "high",
  "why": "The command uses sudo with -rf to delete everything under /models/flight-recorder/app/. If the path is wrong or the directory contains important data, it will irreversibly remove files. There is no confirmation prompt, and root privileges mean the deletion cannot be stopped by a normal user.",
  "safer_process": "1. Verify the exact path: `ls -l /models/flight-recorder/app/` to confirm you are targeting the correct directory.\n2. Use a safer delete pattern, e.g. `sudo rm -rf /models/flight-recorder/app/*` only after confirming the contents.\n3. Prefer a dry‑run or a backup: `sudo cp -r /models/flight-recorder/app /tmp/app_backup`.\n4. If you just want to clear the directory, use `sudo find /models/flight-recorder/app -mindepth 1 -delete` which will skip the root directory itself and is less prone to accidental removal.\n5. Always double‑check the command before pressing Enter, especially when using sudo and -rf."
}
```