aspire
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md [1/2] Description: --- name: aspire description: 'Aspire skill covering the Aspire CLI, AppHost orchestration, service discovery, integrations, MCP server, VS Code extension, Dev Containers, GitHub Codespaces, templates, dashboard, and deployment. Use when the user asks to create, run, debug, configure, deploy, or troubleshoot an Aspire distributed application.' --- # Aspire — Polyglot Distributed-App Orchestration Aspire is a **code-first, polyglot toolchain** for building observ
Tool: SKILL.md [2/2] Description: Generate deployment manifests | Preview | | `aspire config` | Manage configuration settings | Stable | | `aspire cache` | Manage disk cache | Stable | | `aspire deploy` | Deploy to defined targets | Preview | | `aspire do <step>` | Execute a pipeline step | Preview | | `aspire update` | Update integrations (or `--self` for CLI) | Preview | | `aspire mcp init` | Configure MCP for AI assistants | Stable | | `aspire mcp start` | Start the MCP server | Stable | Full
Malicious tool definition detected
Tool: references/architecture.md [1/2] Description: # Architecture — Deep Dive This reference covers Aspire's internal architecture: the DCP engine, resource model, service discovery, networking, telemetry, and the eventing system.
Tool: references/architecture.md [2/2] Description: WaitFor: gates on health check — downstream won't start until healthy .WaitFor(db) // Typical pattern: both .WithReference(db).WaitFor(db) ``` ### Custom health checks ```csharp var api = builder.AddProject<Projects.Api>("api") .WithHealthCheck("ready", "/health/ready") .WithHealthCheck("live", "/health/live"); ``` --- ## Eventing System The AppHost supports lifecycle events for reacting to resource state changes: ```csharp builder.Eventing.Sub
Malicious tool definition detected
Tool: references/cli-reference.md [1/2] Description: # CLI Reference — Complete Command Reference The Aspire CLI (`aspire`) is the primary interface for creating, running, and publishing distributed applications.
Tool: references/cli-reference.md [2/2]
Malicious tool definition detected
Tool: references/dashboard.md Description: # Dashboard — Complete Reference The Aspire Dashboard provides real-time observability for all resources in your distributed application.
Malicious tool definition detected
Tool: references/deployment.md Description: # Deployment — Complete Reference Aspire separates **orchestration** (what to run) from **deployment** (where to run it).
Malicious tool definition detected
Tool: references/integrations-catalog.md Description: # Integrations Catalog Aspire has **144+ integrations** across 13 categories.
Malicious tool definition detected
Tool: references/mcp-server.md Description: # MCP Server — Complete Reference Aspire exposes an **MCP (Model Context Protocol) server** that lets AI coding assistants query and control your running distributed application, and search Aspire documentation. This enables AI tools to inspect resource status, read logs, view traces, restart services, and look up docs — all from within the AI assistant's context.
Malicious tool definition detected
Tool: references/polyglot-apis.md Description: # Polyglot APIs — Complete Reference Aspire supports 10+ languages/runtimes.
Malicious tool definition detected
Tool: references/testing.md Description: # Testing — Complete Reference Aspire provides `Aspire.Hosting.Testing` for running integration tests against your full AppHost.
Malicious tool definition detected
Tool: references/troubleshooting.md [1/2] Description: # Troubleshooting — Diagnostics & Common Issues --- ## Diagnostic Codes Aspire emits diagnostic codes for common issues.
Tool: references/troubleshooting.md [2/2] Description: | Missing connection strings in deployment | Check generated ConfigMaps/Secrets match resource names | --- ## Debugging strategies ### 1.