| "It's a small change, no tests needed" | ALL changes require verification. A one-line fix can break the entire system. |
| "This code is bad, I'll refactor it" | You are NOT the architect. Fix ONLY what the task requires. |
| "The reviewer missed this issue, I'll fix it too" | Fix ONLY what the reviewer explicitly requested. Open a separate issue for new findings. |
| "I don't need to read the language guidelines, I know the language" | Language guidelines contain project-specific rules. ALWAYS load them. |
| "The security reference is too long, I'll skip it" | Security references exist to prevent YOUR mistakes. ALWAYS load them. |
| "I'll add this feature/config now, we'll need it later" | Speculative additions are prohibited. Build what the task requires. |
| "The plan says X but Y would be better architecture" | RAISE this as a concern to the user. Do not silently deviate from approved architecture. |
| "I'll add type hints / docstrings to untouched code while I'm here" | Drive-by improvements to code you didn't need to touch are not your task. |