What problem does it solve? Starting a new Dart or Flutter project involves choosing the right template, supplying names and organization details, and installing dependencies, which is tedious and error-prone when done manually. This Skill automates scaffolding through the Very Good CLI MCP server, inferring the correct template even from vague requests. ## Core Features & Use Cases - Template Inference: Automatically selects the right Very Good CLI template (flutter_app, dart_package, flutter_package, flutter_plugin, dart_cli, flame_game, docs_site) based on what the user wants to build, without asking them to pick a subcommand. - Clarifying Questions: Uses structured questions only for details that cannot be inferred, such as project name and organization, batching them into a single prompt. - Dependency Installation: Runs packages_get against the newly created project directory so dependencies are installed immediately after scaffolding. - Use Case: A user says "I need a package for my weather API client in packages/" — the Skill infers dart_package, names it weather_api_client, scaffolds it in packages/, and installs dependencies with no further questions. ## Quick Start Ask the assistant to create a new Flutter app named my_app with your organization, and it will scaffold the project and install dependencies.