UncategorizedProduction Audit524 lines
Human Error & Operator Safety Audit
Quick Summary28 lines
Verify that the system is safe when users do messy, real-world things. Real users accidentally click delete, upload wrong files, retry operations too early, use confusing UI controls, and panic when something looks broken. This audit ensures that human mistakes cause minimal damage and are recoverable. ## Key Points 1. Enumerate every delete action in the UI: - Delete project - Delete asset - Delete scene - Remove collaborator - Delete account - Clear history - Remove API key 2. For each, test the delete flow. - [ ] Every destructive action has a confirmation dialog. - [ ] High-impact deletions (project, account) require type-to-confirm. - [ ] Soft delete is used where possible (30-day trash). ## Quick Example ``` TOUCH-SPECIFIC CHECKS: [ ] Destructive actions require tap (not swipe-to-delete without confirm) [ ] Touch targets for destructive buttons are not adjacent to safe buttons [ ] No destructive action triggered by long-press without secondary confirm [ ] Pull-to-refresh does not trigger re-generation or re-processing ```
skilldb get production-audit-skills/human-error-operator-auditFull skill: 524 linesInstall this skill directly: skilldb add production-audit-skills