# ICEBOX Coding Rules
These rules are absolute and must be followed for all code changes in this workspace:
1. **Comment Limit**: There can be a maximum of 2 to 3 lines of comments in any file to explain logic. Keep code self-documenting.
2. **Strict YAGNI**: For every 100 lines of code, rigorously follow YAGNI (You Aren't Gonna Need It) principles. Do not write speculative features, unused configurations, wrappers that just delegate, or abstractions with only a single implementation.
3. **Pony Tail Auditing**: Proactively simplify logic, delete dead code, and replace custom implementations with native/standard library equivalents wherever possible.