ac0c0cbe73
One addition to conductor/code_styleguides/python.md §8 "AI-Agent Specific Conventions": - **No diagnostic noise in production code (Added 2026-06-09).** `sys.stderr.write(f"[XYZ_DIAG] ...") lines in src/*.py are technical debt. The right place for one-time investigation output is tests/artifacts/<test>.diag.log (a log file) or a standalone /tmp/diag_<name>.py script. If you must instrument production code, the diag lines are part of the same atomic commit as the fix. - **Test files ARE allowed to be diagnostic.** The rule applies to src/*.py only; tests/test_*.py may use print(..., file=sys.stderr) freely. Markdown only. No code modified.