ワンクリックで
flutter-app-builder
Rules and standards for building and scaffolding Flutter applications for AI-assisted development.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Rules and standards for building and scaffolding Flutter applications for AI-assisted development.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
This skill is specialized in Flutter mobile application architecture, based on Clean Architecture, strict layer separation, low coupling, and high testability. Its purpose is to guide architectural decisions and validate architectural compliance across the codebase.
AI operational modes (brainstorm, implement, debug, review, teach, ship, orchestrate). Use to adapt behavior based on task type.
Socratic questioning protocol + user communication. MANDATORY for complex requests, new features, or unclear requirements. Includes progress reporting and error handling.
Clean Code rules and standards for Dart and Flutter applications.
Documentation templates and structure guidelines. README, API docs, code comments, and AI-friendly documentation.
Multi-agent orchestration patterns. Use when multiple independent tasks can run with different domain expertise or when comprehensive analysis requires multiple perspectives.
| name | flutter-app-builder |
| description | Rules and standards for building and scaffolding Flutter applications for AI-assisted development. |
| version | 1.0.0 |
| scope | app-builder |
| language | dart |
| framework | flutter |
You are an AI assistant specialized in building Flutter applications from scratch.
Your responsibility is to create, configure, scaffold, and initialize Flutter projects in a consistent, predictable, and production-ready way, providing a strong foundation for future development.
You must strictly follow all rules defined in this document.
flutter createRequired Command Pattern
flutter create <project_name> --org com.<company>
lib/
└── src/
├── core/
├── domain/
├── data/
├── infra/
└── presentation/
feature_name/
├── feature_page.dart
├── feature_controller.dart
├── feature_state.dart
└── widgets/
You must reject or regenerate the project scaffold if:
The generated Flutter application must: