This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AGENTS.md | |
Guidance for AI coding tools (e.g., Cursor, Claude Code) working on Flutter/Dart projects. Bias toward simple, thoughtful code. | |
## Core Principles | |
- Analyzer Gate: finish only when `flutter analyze` passes with no issues. | |
- Prefer clarity: choose the simplest design that solves the problem. | |
- Ask when unsure: confirm intent before architectural or behavioral changes. | |
- Respect the repo: follow existing patterns unless asked to improve them. | |
- Small, composable widgets: lift complexity out of `build` and avoid cleverness. | |
- Preserve signal: keep useful comments and logs; remove noise thoughtfully. |