Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.66 KB

File metadata and controls

35 lines (25 loc) · 1.66 KB

AGENTS.md

This file is the entry point for AI coding agents working in this repository. Keep it small: detailed guidance lives under .agents/, and discoverable repo skills live under .agents/skills/*/SKILL.md.

Start Here

Read these files before making changes:

Read these only when the task touches their area:

Highest Priority Rules

  • Use flutter test, not dart test, because models pull in Flutter types.
  • Run code generation after modifying models, providers, or database schema.
  • Do not manually edit generated files.
  • Follow analysis_options.yaml, especially single quotes, trailing commas, child: last, no print(), const/final preferences, and declared return types.
  • For CI parity, verify with flutter pub get, flutter analyze --no-fatal-infos, and flutter test --reporter expanded when practical.

Repo Skills

Use repo skills from .agents/skills/ when a task matches their descriptions. Current skills cover localization, provider tests, UI work, and core/platform changes.