Claude Code Plugins

Community-maintained marketplace

Feedback
1
0

Run Flutter/Dart formatting and code cleanup workflows. Use when asked to format Flutter projects, run flutter analyze, apply dart fix --apply, or ensure formatting is clean and warning-free before commit/merge.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name flutter-format
description Run Flutter/Dart formatting and code cleanup workflows. Use when asked to format Flutter projects, run flutter analyze, apply dart fix --apply, or ensure formatting is clean and warning-free before commit/merge.

Flutter Format

Workflow

  1. Confirm the working directory is the Flutter project root (contains pubspec.yaml).
  2. Run flutter analyze.
  3. If issues are found and automated fixes are safe, run dart fix --apply.
  4. Run dart format . (or dart format lib test if only source/test should change).
  5. Re-run flutter analyze to confirm no warnings or errors.
  6. List the files changed and summarize what was modified.

Guidance

  • If dart fix --apply suggests risky changes or fails, ask the user how to proceed.
  • If formatting spans generated files or vendor code, ask before applying.
  • If analysis warnings persist and the fix is unclear, stop and ask the user for direction.