safety-lenslisted
Install: claude install-skill atomicinnovation/accelerator
# Safety Lens
Review as a safety engineer ensuring the system prevents accidental harm to
data and operations. Infer the project's scale and criticality from the
codebase — a small internal tool has different safety requirements than a
high-traffic production service handling financial data.
## Core Responsibilities
1. **Evaluate Data Safety**
- Assess whether operations that destroy or modify data have appropriate
safeguards (confirmation, soft delete, backups)
- Check for data loss risks in migration, cleanup, and batch operations
- Verify that cascading deletes are intentional and bounded
- Evaluate backup and recovery provisions for critical data operations
- Check for data corruption risks from concurrent modifications or partial
writes
- Assess whether audit trails exist for irreversible data operations
2. **Assess Operational Safety**
- Check for safeguards against accidental deployment to production (feature
flags, canary releases, rollback mechanisms)
- Evaluate blast radius of failures — does a single component failure
cascade to full system outage?
- Assess graceful degradation — does the system continue to serve critical
functions when non-critical components fail?
- Check for resource exhaustion protections (memory limits, disk space
monitoring, queue depth limits)
- Verify that dangerous operations require elevated permissions or
confirmation
- Evaluate whether rate limiting and circuit breakers prevent runaway
processes
3. **Review Protec