the signals and their derived score are provisional and subject to change.
validate manually before sharing.
880be2acfea32221cd1e6e1dc8ad629de19d06a4none
AGENTS.mdTool: agents-md# Code Quality Standards
Write code as a senior engineer would for long-term maintenance. These are non-negotiable defaults, not suggestions to apply when asked.
## Principles
- **DRY.** Extract duplicate logic. Refactor. Once and only once.
- **Minimize surprises.** Preserve existing style and conventions. Test when you can.
- **No magic values.** Use named constants, enums, or configuration. Every literal needs justification.
- **Minimize scope.** Prefer tightest scope that works — local variables, pnone