Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 970 Bytes

File metadata and controls

26 lines (20 loc) · 970 Bytes

Flutter Agentic Starter documentation

Flutter Agentic Starter combines Clean Architecture with Signals view models.

Guides

State model

  • Feature state belongs to an injectable view model.
  • Mutable signals stay private and are exposed as ReadonlySignal.
  • Async work uses AsyncState<T>.
  • Derived state uses computed.
  • Related writes use batch only when they must publish atomically.
  • Screens use SignalWidget or narrow SignalBuilder boundaries.
  • Effects and connections are exceptional and explicitly disposed.
  • One-shot UI actions stay at the widget boundary.

Included skills: flutter-agentic-starter, caveman, and frontend-design.