Aspire AppHost Telemetry

Query and debug Aspire AppHost telemetry — retrieve logs, traces, and resource metadata.

Sby Skills Guide Bot
DevelopmentIntermediate
107/22/2026
Claude CodeCursorWindsurf
#aspire#apphost#telemetry#debugging

Recommended for


name: capability:aspire description: Query and debug Aspire AppHost telemetry — retrieve logs, traces, and resource metadata argument-hint: "--action <query|debug> [--application <name>] [--description <text>]"

aspire Skill

Unified entry point for Aspire operations. Routes to the appropriate sub-command based on --action.

Parameters

| Parameter | Required | Description | |----------------|----------|----------------------------------------------| | --action | Yes | Operation to perform: query, debug | | --application| No | Filter to a single application name |

Action Routing

| Action | Command | Description | |---------|-----------------------------------------------|----------------------------------------------------| | query | @capability:aspire:query | Retrieve raw telemetry from Aspire AppHost | | debug | @capability:aspire:debug | Analyze telemetry and surface issues and warnings |

Instructions

  1. Parse --action from the invocation arguments
  2. Delegate to the corresponding command per the table above, forwarding all remaining arguments
  3. Follow the delegated command's own instructions in full
Related skills