Skip to content

Instantly share code, notes, and snippets.

View flutterrausch's full-sized avatar

IngoA flutterrausch

View GitHub Profile
# 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.