MCMaxi Contieriinmaximilianocontieri.com·6d ago · 10 min readAI Coding Tip 034 - Stop Hoarding Rules in Your AGENTS.md TL;DR: Audit your AGENTS.md and skills on a schedule, or you keep paying context rent on rules the model has outgrown. Common Mistake ❌ Every time the AI does something wrong, you add a rule to stop 32IL
MCMaxi Contieriinmaximilianocontieri.com·Aug 23 · 10 min readAI Coding Tip 033 - Protect Yourself Against AI CheatingTL;DR: Write the failing test first and ban deletions, or the AI deletes your test, reverts your fix, and calls it done. Common Mistake ❌ You ask the AI to fix a failing test, and it deletes the test20
MCMaxi Contieriinmaximilianocontieri.com·Aug 20 · 6 min readCode Smell 321 - Getter PiggybackingTL;DR: Don't reuse an existing getter to bolt on new business logic from outside the object. Problems 😔 Duplicated business rules Broken encapsulation Scattered comparison logic Hidden domain kn10
MCMaxi Contieriinmaximilianocontieri.com·Aug 16 · 8 min readAI Coding Tip 032 - Build a Dark Factory PipelineTL;DR: Run your pipeline like a dark factory: automated, sampled, and policed by an adversarial model. Common Mistake ❌ You let one model write a pull request, then hand the same model (or a suspicio21J
MCMaxi Contieriinmaximilianocontieri.com·Aug 8 · 9 min readAI Coding Tip 031 - Stop Over-Prompting Reasoning ModelsTL;DR: Reasoning models already verify and pace themselves, so drop those prompts and set real effort, scope, length, autonomy. Common Mistake ❌ You still write prompts for a model that evolved and s00