What problem does it solve? Working with Aspire distributed applications requires knowing dozens of CLI commands and safety rules; this Skill detects the AppHost, enforces guardrails (never dotnet run on AppHosts, always aspire wait), and routes each task to the correct specialized sub-skill. ## Core Features & Use Cases - AppHost Detection: Identifies C#, file-based C#, and TypeScript AppHosts plus aspire.config.json and .aspire/ signals to decide the right workflow scope. - Task Routing: Directs start/stop/wait to aspire-orchestration, deploy/publish/destroy to aspire-deployment, logs/traces/dashboard to aspire-monitoring, and bootstrap work to aspire-init or aspireify. - Safety Guardrails: Enforces rules such as always using aspire start, --non-interactive for agents, and never editing generated .aspire/modules/ files. - Use Case: You open a repo containing an Aspire AppHost and ask to restart a single failing resource; the Skill routes to aspire-orchestration, waits for health, and avoids restarting the entire AppHost. ## Quick Start Ask the assistant to start the Aspire AppHost in this repository and wait until all resources are healthy.