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
Use Flutter Widget Previewer for fast, isolated visual iteration when the project's Flutter SDK supports the required APIs. It complements tests and device verification; it does not replace them.
Read the project's Flutter SDK constraint and the documentation matching that SDK. The preview API and stability have evolved; do not add package:flutter/widget_previews.dart, @Preview, or preview commands to a project whose SDK does not support them.
Inspect existing preview conventions, theme wrappers, localization, inherited dependencies, assets, fixtures, and generated files. Reuse shared deterministic wrappers rather than creating a second app shell.
Prefer a top-level function, supported static method, or eligible public widget constructor/factory that returns a Widget or WidgetBuilder. Keep fixtures deterministic and free from production network calls, clocks, random values, credentials, and mutable global state.
Use preview names and groups that describe the component and state. Add only meaningful configurations such as:
Use wrappers for theme, localization, and lightweight inherited dependencies. Avoid reproducing the entire production dependency graph merely to make a component previewable; improve the component boundary when practical.
The previewer runs in a web-based environment. Native plugins and invoked dart:io or dart:ffi APIs are unsupported. Isolate those dependencies behind fakes or preview-safe boundaries, and retain device tests for real platform behavior.
Use package-aware asset paths and explicit constraints where required by the current previewer. Do not commit generated preview caches.
Start the previewer with the command supported by the project's SDK and confirm every added preview renders without exceptions. Then keep widget, golden, accessibility, and device tests for behavior and platform fidelity. A rendered preview is not regression evidence by itself.
.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