CtrlK
BlogDocsLog inGet started
Tessl Logo

agent-plugins

github.com/flutter/agent-plugins

SkillAddedReview
api-review

.agents/agents/reidbaker-agent/skills/api-review/SKILL.md

Reviews the specified code against the canonical API Design guidelines. Use this skill when the user asks for an API review or to check code against API design principles.

67

code-documentation

.agents/agents/reidbaker-agent/skills/code-documentation/SKILL.md

Guide for writing effective code documentation, including docstrings, JSDoc, dartdoc, and implementation comments. Use this skill when writing new code, adding features, or improving existing documentation in Dart, Python, or TypeScript to ensure clarity and maintainability.

67

code-review

.agents/agents/reidbaker-agent/skills/code-review/SKILL.md

Performs 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.

64

dart-add-unit-test

skills/dart-add-unit-test/SKILL.md

Write 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.

70

dart-build-cli-app

skills/dart-build-cli-app/SKILL.md

Entrypoint structure, exit codes, cross-platform scripts. Use when building command line utilities, scripts, or applications.

63

dart-collect-coverage

skills/dart-collect-coverage/SKILL.md

Collect coverage using the coverage packge and create an LCOV report

60

dart-fix-runtime-errors

skills/dart-fix-runtime-errors/SKILL.md

Uses get_runtime_errors and lsp to fetch an active stack trace, locate the failing line, apply a fix, and verify resolution via hot_reload.

60

dart-generate-test-mocks

skills/dart-generate-test-mocks/SKILL.md

Define 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.

72

dart-migrate-to-checks-package

skills/dart-migrate-to-checks-package/SKILL.md

Replace the usage of `expect` and similar functions from `package:matcher` to `package:checks` equivalents.

60

dart-resolve-package-conflicts

skills/dart-resolve-package-conflicts/SKILL.md

Workflow for fixing package version conflicts. Use this when `pub get` fails due to incompatible package versions.

71

dart-run-static-analysis

skills/dart-run-static-analysis/SKILL.md

Execute `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.

67

dart-setup-ffi-assets

skills/dart-setup-ffi-assets/SKILL.md

Guides agents in compiling and packaging C/C++ source code into dynamic or static libraries (Code Assets) using Dart's Native Assets hook system (via hook/build.dart and hook/link.dart utilizing package:hooks and package:native_toolchain_c). Use when a user asks to: 'setup native assets', 'compile C/C++ source code', 'bundle dynamic libraries', 'build native C code', 'link native assets', 'implement build.dart or link.dart hooks', or 'integrate C/C++ interop in Dart/Flutter'. Helps agents avoid manual toolchain orchestration and configures secure hash-validated binary downloads or advanced linker tree-shaking with package:record_use mapping.

68

dart-use-doc-examples

skills/dart-use-doc-examples/SKILL.md

How to inject external code examples into Dartdoc using the {@example} directive, and how to filter those files using #hide, #region, and #endregion tags.

59

dart-use-ffigen

skills/dart-use-ffigen/SKILL.md

Guide agents to use `package:ffigen` to automatically generate FFI bindings instead of writing them manually. Use this skill when a task involves writing new FFI bindings, extending C/Objective-C/Swift integrations, or replacing hand-crafted `dart:ffi` setups.

67

dart-use-pattern-matching

skills/dart-use-pattern-matching/SKILL.md

Use switch expressions and pattern matching where appropriate

56

dart-use-primary-constructors

skills/dart-use-primary-constructors/SKILL.md

Help users write syntactically and semantically correct primary constructors in Dart, and migrate/use the new constructor syntax, empty-body semicolon syntax, in-body initializer list syntax, and abbreviated concise constructor syntax.

60

dart-write-documentation

skills/dart-write-documentation/SKILL.md

Rules and formatting guidelines for writing Dart /// API documentation and doc comments. Use when documenting Dart code, writing doc comments for any Dart declaration (libraries, classes, methods, variables, etc.), or when instructed to follow the Effective Dart documentation guidelines.

73

flutter-add-integration-test

skills/flutter-add-integration-test/SKILL.md

Configures 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.

71

flutter-add-widget-preview

skills/flutter-add-widget-preview/SKILL.md

Adds 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.

64

flutter-add-widget-test

skills/flutter-add-widget-test/SKILL.md

Implement 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.

65

flutter-apply-architecture-best-practices

skills/flutter-apply-architecture-best-practices/SKILL.md

Architects a Flutter application using the recommended layered approach (UI, Logic, Data). Use when structuring a new project or refactoring for scalability.

68

flutter-build-responsive-layout

skills/flutter-build-responsive-layout/SKILL.md

Use `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.

74

flutter-fix-layout-issues

skills/flutter-fix-layout-issues/SKILL.md

Fixes 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.

72

flutter-implement-json-serialization

skills/flutter-implement-json-serialization/SKILL.md

Create model classes with `fromJson` and `toJson` methods using `dart:convert`. Use when manually mapping JSON keys to class properties for simple data structures.

71

flutter-setup-declarative-routing

skills/flutter-setup-declarative-routing/SKILL.md

Configure `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.

69