- Analyze Github FlakeExpertise in analyzing flake github issues in the flutter/flutter repository. Use when a user wants to analyze the flakiness of a specific link to a flutter github issue.flutter/flutter177,607
- Code ReviewPerforms a comprehensive, multi-step code review of pull requests or local code changes, using iterative refinement (generation, critique, synthesis) to ensure high-quality, actionable feedback. Use when you need to review code changes thoroughly.flutter/flutter177,607
- Dart Log Failure ParserParse failures from Dart and Flutter test logs.flutter/flutter177,607
- Find ReleaseA skill to find the lowest Dart and Flutter release containing a given commit. Use this skill whenever users ask about when a commit landed in Flutter or Dart releases, inquire about release versions for specific SHAs, or want to know if a commit is included in stable, beta, or dev channels for Flutter/Dart projects.flutter/flutter177,607
- Flutter Cherry PickHow to land a formal cherry-pick of a merged PR for the flutter/flutter repo stable or beta channel. Only use for flutter/flutter landed pull requests. Only use when the cherry pick request is into "stable", "beta" or a branch that has the format with flutter-<major>.<minor>-candidate.0.flutter/flutter177,607
- Flutter Pr Checks FinderFind failing checks on a Flutter PR and locate the corresponding LUCI log URLs.flutter/flutter177,607
- Natural WritingContains well-defined rules for creating natural, accurate, and readable writing. Use whenever authoring longer text, like analysis documents, PR or CL descriptions, or documentation.flutter/flutter177,607
- Rebuilding Flutter ToolRebuilds the Flutter tool and CLI. Use when a user asks to compile, update, regenerate, or rebuild the Flutter tool or CLI.flutter/flutter177,607
- Shepherd PrsAutomate shepherding, updating, and landing both your own open PRs and approved third-party contributor PRs in the flutter/flutter repository. When to use: - When you need to check the status of your open PRs or approved third-party PRs. - When you need to update stale branches or apply the 'autosubmit' label to land approved PRs. When not to use: - Do not use for PRs that are not approved (unless they are your own and you want to check status). - Do not use for repositories other than flutter/fflutter/flutter177,607
- Updating Android SdkUpgrades Flutter's Android SDK dependency to a new Android API version (or preview/canary release) in packages.txt, verifies CIPD tag uniqueness, and packages/uploads the binaries using create_cipd_packages.sh across macOS, Linux, and Windows. Use whenever a user wants to pick up a new version of Android or upload Android SDK packages to CIPD.flutter/flutter177,607
- Upgrade BrowserUpgrade browser versions (Chrome or Firefox) in the Flutter Web Engine and/or Framework tests. Use when asked to roll or upgrade Chrome or Firefox to a newer version.flutter/flutter177,607
- Check ReadinessRun this skill to check if the repository is ready for new work. Use this skill whenever the user asks to "check readiness", "see if we are ready to start work", or when starting a new task in the camera_android_camerax package.flutter/packages5,252
- Dart Add Unit TestWrite and organize unit tests for functions, methods, and classes using `package:test`. Use when creating new logic or fixing bugs to ensure code remains correct and regression-free.flutter/packages5,252
- Dart Collect CoverageCollect coverage using the coverage packge and create an LCOV reportflutter/packages5,252
- Dart Generate Test MocksDefine and generate mock objects for external dependencies using `package:mockito` and `build_runner`. Use when unit testing classes that depend on complex external services like APIs or databases.flutter/packages5,252
- Dart Run Static AnalysisExecute `dart analyze` to identify warnings and errors, and use `dart fix --apply` to automatically resolve mechanical lint issues. Use during development to ensure code quality and before committing changes.flutter/packages5,252
- Flutter Add Integration TestConfigures Flutter Driver for app interaction and converts MCP actions into permanent integration tests. Use when adding integration testing to a project, exploring UI components via MCP, or automating user flows with the integration_test package.flutter/packages5,252
- Pre Push SkillExecutes the required pre-push steps for the flutter/packages repository. Call this tool immediately whenever the user asks to push, asks if the user/you are ready to push, or wants to validate their local changes are ready to become a pull request.flutter/packages5,252
- Receiving Code ReviewUse when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementationflutter/packages5,252
- Data ModelAdd or update a dart_mappable data model in lib/src/models/content/, including adding format validation, regenerating code, and adding tests. Use when adding a new content type or modifying an existing model's fields.flutter/website3,086
- Extract To JasprExtracts a part of a website and converts it to a Jaspr component. Use when you need to migrate a part of a website to Jaspr.flutter/website3,086
- Generate Showcase From VideoExtracts YouTube transcripts and generates professional Flutter showcase blog posts in Markdown format. Use when you need to create a technical marketing case study from a video success story.flutter/website3,086
- Proofread MarkdownProofreads Markdown files against Google guidelines.flutter/website3,086
- Update Llms TextUpdate and maintain the llms.txt file. Use when the user wants to add sections, add links, correct information, or review the llms.txt file.flutter/website3,086
- Validate PrStages the Flutter site locally. This includes checking for broken links, verifying excerpts, updating formatting, and serving the dev site.flutter/website3,086
- Add Dart Lint Validation RuleInstructions for adding a new validation rule and CLI flag to dart_skills_lint. Use this skill when asked to create a new rule that validates aspects of skills (like frontmatter metadata).flutter/skills2,581
- Code ReviewPerforms a comprehensive, multi-step code review of pull requests or local code changes, using iterative refinement (generation, critique, synthesis) to ensure high-quality, actionable feedback. Use when you need to review code changes thoroughly.flutter/skills2,581
- Dart Skills Lint IntegrationHow to integrate, update, and configure the dart_skills_lint validation tool within a repository. Make sure to use this skill whenever the user asks to update dart_skills_lint, configure skills validation tests, fix skills linter dependency drifts, verify repository state before editing, optimize lint rules execution, or draft pull request submission commands.flutter/skills2,581
- Dart Skills Lint SetupUse this skill when you need to set up validation for AI agent skills in a Dart project for the first time. Adds the linter as a dev_dependency, creates a configuration file, and generates a baseline for legacy repos.flutter/skills2,581
- Dart Skills Lint ValidationUse this skill when you need to validate AI agent skills with dart_skills_lint — running the linter, interpreting failures, fixing violations, and authoring custom rules.flutter/skills2,581
- Definition Of DoneMandatory checks to run before completing any task that touches md files or dart code in this repository.flutter/skills2,581
- Flutter Add Integration TestConfigures Flutter Driver for app interaction and converts MCP actions into permanent integration tests. Use when adding integration testing to a project, exploring UI components via MCP, or automating user flows with the integration_test package.flutter/skills2,581
- Flutter Add Widget PreviewAdds interactive widget previews to the project using the previews.dart system. Use when creating new UI components or updating existing screens to ensure consistent design and interactive testing.flutter/skills2,581
- Flutter Add Widget TestImplement a component-level test using `WidgetTester` to verify UI rendering and user interactions (tapping, scrolling, entering text). Use when validating that a specific widget displays correct data and responds to events as expected.flutter/skills2,581
- Flutter Apply Architecture Best PracticesArchitects a Flutter application using the recommended layered approach (UI, Logic, Data). Use when structuring a new project or refactoring for scalability.flutter/skills2,581
- Flutter Build Responsive LayoutUse `LayoutBuilder`, `MediaQuery`, or `Expanded/Flexible` to create a layout that adapts to different screen sizes. Use when you need the UI to look good on both mobile and tablet/desktop form factors.flutter/skills2,581
- Flutter Fix Layout IssuesFixes Flutter layout errors (overflows, unbounded constraints) using Dart and Flutter MCP tools. Use when addressing "RenderFlex overflowed", "Vertical viewport was given unbounded height", or similar layout issues.flutter/skills2,581
- Flutter Implement Json SerializationCreate model classes with `fromJson` and `toJson` methods using `dart:convert`. Use when manually mapping JSON keys to class properties for simple data structures.flutter/skills2,581
- Flutter Setup Declarative RoutingConfigure `MaterialApp.router` using a package like `go_router` for advanced URL-based navigation. Use when developing web applications or mobile apps that require specific deep linking and browser history support.flutter/skills2,581
- Flutter Setup LocalizationAdd `flutter_localizations` and `intl` dependencies, enable "generate true" in `pubspec.yaml`, and create an `l10n.yaml` configuration file. Use when initializing localization support for a new Flutter project.flutter/skills2,581
- Flutter Use Http PackageUse the `http` package to execute GET, POST, PUT, or DELETE requests. Use when you need to fetch from or send data to a REST API.flutter/skills2,581
- Grill With DocsGrilling session that challenges your plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.flutter/skills2,581
- Natural WritingContains well-defined rules for creating natural, accurate, and readable writing. Use whenever authoring longer text, like analysis documents, PR or CL descriptions, or documentation.flutter/skills2,581
- NotInvalidA deliberately broken fixture used by example/README.md to show what each rule's error output looks like.flutter/skills2,581
- ValidReference fixture for dart_skills_lint. Demonstrates a SKILL.md that passes every default rule: hyphen-lowercase name matching the parent directory, a properly sized description, and no other frontmatter fields that would trigger the disallowed-field check.flutter/skills2,581
- Code ReviewPerform a pedantic, multi-perspective code review on the current diff or git changes against the styleguide and software engineering best practices.flutter/flutter-intellij2,013
- Triage HelperAssistance with triage of unprioritized issues. Use when the user asks for help with triage.flutter/flutter-intellij2,013
- Adding Changelog EntriesUse when documenting changes in CHANGELOG.md files for devtools_shared, devtools_app_shared, or devtools_extensions.flutter/devtools1,719
- Adding Copyright HeadersAdds copyright headers to files based on file type. Use when creating new files or when asked to verify copyright headers.flutter/devtools1,719
- Adding Release NotesAdds user-facing change descriptions to DevTools release notes. Use when documenting improvements, fixes, or new features in the NEXT_RELEASE_NOTES.md file.flutter/devtools1,719
- Authoring SkillsGuides the creation of high-quality, effective skills for agentic workflows. Use when creating or modifying skills in the .agents/skills/ directory.flutter/devtools1,719
- Closing Obsolete IssuesFind and close obsolete, stale, or not reproducible issues in the flutter/devtools repository.flutter/devtools1,719
- Preparing PrPrepare a pull request by running presubmit with fixes. Use when preparing to commit or send a PR.flutter/devtools1,719
- Updating Package VersionsGuides updating dependency versions in published packages to avoid mono-repo resolution failures.flutter/devtools1,719
- Create Catalog ItemUse this skill when the user asks to create a new CatalogItem, data class, and/or widget class based on a JSON Schema definition in an application that uses Flutter's `genui` package.flutter/genui1,703
- Genui HelperDevelopment helper for the GenUI repository. Use this skill when the user asks about GenUI workflows, running tests, creating components, finding A2UI or Dart references, or adhering to repository standards.flutter/genui1,703
- Integrate Genui FirebaseUse this skill when the user asks to integrate the genui package and get a simple conversation going with Firebase AI Logic.flutter/genui1,703
- Flutter Frontend For AdkOrchestrates the discovery, mapping, design, and implementation of a premium Flutter-based frontend for an Agent Development Kit (ADK) agent written with Python.flutter/demos128
- Code ReviewPerform a pedantic, multi-perspective code review on the current diff or git changes against the styleguide and software engineering best practices.flutter/dart-intellij-third-party22
- Patch Copied Lsp SourcesCopy JetBrains LSP sources into the Dart plugin and patch them to prevent conflicts and ensure proper configuration.flutter/dart-intellij-third-party22