Focused Agent Skills for complete Flutter and Dart app delivery.
72
90%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
A cache is a correctness contract with bounded staleness and storage, not just a faster copy.
For each cached value, record:
Do not infer freshness solely from connectivity. A connected device may not reach the service, and a disconnected device may still have valid cached data.
Choose per use case. Pricing, permissions, medical data, and payment state may require different staleness rules from avatars or reference lists.
Include every input that changes the result in the key: identity, locale, query, filters, pagination cursor, feature variant, or authorization scope as applicable. Prevent cross-account and cross-environment collisions.
Prefer explicit invalidation on successful mutation, logout, account switch, schema change, and product-defined events. Time-based expiry is a fallback, not a substitute for known invalidation events.
Version serialized entries and handle incompatible or corrupt values deterministically. Do not erase durable user-owned data merely because a disposable cache is corrupt; keep those lifecycles separate.
Bound caches by entries, bytes, age, or a product-specific budget. Ensure in-memory and on-disk layers do not multiply an already large payload without need. Close files and databases, cancel warmups, and avoid retaining widget or context ownership in data caches.
Route image decoding, Flutter ImageCache, scroll prefetch, and render-object concerns to flutter-performance.
Test hit, miss, expiry, stale fallback, invalidation after mutation, refresh failure, corrupt entry, schema change, capacity eviction, logout, account switch, and concurrent readers/writers relevant to the feature. Use deterministic clocks and temporary storage.
.tessl-plugin
skills
dart-concurrency
dart-language
flutter-accessibility
flutter-ai-integration
flutter-animation
flutter-app-workflow
flutter-architecture
flutter-authentication
flutter-background-execution
flutter-build-release
flutter-ci-cd
flutter-code-review
flutter-dependency-upgrades
flutter-device-testing
flutter-figma-workflow
flutter-in-app-purchases
flutter-localization
references
flutter-networking
references
flutter-notifications
flutter-observability
flutter-openapi-client
flutter-package-development
flutter-performance
flutter-persistence
references
flutter-platform-integration
flutter-product-analytics
flutter-responsive-layout
references
flutter-runtime-debugging
flutter-security
flutter-state-management
flutter-testing
flutter-ui-design
flutter-ui-patterns
flutter-visual-effects