What problem does it solve? Choosing the right .NET project template is hard when you only have a natural-language idea like "web API with auth" and no knowledge of available template short names, parameters, or constraints. ## Core Features & Use Cases - Intent Resolution: Maps natural-language project descriptions (e.g., "console app", "Blazor site") to concrete template short names with suggested parameters. - Template Search & Inspection: Uses dotnet new search, dotnet new list, and dotnet new <template> --help to find templates locally and on NuGet.org, then inspect parameters, defaults, and constraints. - Output Preview: Runs dotnet new <template> --dry-run to show exactly which files and structure a template produces before any project is created. - Use Case: A developer says "I need a web API with authentication" — the skill resolves this to the webapi template with --auth Individual, previews the output, and presents the recommended parameters. ## Quick Start Ask the agent to find the right dotnet new template for a web API with individual authentication and preview what files it would create.