Implementation Safety
Installation
SKILL.md
Implementation Safety Skill
Comprehensive safety checklists to prevent common Rails bugs and vulnerabilities during implementation.
Quick Reference
Use these checklists before marking any file complete during Phase 4 (Implementation).
1. Nil Safety Checklist
Prevent NoMethodError: undefined method for nil errors.
# BAD - Crashes if user is nil
user.email.downcase