aspireify

**WORKFLOW SKILL** - Wire an Aspire AppHost after `aspire init` drops a skeleton. Scans the repo, proposes a resource graph, edits the AppHost (C#, file-based…

npx skills add https://github.com/microsoft/aspire-skills --skill aspireify

Aspireify

One-time wiring skill. aspire init drops a skeleton; aspireify turns that skeleton into a working AppHost by scanning the repo, proposing a resource graph, editing the AppHost, wiring Aspire.ServiceDefaults, and validating end to end. Self-deactivates after a clean aspire start.

🚫 Hard Refusal: Never Edit .aspire/modules/

β›” REFUSE any request to edit, modify, change, open-for-edit, or "tweak" files inside .aspire/modules/ of a TypeScript AppHost. This directory is generated from the installed Aspire integration package graph. It is regenerated by aspire add, aspire restore, and startup when package changes require it.

If a user asks to edit something in .aspire/modules/ (e.g., .aspire/modules/postgres.module.ts), the correct response is:

  1. Refuse the edit with a clear "I won't edit .aspire/modules/" statement.
  2. Explain that .aspire/modules/ is generated and any changes are clobbered.
  3. Redirect the requested change to the configured AppHost entry point: current apphost.mts, or legacy apphost.ts.
  4. If the user wants a new integration, suggest aspire add <package>; if they want to change configuration, show the equivalent edit in the AppHost entry point.
❌ Wrongβœ… Right
Open .aspire/modules/postgres.module.ts and tweak the connection optionsEdit apphost.mts and change addPostgres('pg', { ... }) options there
Modify a generated .aspire/modules/* file directlyRe-run aspire add <package> after updating apphost.mts
Comment out a line in .aspire/modules/ to disable a resourceRemove or guard the resource declaration in apphost.mts

This rule applies even if the user insists, even for "one-line" changes, even for "just to test something." The TS AppHost regenerates .aspire/modules/ deterministically; edits are unrecoverable noise.

Guiding Principles

Minimize changes to the user's code

Adapt the AppHost to fit the app, not the other way around. Prefer WithEnvironment() to match existing environment variable names, Aspire-managed ports over fixed ports, and 1:1 Docker Compose mapping before optimizing. Do not restructure directories, rename files, or change build scripts unless the user explicitly chooses that tradeoff.

Surface tradeoffs; do not decide silently

When a small code change unlocks better Aspire integration, present both options: the zero-code-change mapping and the small-change version that enables WithReference, health checks, service discovery, dynamic ports, or dashboard telemetry. Ask which approach the user wants, then implement that choice without complaint.

Verify APIs before writing AppHost code

Use aspire docs search <topic> and aspire docs get <slug> for workflow guidance. Use aspire docs api search <query> --language csharp|typescript and aspire docs api get <id> for API shape. Use aspire integration list/search to find integrations before aspire add. Do not invent packages, methods, overloads, or command shapes; C# and TypeScript AppHost APIs differ.

Keep configuration visible in the AppHost

Scan .env, .env.local, .env.development, secrets.json.example, <UserSecretsId>, and setup scripts. Propose migrating values into AppHost parameters: connection strings become Aspire resources, API keys/tokens become secret parameters, and non-secret config becomes plain parameters or WithEnvironment() values. Never delete .env files or remove existing UserSecretsId entries without explicit user approval because non-Aspire workflows may still depend on them.

Local development first

This skill optimizes local development, not production deployment. Prefer persistent container lifetimes and data volumes for databases/caches, use HTTPS endpoints by default, pass endpoint references instead of hardcoded URLs, and model external SaaS URLs/API keys as parameters so they are visible in the dashboard.

Redis TLS edge case

Aspire can automatically provision TLS certificates for container resources. If Redis health checks fail with SSL/TLS handshake errors, do not fall back to AddContainer(). Use WithoutHttpsCertificate() on the Redis resource when the consuming app expects plain Redis.

Project-Local Override

If .agents/skills/aspireify/SKILL.md exists (installed by aspire init or aspire agent init --skills aspireify), warn the user that a project-local copy is present and defer to it. The plugin version is the fallback.

⚠️ Project-local .agents/skills/aspireify/SKILL.md detected β€” deferring to it.

Prerequisites

RequirementInstall
.NET 10.0 SDK (C# AppHost)https://dotnet.microsoft.com/download
Node.js ^20.19.0, ^22.13.0, or >=24 (TS AppHost)https://nodejs.org
Aspire CLInpm install -g @microsoft/aspire-cli, install script, or dotnet tool install -g Aspire.Cli
Skeleton already droppedaspire init produced aspire.config.json + AppHost stub

Detection β€” When to Activate

Activate when ANY signal is present AND the AppHost is unwired (no resources declared beyond the stub):

SignalHow to DetectConfidence
Skeleton just droppedaspire init just ran in this sessionβœ… Definitive
Empty AppHost stubapphost.cs / Program.cs / current apphost.mts (or legacy apphost.ts) only contains Build().Run()βœ… Definitive
aspire.config.json without resourcesConfig present, AppHost has no AddProject/addProjectHigh
User asks to "wire" / "scaffold resource graph"Verb match: wire, scaffold, integrate, hook up, add Postgres/Redis/etc.High
User asks "what next after aspire init"Direct handoff requestβœ… Definitive
Existing repo with services + new AppHostRepo has .csproj/package.json projects but AppHost references noneHigh

If the AppHost already has wired resources and the user wants to start/stop the app β†’ aspire-orchestration. If the user wants to deploy β†’ aspire-deployment.

Language Support

AppHost StyleDetectionEdit Target
C# SDK-style.csproj containing <Sdk Name="Aspire.AppHost.Sdk" />Program.cs (top-level statements)
File-based C#apphost.cs with #:sdk Aspire.AppHost.Sdk and #:package directivesapphost.cs itself
TypeScriptCurrent apphost.mts or legacy apphost.ts with generated .aspire/modules/Configured AppHost entry point only β€” never edit .aspire/modules/

See references/csharp-authoring.md and references/typescript-authoring.md.

aspire-orchestration owns the CLI-driven migration from legacy apphost.ts. After it updates packages and migration artifacts, return to aspireify only when the user still needs AppHost source wiring or authoring.

TypeScript AppHost package managers

Dependency and toolchain failures belong to this skill. Before recommending a command, inspect the AppHost directory and then its immediate eligible parent. Within each directory, the first recognized marker wins in this order:

  1. packageManager in package.json (npm, pnpm, yarn, or bun, optionally versioned)
  2. bun.lock
  3. bun.lockb
  4. pnpm-lock.yaml
  5. yarn.lock
  6. .yarnrc.yml
  7. package-lock.json

An AppHost-local marker takes precedence over every parent marker. If neither directory has a recognized marker, Aspire defaults to npm. Report the selected manager and marker.

Use the selected manager only to repair dependencies or diagnose the toolchain. The resolver commands are npm install, bun install, and yarn install; a generated brownfield pnpm AppHost uses pnpm install --ignore-workspace, while other pnpm dependency installs use pnpm install. Yarn Classic (yarn@1... or a v1 lockfile) is unsupported: stop and ask the user to upgrade to Yarn 4+ or explicitly migrate to npm, pnpm, or Bun.

Do not change packageManager or create, replace, or regenerate a lockfile merely to influence detection or switch managers. Preserve existing files until the user explicitly chooses an upgrade or migration. Start the AppHost with aspire start --non-interactive, not a raw package-manager launcher. See references/typescript-authoring.md for the full command matrix and resolver details.

Workflow Phases

1. SCAN     β†’ discover projects, services, dependencies, integration candidates
2. PROPOSE  β†’ resource graph + integration list, confirm with user
3. EDIT     β†’ wire AppHost, add ServiceDefaults + OTel + health checks
4. VALIDATE β†’ aspire start --non-interactive β†’ aspire wait <each resource>
5. DEACTIVATE β†’ confirm clean start, hand off to aspire-orchestration

For the detailed, upstream-parity workflow, load these references before editing:

  • apphost-wiring.md β€” full AppHost wiring workflow, API lookup, endpoint/parameter patterns, validation, solution updates, and cleanup.
  • docker-compose.md β€” docker-compose migration, profiles, image mapping, ports, volumes, and depends_on.
  • full-solution-apphosts.md β€” large solution triage, mixed SDK boundaries, solution membership, ServiceDefaults placement, and legacy host migration.
  • javascript-apps.md β€” JavaScript resource selection, workspace/monorepo package-manager handling, ports, scripts, and TS AppHost package config.
  • opentelemetry.md β€” optional Node.js, Python, and Go OpenTelemetry wiring for non-.NET services.

1. Scan

Walk the repo and inventory:

WhatHow
.NET projectsfind . -name '*.csproj' -not -path '*/bin/*' -not -path '*/obj/*'
Node servicesfind . -name 'package.json' -not -path '*/node_modules/*'
Python servicesfind . -name 'pyproject.toml' -o -name 'requirements.txt'
Container deps in composedocker-compose.yml, compose.yaml (Postgres? Redis? Rabbit?)
Connection stringsgrep appsettings*.json, .env*, config/* for Postgres, Redis, Mongo, RabbitMQ, Cosmos, ServiceBus
Integration packagesdotnet list package per project; package.json dependencies
Existing endpointshardcoded ports in launchSettings.json, next.config.js, vite.config.ts

Full heuristics in references/scan-and-propose.md.

2. Propose

Present a resource graph before editing. Ask clarifying questions:

  • "I see Postgres in docker-compose.yml β€” should I model it as AddPostgres('db') or use Azure Database for PostgreSQL?"
  • "Your React app hardcodes http://localhost:5000 β€” replace with Aspire service discovery (endpoint.url)?"
  • "Your API has an /admin endpoint β€” exclude it from WithReference() so consumers don't see it?"

3. Edit

Apply the proposed graph. Use the right authoring style for the AppHost language.

4. Validate

aspire start --non-interactive --format Json
aspire wait <resource>          # repeat for each declared resource
aspire describe --format Json   # sanity check graph

Full validation flow + recovery in references/validation.md.

5. Self-Deactivate

After a clean aspire start, announce:

βœ… AppHost wired and validated. Handing off to aspire-orchestration for
   day-to-day start/stop/wait. Aspireify is done.

Integration Discovery Catalog

Map detected services β†’ Aspire integrations. See references/scan-and-propose.md for the full catalog.

DetectedC#TS
Postgres in compose / Npgsql packageAddPostgres("pg").AddDatabase("db")addPostgres('pg').addDatabase('db')
Redis in compose / StackExchange.RedisAddRedis("cache")addRedis('cache')
RabbitMQAddRabbitMQ("mq") (v7 client w/ pub-sub tracing)addRabbitMQ('mq')
MongoDBAddMongoDB("mongo")addMongoDB('mongo')
Cosmos DBAddAzureCosmosDB("cosmos")addAzureCosmosDB('cosmos')
Azure Service BusAddAzureServiceBus("sb")addAzureServiceBus('sb')
Azure Cache for Redis (Entra)AddAzureRedis("cache") (now GA)addAzureRedis('cache')
Next.js frontendAddNextJsApp("web", "./web")addNextJsApp('web', '../web')
Vite SPAAddViteApp("web", "./web")addViteApp('web', '../web')
Plain Node appAddNodeApp("api", "server.js")addNodeApp('api', 'server.js')

Current Authoring Rules

RuleWhy
Use unified withEnvironment(name, value) in TS β€” never the deprecated per-kind helpers (withEnvironmentEndpoint, withEnvironmentParameter, etc.)Single API handles all value kinds; per-kind helpers are deprecated
Use AddNextJsApp / AddViteApp over hand-rolled Dockerfiles for JS frontendsFirst-class lifecycle + PublishAs* integration
Use PublishAsStaticWebsite / PublishAsNodeServer / PublishAsPackageScript for JS publishReplaces hand-rolled Dockerfiles; SPA β†’ static, SSR Node β†’ NodeServer, package-script SSR β†’ PackageScript
Add WithBrowserLogs() to frontend resources for browser console + screenshots in dashboardAspire.Hosting.Browsers surfaces browser telemetry in the dashboard
Bind every resource to a compute environment with WithComputeEnvironment(env) when multiple environments existMulti-environment deploys require explicit binding
Never edit .aspire/modules/ in TS AppHostsGenerated; edits get clobbered. Edit the configured apphost.mts (or legacy apphost.ts) only
Use WithEndpoint("name", e => ...) to update endpointsEndpoint callbacks update existing endpoints rather than throwing on duplicates
Mark admin endpoints with ExcludeReferenceEndpoint = truePrevents consumers from receiving admin URLs via WithReference()
Look up unfamiliar API: aspire docs api search <query> --language csharp|typescriptDon't guess overloads or builder chains
Use context .Services / await ctx.services().getInteractionService().ServiceProvider is obsolete, and ctx.services() alone returns a services accessor
Use AddConnectionString for external connection stringsPublishAsConnectionString is obsolete
Check IInteractionService.IsAvailable before promptingCLI-invoked commands may be noninteractive; prefer command arguments for dashboard + CLI input
Treat WithTerminal() as experimentalSuppress ASPIRETERMINAL001; do not generate removed TerminalOptions.Shell or TypeScript dimension options
Keep all Aspire SDK and Aspire.Hosting.* packages on the same release familyMixed release families can fail at startup
Migrate GitHub Models integrations to Azure AI FoundryAspire.Hosting.GitHub.Models is deprecated and absent from integration discovery
Use WithModule(RedisModules.*) for Redis 8 modulesPrefer typed JSON, Search, Bloom Filter, and TimeSeries constants over raw module paths
Use Foundry AsHostedAgent(...) for hosted executable/container agentsCurrent Azure AI Foundry path replaces deprecated GitHub Models

C# vs TS Quick Reference

ConceptC#TypeScript
Buildervar builder = DistributedApplication.CreateBuilder(args);const builder = await createBuilder();
Add projectbuilder.AddProject<Projects.Api>("api") (SDK) or AddProject("api", "../Api/Api.csproj")await builder.addProject('api', '../Api/Api.csproj')
Wire env var (any value type).WithEnvironment("KEY", value).withEnvironment('KEY', value) ← unified API
Wait for dependency.WaitFor(db).waitFor(db)
Pass connection.WithReference(db).withReference(db)
External HTTP.WithExternalHttpEndpoints().withExternalHttpEndpoints()
Endpoint expressionapi.GetEndpoint("http")api.getEndpoint('http').url / .host / .port
Build + runbuilder.Build().Run();await builder.build().run();

ServiceDefaults Wiring

Each project should call builder.AddServiceDefaults(); to opt into OpenTelemetry, health checks, and service discovery. Add the Aspire.ServiceDefaults project reference (or NuGet for non-monorepo). See references/service-defaults.md.

Endpoint & Reference Conventions

// Public-facing API. Mark "admin" endpoint as not-for-consumers.
var api = builder.AddProject<Projects.Api>("api")
    .WithExternalHttpEndpoints()
    .WithEndpoint("admin", e => e.ExcludeReferenceEndpoint = true);

// Frontend wires the API via service discovery.
builder.AddNextJsApp("web", "./web")
    .WithReference(api)        // injects services__api__http and __https
    .WaitFor(api)
    .WithBrowserLogs();        // browser console + screenshots

Validation & Recovery

SymptomAction
aspire start fails with build errorFix code, re-run aspire start
File-lock errors during editHand off to aspire-orchestration β†’ aspire stop β†’ retry
Resource missing from aspire describeRe-run aspire describe --include-hidden; aspire ps is AppHost-level
TS AppHost change ignoredConfirm you edited the configured apphost.mts (or legacy apphost.ts), not .aspire/modules/
Mixed JSON output from aspire startStrip non-JSON lines before parsing (#15843)

Full flow in references/validation.md.

Handoff Rules

ScenarioRoute To
AppHost skeleton not yet dropped→ aspire-init skill
Day-to-day start/stop/wait/restart→ aspire-orchestration skill
Publish, deploy, destroy, pipeline steps→ aspire-deployment skill
Logs, traces, metrics, dashboard, browser log inspection→ aspire-monitoring skill
Deployed (Azure/AKS) app diagnostics→ azure-diagnostics skill (azure-skills)

Key Rules

  • Never overwrite existing files β€” always augment or merge.
  • Ask before modifying service code, especially OpenTelemetry and ServiceDefaults injection.
  • Respect existing project structure β€” do not reorganize the repo.
  • If stuck, use aspire doctor to diagnose environment issues.
  • Never hardcode URLs in WithEnvironment / withEnvironment β€” pass endpoint references such as api.GetEndpoint("http") or api.getEndpoint('http') instead of string literals.
  • Never use WithUrlForEndpoint / withUrlForEndpoint to set dev.localhost URLs β€” that API is only for dashboard display labels; dev.localhost belongs in AppHost launch/profile configuration.

References

Lebih banyak skill dari microsoft

oss-growth
microsoft
Persona peretas pertumbuhan OSS
agent-framework-azure-ai-py
microsoft
Bangun agen Azure AI Foundry menggunakan Microsoft Agent Framework Python SDK (agent-framework-azure-ai). Gunakan saat membuat agen persisten dengan AzureAIAgentsProvider, menggunakan alat yang dihosting (code interpreter, file search, web search), mengintegrasikan server MCP, mengelola utas percakapan, atau mengimplementasikan respons streaming. Mencakup alat fungsi, keluaran terstruktur, dan agen multi-alat.
development
airunway-aks-setup
microsoft
Siapkan AI Runway di AKS β€” dari klaster kosong hingga model berjalan. Mencakup verifikasi klaster, instalasi controller, penilaian GPU, penyiapan penyedia, dan deployment pertama. KAPAN: "setup AI Runway", "onboard AKS cluster", "install AI Runway", "airunway setup", "deploy model to AKS", "GPU inference on AKS", "KAITO setup on AKS", "run LLM on AKS", "vLLM on AKS", "set up model serving on AKS", "AI Runway controller".
devops
appinsights-instrumentation
microsoft
Panduan untuk instrumentasi aplikasi web dengan Azure Application Insights. Menyediakan pola telemetri, pengaturan SDK, dan referensi konfigurasi. KAPAN: cara menginstrumentasi aplikasi, SDK App Insights, pola telemetri, apa itu App Insights, panduan Application Insights, contoh instrumentasi, praktik terbaik APM.
devops
applicationinsights-web-ts
microsoft
Instrumentasi aplikasi browser/web dengan Application Insights JavaScript SDK (@microsoft/applicationinsights-web). Digunakan untuk Real User Monitoring (RUM) β€” tampilan halaman, klik, dependensi AJAX/fetch, pengecualian, peristiwa kustom, dan jejak agen GenAI sisi browser yang dikorelasikan dengan jejak OpenTelemetry backend. Mencakup pengaturan SDK Loader Script dan npm, ekstensi kerangka kerja (React, React Native, Angular), Click Analytics, inisialisasi telemetri, dan konvensi semantik OTel GenAI untuk span agen/alat/model yang dipancarkan dari browser.
devops
azure-ai-anomalydetector-java
microsoft
Bangun aplikasi deteksi anomali dengan Azure AI Anomaly Detector SDK untuk Java. Gunakan saat mengimplementasikan deteksi anomali univariat/multivariat, analisis deret waktu, atau pemantauan bertenaga AI.
development
azure-ai-language-conversations-py
microsoft
Implementasikan Pemahaman Bahasa Percakapan (CLU) menggunakan SDK Python azure-ai-language-conversations. Gunakan saat bekerja dengan ConversationAnalysisClient untuk menganalisis maksud dan entitas percakapan, membangun fitur NLP, atau mengintegrasikan pemahaman bahasa ke dalam aplikasi.
development
azure-ai-ml-py
microsoft
Azure Machine Learning SDK v2 untuk Python. Gunakan untuk ruang kerja ML, pekerjaan, model, kumpulan data, komputasi, dan pipeline. Pemicu: "azure-ai-ml", "MLClient", "ruang kerja", "registri model", "pekerjaan pelatihan", "kumpulan data".
development