aspire — Application distribuée cloud-native aspire, aspire.dev, community, Application distribuée cloud-native, ide skills, Commandes CLI, Surveillance des applications, Systèmes distribués, Informatique en nuage, aspire AI agent skill

v1.0.0

À propos de ce Skill

Perfect for Cloud-Native Agents needing streamlined AI coding workflows and distributed application management. Aspire est une plate-forme d'application distribuée cloud-native

Fonctionnalités

Application distribuée cloud-native
Commandes CLI de gestion
Surveillance des applications

# Core Topics

microsoft microsoft
[130]
[69]
Updated: 4/20/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
55
Canonical Locale
en
Detected Body Locale
en

Perfect for Cloud-Native Agents needing streamlined AI coding workflows and distributed application management. Aspire est une plate-forme d'application distribuée cloud-native

Pourquoi utiliser cette compétence

Empowers agents to orchestrate distributed applications, automate tasks, and optimize performance using Aspire's cloud-native app toolkit, supporting protocols like CLI commands and integrating with resources via MCP tools.

Meilleur pour

Perfect for Cloud-Native Agents needing streamlined AI coding workflows and distributed application management.

Cas d'utilisation exploitables for aspire

Automating resource management with CLI commands like `aspire start` and `aspire stop`
Debugging issues using structured logs and distributed traces with `aspire otel logs` and `aspire otel traces`
Adding integrations with `aspire add` and managing AppHost packages with `aspire update`

! Sécurité et Limitations

  • Requires Aspire installation and configuration
  • Limited to Aspire-supported resources and MCP tools
  • Dependent on AppHost project setup and configuration

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is aspire?

Perfect for Cloud-Native Agents needing streamlined AI coding workflows and distributed application management. Aspire est une plate-forme d'application distribuée cloud-native

How do I install aspire?

Run the command: npx killer-skills add microsoft/aspire.dev/aspire. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for aspire?

Key use cases include: Automating resource management with CLI commands like `aspire start` and `aspire stop`, Debugging issues using structured logs and distributed traces with `aspire otel logs` and `aspire otel traces`, Adding integrations with `aspire add` and managing AppHost packages with `aspire update`.

Which IDEs are compatible with aspire?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for aspire?

Requires Aspire installation and configuration. Limited to Aspire-supported resources and MCP tools. Dependent on AppHost project setup and configuration.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add microsoft/aspire.dev/aspire. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use aspire immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

aspire

Aspire est une plate-forme d'application distribuée cloud-native qui propose des commandes CLI pour gérer et surveiller les applications

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Aspire Skill

This repository uses Aspire to orchestrate its distributed application. Resources are defined in the AppHost project (apphost.cs or apphost.ts).

CLI command reference

TaskCommand
Start the appaspire start
Start isolated (worktrees)aspire start --isolated
Restart the appaspire start (stops previous automatically)
Wait for resource healthyaspire wait <resource>
Stop the appaspire stop
List resourcesaspire describe or aspire resources
Run resource commandaspire resource <resource> <command>
Start/stop/restart resource`aspire resource <resource> start
View console logsaspire logs [resource]
View structured logsaspire otel logs [resource]
View tracesaspire otel traces [resource]
Logs for a traceaspire otel logs --trace-id <id>
Add an integrationaspire add
List running AppHostsaspire ps
Update AppHost packagesaspire update
Search docsaspire docs search <query>
Get doc pageaspire docs get <slug>
List doc pagesaspire docs list
Environment diagnosticsaspire doctor
List resource MCP toolsaspire mcp tools
Call resource MCP toolaspire mcp call <resource> <tool> --input <json>

Most commands support --format Json for machine-readable output. Use --apphost <path> to target a specific AppHost.

Key workflows

Running in agent environments

Use aspire start to run the AppHost in the background. When working in a git worktree, use --isolated to avoid port conflicts and to prevent sharing user secrets or other local state with other running instances:

bash
1aspire start --isolated

Use aspire wait <resource> to block until a resource is healthy before interacting with it:

bash
1aspire start --isolated 2aspire wait myapi

Relaunching is safe — aspire start automatically stops any previous instance. Re-run aspire start whenever changes are made to the AppHost project.

Debugging issues

Before making code changes, inspect the app state:

  1. aspire describe — check resource status
  2. aspire otel logs <resource> — view structured logs
  3. aspire logs <resource> — view console output
  4. aspire otel traces <resource> — view distributed traces

Adding integrations

Use aspire docs search to find integration documentation, then aspire docs get to read the full guide. Use aspire add to add the integration package to the AppHost.

After adding an integration, restart the app with aspire start for the new resource to take effect.

Using resource MCP tools

Some resources expose MCP tools (e.g. WithPostgresMcp() adds SQL query tools). Discover and call them via CLI:

bash
1aspire mcp tools # list available tools 2aspire mcp tools --format Json # includes input schemas 3aspire mcp call <resource> <tool> --input '{"key":"value"}' # invoke a tool

Important rules

  • Always start the app first (aspire start) before making changes to verify the starting state.
  • To restart, just run aspire start again — it automatically stops the previous instance. NEVER use aspire stop then aspire run. NEVER use aspire run at all.
  • Use --isolated when working in a worktree.
  • Avoid persistent containers early in development to prevent state management issues.
  • Never install the Aspire workload — it is obsolete.
  • Prefer aspire.dev and learn.microsoft.com/microsoft/aspire for official documentation.

Playwright CLI

If configured, use Playwright CLI for functional testing of resources. Get endpoints via aspire describe. Run playwright-cli --help for available commands.

Compétences associées

Looking for an alternative to aspire or another community skill for your workflow? Explore these related open-source skills.

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

widget-generator

Logo of f
f

Générez des plugins de widgets personnalisables pour le système de flux prompts.chat

flags

Logo of vercel
vercel

Le Cadre de Réaction

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Tenseurs et réseaux neuronaux dynamiques en Python avec une forte accélération GPU

98.6k
0
Développeur