[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-aspire-init":3,"mdc-zaxwvo-key":45,"related-org-microsoft-aspire-init":1630,"related-repo-microsoft-aspire-init":1825},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":40,"sourceUrl":43,"mdContent":44},"aspire-init","initialize .NET Aspire in projects","**WORKFLOW SKILL** - First-run flow for adding Aspire to a repo. Picks `aspire new` (greenfield) or `aspire init` (existing repo), drops the AppHost skeleton, then hands off to `aspireify` for resource wiring. USE FOR: aspire init, aspire new, aspire-starter, aspire-ts-starter, aspire-py-starter, add Aspire to existing repo, scaffold Aspire app, bootstrap Aspire, no AppHost detected, install aspireify, generated .aspire\u002Fmodules. DO NOT USE FOR: AppHost wiring on an existing AppHost (use aspireify), start\u002Fstop\u002Fwait (use aspire-orchestration), deploy\u002Fpublish (use aspire-deployment), logs\u002Ftraces (use aspire-monitoring), repo that already has an AppHost. INVOKES: aspire CLI (init, new, doctor), aspireify (handoff after skeleton drop). FOR SINGLE OPERATIONS: Run `aspire init` or `aspire new TEMPLATE` directly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"microsoft","Microsoft","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmicrosoft.png",[12,16,19],{"name":13,"slug":14,"type":15},"Architecture","architecture","tag",{"name":17,"slug":18,"type":15},".NET","net",{"name":20,"slug":21,"type":15},"Deployment","deployment",64,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Faspire-skills","2026-07-03T16:32:19.726602","MIT",6,[28,29,30,31,32,33,34,35,36,37,38,39],"ai","ai-agents","ai-coding-agents","ai-skills","ai-tools","aspire","coding-agents","developer-tools","distributed-applications","github-copilot","official","skills",{"repoUrl":23,"stars":22,"forks":26,"topics":41,"description":42},[28,29,30,31,32,33,34,35,36,37,38,39],"Official Aspire skills and plugins for AI coding agents to initialize, wire, orchestrate, monitor, and deploy distributed apps.","https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Faspire-skills\u002Ftree\u002FHEAD\u002Fskills\u002Faspire-init","---\nname: aspire-init\ndescription: >-\n  **WORKFLOW SKILL** - First-run flow for adding Aspire to a repo. Picks `aspire new`\n  (greenfield) or `aspire init` (existing repo), drops the AppHost skeleton, then hands\n  off to `aspireify` for resource wiring.\n  USE FOR: aspire init, aspire new, aspire-starter, aspire-ts-starter, aspire-py-starter,\n  add Aspire to existing repo, scaffold Aspire app, bootstrap Aspire, no AppHost detected,\n  install aspireify, generated .aspire\u002Fmodules.\n  DO NOT USE FOR: AppHost wiring on an existing AppHost (use aspireify), start\u002Fstop\u002Fwait\n  (use aspire-orchestration), deploy\u002Fpublish (use aspire-deployment), logs\u002Ftraces (use\n  aspire-monitoring), repo that already has an AppHost.\n  INVOKES: aspire CLI (init, new, doctor), aspireify (handoff after skeleton drop).\n  FOR SINGLE OPERATIONS: Run `aspire init` or `aspire new TEMPLATE` directly.\nlicense: MIT\nmetadata:\n  author: Microsoft\n  version: \"0.0.1\"\n---\n\n# Aspire Init\n\n> **First-run only.** This skill owns the skeleton drop and template choice for repositories\n> that do not yet have an Aspire AppHost. Once the skeleton is in place, hand off to\n> [`aspireify`](https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Faspire-skills\u002Fblob\u002Fmain\u002Fskills\u002Faspireify\u002FSKILL.md) for the actual resource wiring.\n\n## Prerequisites\n\n| Requirement | Install |\n|-------------|---------|\n| .NET 10.0 SDK | https:\u002F\u002Fdotnet.microsoft.com\u002Fdownload |\n| Aspire CLI (curl installer) | `curl -sSL https:\u002F\u002Faspire.dev\u002Finstall.sh \\| bash` |\n| Aspire CLI (NativeAOT global tool) | `dotnet tool install -g Aspire.Cli` (.NET 10 required) |\n| Diagnose missing prerequisites | `aspire doctor` |\n\n> Aspire ships the CLI as a NativeAOT .NET global tool — instant startup, no JIT warmup.\n> The curl\u002FPowerShell installer remains supported for environments without .NET 10.\n\n## Detection\n\nActivate **only** when adding Aspire to a workspace that does not yet have one. Confirm ALL\nof the following before running `aspire init`:\n\n| Signal | How to Detect | Meaning |\n|--------|---------------|---------|\n| No C# AppHost | No `.csproj` containing `Aspire.AppHost.Sdk` | OK to init |\n| No file-based AppHost | No `apphost.cs` with `#:sdk Aspire.AppHost.Sdk` | OK to init |\n| No TypeScript AppHost | No `apphost.ts` in repo root | OK to init |\n| No Aspire config | No `aspire.config.json` in repo root | OK to init |\n| User intent | Explicit \"add Aspire\", \"scaffold Aspire\", \"aspire init\" | OK to init |\n\nIf **any** AppHost signal is already present, **do not run `aspire init`**. Route to\n[`aspireify`](https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Faspire-skills\u002Fblob\u002Fmain\u002Fskills\u002Faspireify\u002FSKILL.md) (re-wire) or\n[`aspire-orchestration`](https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Faspire-skills\u002Fblob\u002Fmain\u002Fskills\u002Faspire-orchestration\u002FSKILL.md) (lifecycle).\n\n## Decision: `aspire new` vs `aspire init`\n\n| Situation | Command | Why |\n|-----------|---------|-----|\n| Empty directory or brand-new project | `aspire new \u003Ctemplate>` | Generates a full starter solution |\n| Existing repo with services to model | `aspire init` | Drops minimal skeleton + `aspire.config.json` next to existing code |\n| User wants a sample to learn from | `aspire new aspire-starter` | Includes ApiService + Web + ServiceDefaults |\n| User wants the smallest possible scaffold | `aspire new aspire-empty` (C#) or `aspire new aspire-ts-empty` (TS) | No resources pre-wired |\n| User wants Python services | `aspire new aspire-py-starter` (TypeScript AppHost drives Python) | **Not** `dotnet new` — that template was removed in 13.3 |\n\nSee [references\u002Ftemplates.md](references\u002Ftemplates.md) for the complete template list and\noptions.\n\n## Workflow A — `aspire new \u003Ctemplate>` (new project)\n\nFor brand-new projects in an empty or non-existent directory:\n\n1. Confirm prerequisites with `aspire doctor` if the CLI install is uncertain.\n2. Pick a template from [references\u002Ftemplates.md](references\u002Ftemplates.md).\n3. Run the template, append `--non-interactive` for agent flows:\n   ```bash\n   aspire new aspire-starter --name MyApp --output .\u002FMyApp --non-interactive\n   ```\n4. The new directory is fully wired by the template — **no aspireify handoff needed**.\n5. Route to [`aspire-orchestration`](https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Faspire-skills\u002Fblob\u002Fmain\u002Fskills\u002Faspire-orchestration\u002FSKILL.md) for first run\n   (`aspire start`).\n\n## Workflow B — `aspire init` (existing repo)\n\nFor repositories that already contain services (Express API, .NET API, Python service, etc.)\nand need an AppHost added alongside them:\n\n1. Verify the [Detection](#detection) table — confirm **no** AppHost is present.\n2. Run `aspire init`, choosing language explicitly for non-interactive flows:\n   ```bash\n   aspire init --language csharp --non-interactive\n   # or\n   aspire init --language typescript --non-interactive\n   ```\n3. `aspire init` drops:\n   - The AppHost skeleton (`apphost.cs` with `#:sdk` directives, **or** `apphost.ts` with the\n     generated `.aspire\u002Fmodules\u002F` folder)\n   - AppHost configuration describing language + AppHost path\n   - The **`aspireify`** agent skill into the project's skill directory (same one\n     `aspire agent init` uses)\n4. **Hand off to `aspireify`** — `aspire init` does **not** wire resources, projects, or\n   integrations on its own.\n5. After `aspireify` finishes wiring, validate via `aspire start`\n   ([`aspire-orchestration`](https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Faspire-skills\u002Fblob\u002Fmain\u002Fskills\u002Faspire-orchestration\u002FSKILL.md)).\n\nSee [references\u002Finit-workflow.md](references\u002Finit-workflow.md) for the full sequence\nincluding what `aspire.config.json` contains and what to do if `aspire init` fails partway.\n\n## Handoff Rules\n\n| After `aspire init` \u002F `aspire new` finishes... | Route To |\n|------------------------------------------------|----------|\n| Skeleton dropped, resources need wiring | → `aspireify` skill (in-plugin or project-local) |\n| Skeleton dropped, validate it starts | → `aspire-orchestration` (run `aspire start`) |\n| New project from template, ready to run | → `aspire-orchestration` |\n| User asks to deploy after init | → `aspire-deployment` |\n| User asks for logs\u002Ftraces after init | → `aspire-monitoring` |\n| Existing AppHost detected — do NOT run init | → `aspireify` (re-wire) or `aspire-orchestration` (lifecycle) |\n\n## Project-Local Skill Override\n\nIf `.agents\u002Fskills\u002Faspire-init\u002FSKILL.md` exists project-locally (legacy install from an\nolder `aspire init` run), **warn the user and defer to it**. The legacy project-local skill\nmay carry repo-specific guidance that should not be overridden by this in-plugin skill.\n\nThe project-local `aspireify` skill (installed by `aspire init`) takes precedence\nover this plugin's in-plugin `aspireify` for the same reason — defer to the project-local\ncopy and warn.\n\n## Error Handling\n\n| Symptom | Cause | Action |\n|---------|-------|--------|\n| `aspire init` reports AppHost already exists | Repo already has an AppHost | Stop. Route to `aspireify` (re-wire) or `aspire-orchestration` (lifecycle) |\n| `aspire init` fails in non-interactive mode without `--language` | Multiple language paths available | Re-run with `--language csharp` or `--language typescript` |\n| `aspire new` rejects `--output` path | Path exists and is non-empty | Use a different `--output` or empty the directory |\n| `aspire` command not found | CLI not installed | `dotnet tool install -g Aspire.Cli` (.NET 10) or `curl -sSL https:\u002F\u002Faspire.dev\u002Finstall.sh \\| bash` |\n| `aspire doctor` reports missing .NET 10 | SDK missing | Install .NET 10 SDK before retrying |\n| `aspire init` succeeded but no `aspireify` skill installed | Agent skill directory not detected | Run `aspire agent init` to install `aspireify`, then continue wiring |\n| Skeleton dropped but resources not wired | Expected — `aspire init` does not wire | Hand off to `aspireify` |\n\n## References\n\n- [templates.md](references\u002Ftemplates.md) — `aspire new` templates and options\n- [init-workflow.md](references\u002Finit-workflow.md) — `aspire init` flow, `aspire.config.json`\n  layout, and `aspireify` handoff\n",{"data":46,"body":49},{"name":4,"description":6,"license":25,"metadata":47},{"author":9,"version":48},"0.0.1",{"type":50,"children":51},"root",[52,60,92,99,197,205,211,231,384,432,451,619,631,644,649,783,796,801,1043,1068,1074,1234,1240,1266,1292,1298,1569,1575,1624],{"type":53,"tag":54,"props":55,"children":56},"element","h1",{"id":4},[57],{"type":58,"value":59},"text","Aspire Init",{"type":53,"tag":61,"props":62,"children":63},"blockquote",{},[64],{"type":53,"tag":65,"props":66,"children":67},"p",{},[68,74,76,90],{"type":53,"tag":69,"props":70,"children":71},"strong",{},[72],{"type":58,"value":73},"First-run only.",{"type":58,"value":75}," This skill owns the skeleton drop and template choice for repositories\nthat do not yet have an Aspire AppHost. Once the skeleton is in place, hand off to\n",{"type":53,"tag":77,"props":78,"children":82},"a",{"href":79,"rel":80},"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Faspire-skills\u002Fblob\u002Fmain\u002Fskills\u002Faspireify\u002FSKILL.md",[81],"nofollow",[83],{"type":53,"tag":84,"props":85,"children":87},"code",{"className":86},[],[88],{"type":58,"value":89},"aspireify",{"type":58,"value":91}," for the actual resource wiring.",{"type":53,"tag":93,"props":94,"children":96},"h2",{"id":95},"prerequisites",[97],{"type":58,"value":98},"Prerequisites",{"type":53,"tag":100,"props":101,"children":102},"table",{},[103,122],{"type":53,"tag":104,"props":105,"children":106},"thead",{},[107],{"type":53,"tag":108,"props":109,"children":110},"tr",{},[111,117],{"type":53,"tag":112,"props":113,"children":114},"th",{},[115],{"type":58,"value":116},"Requirement",{"type":53,"tag":112,"props":118,"children":119},{},[120],{"type":58,"value":121},"Install",{"type":53,"tag":123,"props":124,"children":125},"tbody",{},[126,144,161,180],{"type":53,"tag":108,"props":127,"children":128},{},[129,135],{"type":53,"tag":130,"props":131,"children":132},"td",{},[133],{"type":58,"value":134},".NET 10.0 SDK",{"type":53,"tag":130,"props":136,"children":137},{},[138],{"type":53,"tag":77,"props":139,"children":142},{"href":140,"rel":141},"https:\u002F\u002Fdotnet.microsoft.com\u002Fdownload",[81],[143],{"type":58,"value":140},{"type":53,"tag":108,"props":145,"children":146},{},[147,152],{"type":53,"tag":130,"props":148,"children":149},{},[150],{"type":58,"value":151},"Aspire CLI (curl installer)",{"type":53,"tag":130,"props":153,"children":154},{},[155],{"type":53,"tag":84,"props":156,"children":158},{"className":157},[],[159],{"type":58,"value":160},"curl -sSL https:\u002F\u002Faspire.dev\u002Finstall.sh | bash",{"type":53,"tag":108,"props":162,"children":163},{},[164,169],{"type":53,"tag":130,"props":165,"children":166},{},[167],{"type":58,"value":168},"Aspire CLI (NativeAOT global tool)",{"type":53,"tag":130,"props":170,"children":171},{},[172,178],{"type":53,"tag":84,"props":173,"children":175},{"className":174},[],[176],{"type":58,"value":177},"dotnet tool install -g Aspire.Cli",{"type":58,"value":179}," (.NET 10 required)",{"type":53,"tag":108,"props":181,"children":182},{},[183,188],{"type":53,"tag":130,"props":184,"children":185},{},[186],{"type":58,"value":187},"Diagnose missing prerequisites",{"type":53,"tag":130,"props":189,"children":190},{},[191],{"type":53,"tag":84,"props":192,"children":194},{"className":193},[],[195],{"type":58,"value":196},"aspire doctor",{"type":53,"tag":61,"props":198,"children":199},{},[200],{"type":53,"tag":65,"props":201,"children":202},{},[203],{"type":58,"value":204},"Aspire ships the CLI as a NativeAOT .NET global tool — instant startup, no JIT warmup.\nThe curl\u002FPowerShell installer remains supported for environments without .NET 10.",{"type":53,"tag":93,"props":206,"children":208},{"id":207},"detection",[209],{"type":58,"value":210},"Detection",{"type":53,"tag":65,"props":212,"children":213},{},[214,216,221,223,229],{"type":58,"value":215},"Activate ",{"type":53,"tag":69,"props":217,"children":218},{},[219],{"type":58,"value":220},"only",{"type":58,"value":222}," when adding Aspire to a workspace that does not yet have one. Confirm ALL\nof the following before running ",{"type":53,"tag":84,"props":224,"children":226},{"className":225},[],[227],{"type":58,"value":228},"aspire init",{"type":58,"value":230},":",{"type":53,"tag":100,"props":232,"children":233},{},[234,255],{"type":53,"tag":104,"props":235,"children":236},{},[237],{"type":53,"tag":108,"props":238,"children":239},{},[240,245,250],{"type":53,"tag":112,"props":241,"children":242},{},[243],{"type":58,"value":244},"Signal",{"type":53,"tag":112,"props":246,"children":247},{},[248],{"type":58,"value":249},"How to Detect",{"type":53,"tag":112,"props":251,"children":252},{},[253],{"type":58,"value":254},"Meaning",{"type":53,"tag":123,"props":256,"children":257},{},[258,290,320,344,367],{"type":53,"tag":108,"props":259,"children":260},{},[261,266,285],{"type":53,"tag":130,"props":262,"children":263},{},[264],{"type":58,"value":265},"No C# AppHost",{"type":53,"tag":130,"props":267,"children":268},{},[269,271,277,279],{"type":58,"value":270},"No ",{"type":53,"tag":84,"props":272,"children":274},{"className":273},[],[275],{"type":58,"value":276},".csproj",{"type":58,"value":278}," containing ",{"type":53,"tag":84,"props":280,"children":282},{"className":281},[],[283],{"type":58,"value":284},"Aspire.AppHost.Sdk",{"type":53,"tag":130,"props":286,"children":287},{},[288],{"type":58,"value":289},"OK to init",{"type":53,"tag":108,"props":291,"children":292},{},[293,298,316],{"type":53,"tag":130,"props":294,"children":295},{},[296],{"type":58,"value":297},"No file-based AppHost",{"type":53,"tag":130,"props":299,"children":300},{},[301,302,308,310],{"type":58,"value":270},{"type":53,"tag":84,"props":303,"children":305},{"className":304},[],[306],{"type":58,"value":307},"apphost.cs",{"type":58,"value":309}," with ",{"type":53,"tag":84,"props":311,"children":313},{"className":312},[],[314],{"type":58,"value":315},"#:sdk Aspire.AppHost.Sdk",{"type":53,"tag":130,"props":317,"children":318},{},[319],{"type":58,"value":289},{"type":53,"tag":108,"props":321,"children":322},{},[323,328,340],{"type":53,"tag":130,"props":324,"children":325},{},[326],{"type":58,"value":327},"No TypeScript AppHost",{"type":53,"tag":130,"props":329,"children":330},{},[331,332,338],{"type":58,"value":270},{"type":53,"tag":84,"props":333,"children":335},{"className":334},[],[336],{"type":58,"value":337},"apphost.ts",{"type":58,"value":339}," in repo root",{"type":53,"tag":130,"props":341,"children":342},{},[343],{"type":58,"value":289},{"type":53,"tag":108,"props":345,"children":346},{},[347,352,363],{"type":53,"tag":130,"props":348,"children":349},{},[350],{"type":58,"value":351},"No Aspire config",{"type":53,"tag":130,"props":353,"children":354},{},[355,356,362],{"type":58,"value":270},{"type":53,"tag":84,"props":357,"children":359},{"className":358},[],[360],{"type":58,"value":361},"aspire.config.json",{"type":58,"value":339},{"type":53,"tag":130,"props":364,"children":365},{},[366],{"type":58,"value":289},{"type":53,"tag":108,"props":368,"children":369},{},[370,375,380],{"type":53,"tag":130,"props":371,"children":372},{},[373],{"type":58,"value":374},"User intent",{"type":53,"tag":130,"props":376,"children":377},{},[378],{"type":58,"value":379},"Explicit \"add Aspire\", \"scaffold Aspire\", \"aspire init\"",{"type":53,"tag":130,"props":381,"children":382},{},[383],{"type":58,"value":289},{"type":53,"tag":65,"props":385,"children":386},{},[387,389,394,396,406,408,417,419,430],{"type":58,"value":388},"If ",{"type":53,"tag":69,"props":390,"children":391},{},[392],{"type":58,"value":393},"any",{"type":58,"value":395}," AppHost signal is already present, ",{"type":53,"tag":69,"props":397,"children":398},{},[399,401],{"type":58,"value":400},"do not run ",{"type":53,"tag":84,"props":402,"children":404},{"className":403},[],[405],{"type":58,"value":228},{"type":58,"value":407},". Route to\n",{"type":53,"tag":77,"props":409,"children":411},{"href":79,"rel":410},[81],[412],{"type":53,"tag":84,"props":413,"children":415},{"className":414},[],[416],{"type":58,"value":89},{"type":58,"value":418}," (re-wire) or\n",{"type":53,"tag":77,"props":420,"children":423},{"href":421,"rel":422},"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Faspire-skills\u002Fblob\u002Fmain\u002Fskills\u002Faspire-orchestration\u002FSKILL.md",[81],[424],{"type":53,"tag":84,"props":425,"children":427},{"className":426},[],[428],{"type":58,"value":429},"aspire-orchestration",{"type":58,"value":431}," (lifecycle).",{"type":53,"tag":93,"props":433,"children":435},{"id":434},"decision-aspire-new-vs-aspire-init",[436,438,444,446],{"type":58,"value":437},"Decision: ",{"type":53,"tag":84,"props":439,"children":441},{"className":440},[],[442],{"type":58,"value":443},"aspire new",{"type":58,"value":445}," vs ",{"type":53,"tag":84,"props":447,"children":449},{"className":448},[],[450],{"type":58,"value":228},{"type":53,"tag":100,"props":452,"children":453},{},[454,475],{"type":53,"tag":104,"props":455,"children":456},{},[457],{"type":53,"tag":108,"props":458,"children":459},{},[460,465,470],{"type":53,"tag":112,"props":461,"children":462},{},[463],{"type":58,"value":464},"Situation",{"type":53,"tag":112,"props":466,"children":467},{},[468],{"type":58,"value":469},"Command",{"type":53,"tag":112,"props":471,"children":472},{},[473],{"type":58,"value":474},"Why",{"type":53,"tag":123,"props":476,"children":477},{},[478,500,528,550,582],{"type":53,"tag":108,"props":479,"children":480},{},[481,486,495],{"type":53,"tag":130,"props":482,"children":483},{},[484],{"type":58,"value":485},"Empty directory or brand-new project",{"type":53,"tag":130,"props":487,"children":488},{},[489],{"type":53,"tag":84,"props":490,"children":492},{"className":491},[],[493],{"type":58,"value":494},"aspire new \u003Ctemplate>",{"type":53,"tag":130,"props":496,"children":497},{},[498],{"type":58,"value":499},"Generates a full starter solution",{"type":53,"tag":108,"props":501,"children":502},{},[503,508,516],{"type":53,"tag":130,"props":504,"children":505},{},[506],{"type":58,"value":507},"Existing repo with services to model",{"type":53,"tag":130,"props":509,"children":510},{},[511],{"type":53,"tag":84,"props":512,"children":514},{"className":513},[],[515],{"type":58,"value":228},{"type":53,"tag":130,"props":517,"children":518},{},[519,521,526],{"type":58,"value":520},"Drops minimal skeleton + ",{"type":53,"tag":84,"props":522,"children":524},{"className":523},[],[525],{"type":58,"value":361},{"type":58,"value":527}," next to existing code",{"type":53,"tag":108,"props":529,"children":530},{},[531,536,545],{"type":53,"tag":130,"props":532,"children":533},{},[534],{"type":58,"value":535},"User wants a sample to learn from",{"type":53,"tag":130,"props":537,"children":538},{},[539],{"type":53,"tag":84,"props":540,"children":542},{"className":541},[],[543],{"type":58,"value":544},"aspire new aspire-starter",{"type":53,"tag":130,"props":546,"children":547},{},[548],{"type":58,"value":549},"Includes ApiService + Web + ServiceDefaults",{"type":53,"tag":108,"props":551,"children":552},{},[553,558,577],{"type":53,"tag":130,"props":554,"children":555},{},[556],{"type":58,"value":557},"User wants the smallest possible scaffold",{"type":53,"tag":130,"props":559,"children":560},{},[561,567,569,575],{"type":53,"tag":84,"props":562,"children":564},{"className":563},[],[565],{"type":58,"value":566},"aspire new aspire-empty",{"type":58,"value":568}," (C#) or ",{"type":53,"tag":84,"props":570,"children":572},{"className":571},[],[573],{"type":58,"value":574},"aspire new aspire-ts-empty",{"type":58,"value":576}," (TS)",{"type":53,"tag":130,"props":578,"children":579},{},[580],{"type":58,"value":581},"No resources pre-wired",{"type":53,"tag":108,"props":583,"children":584},{},[585,590,601],{"type":53,"tag":130,"props":586,"children":587},{},[588],{"type":58,"value":589},"User wants Python services",{"type":53,"tag":130,"props":591,"children":592},{},[593,599],{"type":53,"tag":84,"props":594,"children":596},{"className":595},[],[597],{"type":58,"value":598},"aspire new aspire-py-starter",{"type":58,"value":600}," (TypeScript AppHost drives Python)",{"type":53,"tag":130,"props":602,"children":603},{},[604,609,611,617],{"type":53,"tag":69,"props":605,"children":606},{},[607],{"type":58,"value":608},"Not",{"type":58,"value":610}," ",{"type":53,"tag":84,"props":612,"children":614},{"className":613},[],[615],{"type":58,"value":616},"dotnet new",{"type":58,"value":618}," — that template was removed in 13.3",{"type":53,"tag":65,"props":620,"children":621},{},[622,624,629],{"type":58,"value":623},"See ",{"type":53,"tag":77,"props":625,"children":627},{"href":626},"references\u002Ftemplates.md",[628],{"type":58,"value":626},{"type":58,"value":630}," for the complete template list and\noptions.",{"type":53,"tag":93,"props":632,"children":634},{"id":633},"workflow-a-aspire-new-template-new-project",[635,637,642],{"type":58,"value":636},"Workflow A — ",{"type":53,"tag":84,"props":638,"children":640},{"className":639},[],[641],{"type":58,"value":494},{"type":58,"value":643}," (new project)",{"type":53,"tag":65,"props":645,"children":646},{},[647],{"type":58,"value":648},"For brand-new projects in an empty or non-existent directory:",{"type":53,"tag":650,"props":651,"children":652},"ol",{},[653,666,677,748,759],{"type":53,"tag":654,"props":655,"children":656},"li",{},[657,659,664],{"type":58,"value":658},"Confirm prerequisites with ",{"type":53,"tag":84,"props":660,"children":662},{"className":661},[],[663],{"type":58,"value":196},{"type":58,"value":665}," if the CLI install is uncertain.",{"type":53,"tag":654,"props":667,"children":668},{},[669,671,675],{"type":58,"value":670},"Pick a template from ",{"type":53,"tag":77,"props":672,"children":673},{"href":626},[674],{"type":58,"value":626},{"type":58,"value":676},".",{"type":53,"tag":654,"props":678,"children":679},{},[680,682,688,690],{"type":58,"value":681},"Run the template, append ",{"type":53,"tag":84,"props":683,"children":685},{"className":684},[],[686],{"type":58,"value":687},"--non-interactive",{"type":58,"value":689}," for agent flows:\n",{"type":53,"tag":691,"props":692,"children":697},"pre",{"className":693,"code":694,"language":695,"meta":696,"style":696},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","aspire new aspire-starter --name MyApp --output .\u002FMyApp --non-interactive\n","bash","",[698],{"type":53,"tag":84,"props":699,"children":700},{"__ignoreMap":696},[701],{"type":53,"tag":702,"props":703,"children":706},"span",{"class":704,"line":705},"line",1,[707,712,718,723,728,733,738,743],{"type":53,"tag":702,"props":708,"children":710},{"style":709},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[711],{"type":58,"value":33},{"type":53,"tag":702,"props":713,"children":715},{"style":714},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[716],{"type":58,"value":717}," new",{"type":53,"tag":702,"props":719,"children":720},{"style":714},[721],{"type":58,"value":722}," aspire-starter",{"type":53,"tag":702,"props":724,"children":725},{"style":714},[726],{"type":58,"value":727}," --name",{"type":53,"tag":702,"props":729,"children":730},{"style":714},[731],{"type":58,"value":732}," MyApp",{"type":53,"tag":702,"props":734,"children":735},{"style":714},[736],{"type":58,"value":737}," --output",{"type":53,"tag":702,"props":739,"children":740},{"style":714},[741],{"type":58,"value":742}," .\u002FMyApp",{"type":53,"tag":702,"props":744,"children":745},{"style":714},[746],{"type":58,"value":747}," --non-interactive\n",{"type":53,"tag":654,"props":749,"children":750},{},[751,753,758],{"type":58,"value":752},"The new directory is fully wired by the template — ",{"type":53,"tag":69,"props":754,"children":755},{},[756],{"type":58,"value":757},"no aspireify handoff needed",{"type":58,"value":676},{"type":53,"tag":654,"props":760,"children":761},{},[762,764,773,775,781],{"type":58,"value":763},"Route to ",{"type":53,"tag":77,"props":765,"children":767},{"href":421,"rel":766},[81],[768],{"type":53,"tag":84,"props":769,"children":771},{"className":770},[],[772],{"type":58,"value":429},{"type":58,"value":774}," for first run\n(",{"type":53,"tag":84,"props":776,"children":778},{"className":777},[],[779],{"type":58,"value":780},"aspire start",{"type":58,"value":782},").",{"type":53,"tag":93,"props":784,"children":786},{"id":785},"workflow-b-aspire-init-existing-repo",[787,789,794],{"type":58,"value":788},"Workflow B — ",{"type":53,"tag":84,"props":790,"children":792},{"className":791},[],[793],{"type":58,"value":228},{"type":58,"value":795}," (existing repo)",{"type":53,"tag":65,"props":797,"children":798},{},[799],{"type":58,"value":800},"For repositories that already contain services (Express API, .NET API, Python service, etc.)\nand need an AppHost added alongside them:",{"type":53,"tag":650,"props":802,"children":803},{},[804,823,903,985,1014],{"type":53,"tag":654,"props":805,"children":806},{},[807,809,814,816,821],{"type":58,"value":808},"Verify the ",{"type":53,"tag":77,"props":810,"children":812},{"href":811},"#detection",[813],{"type":58,"value":210},{"type":58,"value":815}," table — confirm ",{"type":53,"tag":69,"props":817,"children":818},{},[819],{"type":58,"value":820},"no",{"type":58,"value":822}," AppHost is present.",{"type":53,"tag":654,"props":824,"children":825},{},[826,828,833,835],{"type":58,"value":827},"Run ",{"type":53,"tag":84,"props":829,"children":831},{"className":830},[],[832],{"type":58,"value":228},{"type":58,"value":834},", choosing language explicitly for non-interactive flows:\n",{"type":53,"tag":691,"props":836,"children":838},{"className":693,"code":837,"language":695,"meta":696,"style":696},"aspire init --language csharp --non-interactive\n# or\naspire init --language typescript --non-interactive\n",[839],{"type":53,"tag":84,"props":840,"children":841},{"__ignoreMap":696},[842,868,878],{"type":53,"tag":702,"props":843,"children":844},{"class":704,"line":705},[845,849,854,859,864],{"type":53,"tag":702,"props":846,"children":847},{"style":709},[848],{"type":58,"value":33},{"type":53,"tag":702,"props":850,"children":851},{"style":714},[852],{"type":58,"value":853}," init",{"type":53,"tag":702,"props":855,"children":856},{"style":714},[857],{"type":58,"value":858}," --language",{"type":53,"tag":702,"props":860,"children":861},{"style":714},[862],{"type":58,"value":863}," csharp",{"type":53,"tag":702,"props":865,"children":866},{"style":714},[867],{"type":58,"value":747},{"type":53,"tag":702,"props":869,"children":871},{"class":704,"line":870},2,[872],{"type":53,"tag":702,"props":873,"children":875},{"style":874},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[876],{"type":58,"value":877},"# or\n",{"type":53,"tag":702,"props":879,"children":881},{"class":704,"line":880},3,[882,886,890,894,899],{"type":53,"tag":702,"props":883,"children":884},{"style":709},[885],{"type":58,"value":33},{"type":53,"tag":702,"props":887,"children":888},{"style":714},[889],{"type":58,"value":853},{"type":53,"tag":702,"props":891,"children":892},{"style":714},[893],{"type":58,"value":858},{"type":53,"tag":702,"props":895,"children":896},{"style":714},[897],{"type":58,"value":898}," typescript",{"type":53,"tag":702,"props":900,"children":901},{"style":714},[902],{"type":58,"value":747},{"type":53,"tag":654,"props":904,"children":905},{},[906,911,913],{"type":53,"tag":84,"props":907,"children":909},{"className":908},[],[910],{"type":58,"value":228},{"type":58,"value":912}," drops:\n",{"type":53,"tag":914,"props":915,"children":916},"ul",{},[917,957,962],{"type":53,"tag":654,"props":918,"children":919},{},[920,922,927,928,934,936,941,942,947,949,955],{"type":58,"value":921},"The AppHost skeleton (",{"type":53,"tag":84,"props":923,"children":925},{"className":924},[],[926],{"type":58,"value":307},{"type":58,"value":309},{"type":53,"tag":84,"props":929,"children":931},{"className":930},[],[932],{"type":58,"value":933},"#:sdk",{"type":58,"value":935}," directives, ",{"type":53,"tag":69,"props":937,"children":938},{},[939],{"type":58,"value":940},"or",{"type":58,"value":610},{"type":53,"tag":84,"props":943,"children":945},{"className":944},[],[946],{"type":58,"value":337},{"type":58,"value":948}," with the\ngenerated ",{"type":53,"tag":84,"props":950,"children":952},{"className":951},[],[953],{"type":58,"value":954},".aspire\u002Fmodules\u002F",{"type":58,"value":956}," folder)",{"type":53,"tag":654,"props":958,"children":959},{},[960],{"type":58,"value":961},"AppHost configuration describing language + AppHost path",{"type":53,"tag":654,"props":963,"children":964},{},[965,967,975,977,983],{"type":58,"value":966},"The ",{"type":53,"tag":69,"props":968,"children":969},{},[970],{"type":53,"tag":84,"props":971,"children":973},{"className":972},[],[974],{"type":58,"value":89},{"type":58,"value":976}," agent skill into the project's skill directory (same one\n",{"type":53,"tag":84,"props":978,"children":980},{"className":979},[],[981],{"type":58,"value":982},"aspire agent init",{"type":58,"value":984}," uses)",{"type":53,"tag":654,"props":986,"children":987},{},[988,998,1000,1005,1007,1012],{"type":53,"tag":69,"props":989,"children":990},{},[991,993],{"type":58,"value":992},"Hand off to ",{"type":53,"tag":84,"props":994,"children":996},{"className":995},[],[997],{"type":58,"value":89},{"type":58,"value":999}," — ",{"type":53,"tag":84,"props":1001,"children":1003},{"className":1002},[],[1004],{"type":58,"value":228},{"type":58,"value":1006}," does ",{"type":53,"tag":69,"props":1008,"children":1009},{},[1010],{"type":58,"value":1011},"not",{"type":58,"value":1013}," wire resources, projects, or\nintegrations on its own.",{"type":53,"tag":654,"props":1015,"children":1016},{},[1017,1019,1024,1026,1031,1033,1042],{"type":58,"value":1018},"After ",{"type":53,"tag":84,"props":1020,"children":1022},{"className":1021},[],[1023],{"type":58,"value":89},{"type":58,"value":1025}," finishes wiring, validate via ",{"type":53,"tag":84,"props":1027,"children":1029},{"className":1028},[],[1030],{"type":58,"value":780},{"type":58,"value":1032},"\n(",{"type":53,"tag":77,"props":1034,"children":1036},{"href":421,"rel":1035},[81],[1037],{"type":53,"tag":84,"props":1038,"children":1040},{"className":1039},[],[1041],{"type":58,"value":429},{"type":58,"value":782},{"type":53,"tag":65,"props":1044,"children":1045},{},[1046,1047,1052,1054,1059,1061,1066],{"type":58,"value":623},{"type":53,"tag":77,"props":1048,"children":1050},{"href":1049},"references\u002Finit-workflow.md",[1051],{"type":58,"value":1049},{"type":58,"value":1053}," for the full sequence\nincluding what ",{"type":53,"tag":84,"props":1055,"children":1057},{"className":1056},[],[1058],{"type":58,"value":361},{"type":58,"value":1060}," contains and what to do if ",{"type":53,"tag":84,"props":1062,"children":1064},{"className":1063},[],[1065],{"type":58,"value":228},{"type":58,"value":1067}," fails partway.",{"type":53,"tag":93,"props":1069,"children":1071},{"id":1070},"handoff-rules",[1072],{"type":58,"value":1073},"Handoff Rules",{"type":53,"tag":100,"props":1075,"children":1076},{},[1077,1106],{"type":53,"tag":104,"props":1078,"children":1079},{},[1080],{"type":53,"tag":108,"props":1081,"children":1082},{},[1083,1101],{"type":53,"tag":112,"props":1084,"children":1085},{},[1086,1087,1092,1094,1099],{"type":58,"value":1018},{"type":53,"tag":84,"props":1088,"children":1090},{"className":1089},[],[1091],{"type":58,"value":228},{"type":58,"value":1093}," \u002F ",{"type":53,"tag":84,"props":1095,"children":1097},{"className":1096},[],[1098],{"type":58,"value":443},{"type":58,"value":1100}," finishes...",{"type":53,"tag":112,"props":1102,"children":1103},{},[1104],{"type":58,"value":1105},"Route To",{"type":53,"tag":123,"props":1107,"children":1108},{},[1109,1129,1155,1172,1190,1208],{"type":53,"tag":108,"props":1110,"children":1111},{},[1112,1117],{"type":53,"tag":130,"props":1113,"children":1114},{},[1115],{"type":58,"value":1116},"Skeleton dropped, resources need wiring",{"type":53,"tag":130,"props":1118,"children":1119},{},[1120,1122,1127],{"type":58,"value":1121},"→ ",{"type":53,"tag":84,"props":1123,"children":1125},{"className":1124},[],[1126],{"type":58,"value":89},{"type":58,"value":1128}," skill (in-plugin or project-local)",{"type":53,"tag":108,"props":1130,"children":1131},{},[1132,1137],{"type":53,"tag":130,"props":1133,"children":1134},{},[1135],{"type":58,"value":1136},"Skeleton dropped, validate it starts",{"type":53,"tag":130,"props":1138,"children":1139},{},[1140,1141,1146,1148,1153],{"type":58,"value":1121},{"type":53,"tag":84,"props":1142,"children":1144},{"className":1143},[],[1145],{"type":58,"value":429},{"type":58,"value":1147}," (run ",{"type":53,"tag":84,"props":1149,"children":1151},{"className":1150},[],[1152],{"type":58,"value":780},{"type":58,"value":1154},")",{"type":53,"tag":108,"props":1156,"children":1157},{},[1158,1163],{"type":53,"tag":130,"props":1159,"children":1160},{},[1161],{"type":58,"value":1162},"New project from template, ready to run",{"type":53,"tag":130,"props":1164,"children":1165},{},[1166,1167],{"type":58,"value":1121},{"type":53,"tag":84,"props":1168,"children":1170},{"className":1169},[],[1171],{"type":58,"value":429},{"type":53,"tag":108,"props":1173,"children":1174},{},[1175,1180],{"type":53,"tag":130,"props":1176,"children":1177},{},[1178],{"type":58,"value":1179},"User asks to deploy after init",{"type":53,"tag":130,"props":1181,"children":1182},{},[1183,1184],{"type":58,"value":1121},{"type":53,"tag":84,"props":1185,"children":1187},{"className":1186},[],[1188],{"type":58,"value":1189},"aspire-deployment",{"type":53,"tag":108,"props":1191,"children":1192},{},[1193,1198],{"type":53,"tag":130,"props":1194,"children":1195},{},[1196],{"type":58,"value":1197},"User asks for logs\u002Ftraces after init",{"type":53,"tag":130,"props":1199,"children":1200},{},[1201,1202],{"type":58,"value":1121},{"type":53,"tag":84,"props":1203,"children":1205},{"className":1204},[],[1206],{"type":58,"value":1207},"aspire-monitoring",{"type":53,"tag":108,"props":1209,"children":1210},{},[1211,1216],{"type":53,"tag":130,"props":1212,"children":1213},{},[1214],{"type":58,"value":1215},"Existing AppHost detected — do NOT run init",{"type":53,"tag":130,"props":1217,"children":1218},{},[1219,1220,1225,1227,1232],{"type":58,"value":1121},{"type":53,"tag":84,"props":1221,"children":1223},{"className":1222},[],[1224],{"type":58,"value":89},{"type":58,"value":1226}," (re-wire) or ",{"type":53,"tag":84,"props":1228,"children":1230},{"className":1229},[],[1231],{"type":58,"value":429},{"type":58,"value":1233}," (lifecycle)",{"type":53,"tag":93,"props":1235,"children":1237},{"id":1236},"project-local-skill-override",[1238],{"type":58,"value":1239},"Project-Local Skill Override",{"type":53,"tag":65,"props":1241,"children":1242},{},[1243,1244,1250,1252,1257,1259,1264],{"type":58,"value":388},{"type":53,"tag":84,"props":1245,"children":1247},{"className":1246},[],[1248],{"type":58,"value":1249},".agents\u002Fskills\u002Faspire-init\u002FSKILL.md",{"type":58,"value":1251}," exists project-locally (legacy install from an\nolder ",{"type":53,"tag":84,"props":1253,"children":1255},{"className":1254},[],[1256],{"type":58,"value":228},{"type":58,"value":1258}," run), ",{"type":53,"tag":69,"props":1260,"children":1261},{},[1262],{"type":58,"value":1263},"warn the user and defer to it",{"type":58,"value":1265},". The legacy project-local skill\nmay carry repo-specific guidance that should not be overridden by this in-plugin skill.",{"type":53,"tag":65,"props":1267,"children":1268},{},[1269,1271,1276,1278,1283,1285,1290],{"type":58,"value":1270},"The project-local ",{"type":53,"tag":84,"props":1272,"children":1274},{"className":1273},[],[1275],{"type":58,"value":89},{"type":58,"value":1277}," skill (installed by ",{"type":53,"tag":84,"props":1279,"children":1281},{"className":1280},[],[1282],{"type":58,"value":228},{"type":58,"value":1284},") takes precedence\nover this plugin's in-plugin ",{"type":53,"tag":84,"props":1286,"children":1288},{"className":1287},[],[1289],{"type":58,"value":89},{"type":58,"value":1291}," for the same reason — defer to the project-local\ncopy and warn.",{"type":53,"tag":93,"props":1293,"children":1295},{"id":1294},"error-handling",[1296],{"type":58,"value":1297},"Error Handling",{"type":53,"tag":100,"props":1299,"children":1300},{},[1301,1322],{"type":53,"tag":104,"props":1302,"children":1303},{},[1304],{"type":53,"tag":108,"props":1305,"children":1306},{},[1307,1312,1317],{"type":53,"tag":112,"props":1308,"children":1309},{},[1310],{"type":58,"value":1311},"Symptom",{"type":53,"tag":112,"props":1313,"children":1314},{},[1315],{"type":58,"value":1316},"Cause",{"type":53,"tag":112,"props":1318,"children":1319},{},[1320],{"type":58,"value":1321},"Action",{"type":53,"tag":123,"props":1323,"children":1324},{},[1325,1360,1403,1441,1474,1497,1540],{"type":53,"tag":108,"props":1326,"children":1327},{},[1328,1338,1343],{"type":53,"tag":130,"props":1329,"children":1330},{},[1331,1336],{"type":53,"tag":84,"props":1332,"children":1334},{"className":1333},[],[1335],{"type":58,"value":228},{"type":58,"value":1337}," reports AppHost already exists",{"type":53,"tag":130,"props":1339,"children":1340},{},[1341],{"type":58,"value":1342},"Repo already has an AppHost",{"type":53,"tag":130,"props":1344,"children":1345},{},[1346,1348,1353,1354,1359],{"type":58,"value":1347},"Stop. Route to ",{"type":53,"tag":84,"props":1349,"children":1351},{"className":1350},[],[1352],{"type":58,"value":89},{"type":58,"value":1226},{"type":53,"tag":84,"props":1355,"children":1357},{"className":1356},[],[1358],{"type":58,"value":429},{"type":58,"value":1233},{"type":53,"tag":108,"props":1361,"children":1362},{},[1363,1379,1384],{"type":53,"tag":130,"props":1364,"children":1365},{},[1366,1371,1373],{"type":53,"tag":84,"props":1367,"children":1369},{"className":1368},[],[1370],{"type":58,"value":228},{"type":58,"value":1372}," fails in non-interactive mode without ",{"type":53,"tag":84,"props":1374,"children":1376},{"className":1375},[],[1377],{"type":58,"value":1378},"--language",{"type":53,"tag":130,"props":1380,"children":1381},{},[1382],{"type":58,"value":1383},"Multiple language paths available",{"type":53,"tag":130,"props":1385,"children":1386},{},[1387,1389,1395,1397],{"type":58,"value":1388},"Re-run with ",{"type":53,"tag":84,"props":1390,"children":1392},{"className":1391},[],[1393],{"type":58,"value":1394},"--language csharp",{"type":58,"value":1396}," or ",{"type":53,"tag":84,"props":1398,"children":1400},{"className":1399},[],[1401],{"type":58,"value":1402},"--language typescript",{"type":53,"tag":108,"props":1404,"children":1405},{},[1406,1424,1429],{"type":53,"tag":130,"props":1407,"children":1408},{},[1409,1414,1416,1422],{"type":53,"tag":84,"props":1410,"children":1412},{"className":1411},[],[1413],{"type":58,"value":443},{"type":58,"value":1415}," rejects ",{"type":53,"tag":84,"props":1417,"children":1419},{"className":1418},[],[1420],{"type":58,"value":1421},"--output",{"type":58,"value":1423}," path",{"type":53,"tag":130,"props":1425,"children":1426},{},[1427],{"type":58,"value":1428},"Path exists and is non-empty",{"type":53,"tag":130,"props":1430,"children":1431},{},[1432,1434,1439],{"type":58,"value":1433},"Use a different ",{"type":53,"tag":84,"props":1435,"children":1437},{"className":1436},[],[1438],{"type":58,"value":1421},{"type":58,"value":1440}," or empty the directory",{"type":53,"tag":108,"props":1442,"children":1443},{},[1444,1454,1459],{"type":53,"tag":130,"props":1445,"children":1446},{},[1447,1452],{"type":53,"tag":84,"props":1448,"children":1450},{"className":1449},[],[1451],{"type":58,"value":33},{"type":58,"value":1453}," command not found",{"type":53,"tag":130,"props":1455,"children":1456},{},[1457],{"type":58,"value":1458},"CLI not installed",{"type":53,"tag":130,"props":1460,"children":1461},{},[1462,1467,1469],{"type":53,"tag":84,"props":1463,"children":1465},{"className":1464},[],[1466],{"type":58,"value":177},{"type":58,"value":1468}," (.NET 10) or ",{"type":53,"tag":84,"props":1470,"children":1472},{"className":1471},[],[1473],{"type":58,"value":160},{"type":53,"tag":108,"props":1475,"children":1476},{},[1477,1487,1492],{"type":53,"tag":130,"props":1478,"children":1479},{},[1480,1485],{"type":53,"tag":84,"props":1481,"children":1483},{"className":1482},[],[1484],{"type":58,"value":196},{"type":58,"value":1486}," reports missing .NET 10",{"type":53,"tag":130,"props":1488,"children":1489},{},[1490],{"type":58,"value":1491},"SDK missing",{"type":53,"tag":130,"props":1493,"children":1494},{},[1495],{"type":58,"value":1496},"Install .NET 10 SDK before retrying",{"type":53,"tag":108,"props":1498,"children":1499},{},[1500,1517,1522],{"type":53,"tag":130,"props":1501,"children":1502},{},[1503,1508,1510,1515],{"type":53,"tag":84,"props":1504,"children":1506},{"className":1505},[],[1507],{"type":58,"value":228},{"type":58,"value":1509}," succeeded but no ",{"type":53,"tag":84,"props":1511,"children":1513},{"className":1512},[],[1514],{"type":58,"value":89},{"type":58,"value":1516}," skill installed",{"type":53,"tag":130,"props":1518,"children":1519},{},[1520],{"type":58,"value":1521},"Agent skill directory not detected",{"type":53,"tag":130,"props":1523,"children":1524},{},[1525,1526,1531,1533,1538],{"type":58,"value":827},{"type":53,"tag":84,"props":1527,"children":1529},{"className":1528},[],[1530],{"type":58,"value":982},{"type":58,"value":1532}," to install ",{"type":53,"tag":84,"props":1534,"children":1536},{"className":1535},[],[1537],{"type":58,"value":89},{"type":58,"value":1539},", then continue wiring",{"type":53,"tag":108,"props":1541,"children":1542},{},[1543,1548,1560],{"type":53,"tag":130,"props":1544,"children":1545},{},[1546],{"type":58,"value":1547},"Skeleton dropped but resources not wired",{"type":53,"tag":130,"props":1549,"children":1550},{},[1551,1553,1558],{"type":58,"value":1552},"Expected — ",{"type":53,"tag":84,"props":1554,"children":1556},{"className":1555},[],[1557],{"type":58,"value":228},{"type":58,"value":1559}," does not wire",{"type":53,"tag":130,"props":1561,"children":1562},{},[1563,1564],{"type":58,"value":992},{"type":53,"tag":84,"props":1565,"children":1567},{"className":1566},[],[1568],{"type":58,"value":89},{"type":53,"tag":93,"props":1570,"children":1572},{"id":1571},"references",[1573],{"type":58,"value":1574},"References",{"type":53,"tag":914,"props":1576,"children":1577},{},[1578,1594],{"type":53,"tag":654,"props":1579,"children":1580},{},[1581,1586,1587,1592],{"type":53,"tag":77,"props":1582,"children":1583},{"href":626},[1584],{"type":58,"value":1585},"templates.md",{"type":58,"value":999},{"type":53,"tag":84,"props":1588,"children":1590},{"className":1589},[],[1591],{"type":58,"value":443},{"type":58,"value":1593}," templates and options",{"type":53,"tag":654,"props":1595,"children":1596},{},[1597,1602,1603,1608,1610,1615,1617,1622],{"type":53,"tag":77,"props":1598,"children":1599},{"href":1049},[1600],{"type":58,"value":1601},"init-workflow.md",{"type":58,"value":999},{"type":53,"tag":84,"props":1604,"children":1606},{"className":1605},[],[1607],{"type":58,"value":228},{"type":58,"value":1609}," flow, ",{"type":53,"tag":84,"props":1611,"children":1613},{"className":1612},[],[1614],{"type":58,"value":361},{"type":58,"value":1616},"\nlayout, and ",{"type":53,"tag":84,"props":1618,"children":1620},{"className":1619},[],[1621],{"type":58,"value":89},{"type":58,"value":1623}," handoff",{"type":53,"tag":1625,"props":1626,"children":1627},"style",{},[1628],{"type":58,"value":1629},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1631,"total":1824},[1632,1654,1673,1694,1709,1726,1737,1750,1765,1780,1799,1812],{"slug":1633,"name":1633,"fn":1634,"description":1635,"org":1636,"tags":1637,"stars":1651,"repoUrl":1652,"updatedAt":1653},"rushstack-best-practices","manage Rush monorepos with best practices","Provides best practices and guidance for working with Rush monorepos. Use when the user is working in a Rush-based repository, asks about Rush commands (install, update, build, rebuild), needs help with project selection, dependency management, build caching, subspace configuration, or troubleshooting Rush-specific issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1638,1641,1644,1645,1648],{"name":1639,"slug":1640,"type":15},"Engineering","engineering",{"name":1642,"slug":1643,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":1646,"slug":1647,"type":15},"Project Management","project-management",{"name":1649,"slug":1650,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":1655,"name":1655,"fn":1656,"description":1657,"org":1658,"tags":1659,"stars":1670,"repoUrl":1671,"updatedAt":1672},"azure-ai-agents-persistent-dotnet","build AI agents with Azure .NET SDK","Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1660,1661,1664,1667],{"name":17,"slug":18,"type":15},{"name":1662,"slug":1663,"type":15},"Agents","agents",{"name":1665,"slug":1666,"type":15},"Azure","azure",{"name":1668,"slug":1669,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":1674,"name":1674,"fn":1675,"description":1676,"org":1677,"tags":1678,"stars":1670,"repoUrl":1671,"updatedAt":1693},"azure-ai-anomalydetector-java","build anomaly detection applications with Java","Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate\u002Fmultivariate anomaly detection, time-series analysis, or AI-powered monitoring.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1679,1682,1683,1686,1689,1690],{"name":1680,"slug":1681,"type":15},"Analytics","analytics",{"name":1665,"slug":1666,"type":15},{"name":1684,"slug":1685,"type":15},"Data Analysis","data-analysis",{"name":1687,"slug":1688,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":1691,"slug":1692,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":1695,"name":1695,"fn":1696,"description":1697,"org":1698,"tags":1699,"stars":1670,"repoUrl":1671,"updatedAt":1708},"azure-ai-contentsafety-java","build content moderation applications with Azure AI","Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text\u002Fimage analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1700,1703,1704,1705],{"name":1701,"slug":1702,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1665,"slug":1666,"type":15},{"name":1687,"slug":1688,"type":15},{"name":1706,"slug":1707,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":1710,"name":1710,"fn":1711,"description":1712,"org":1713,"tags":1714,"stars":1670,"repoUrl":1671,"updatedAt":1725},"azure-ai-contentsafety-py","detect harmful content with Azure AI Content Safety","Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1715,1716,1719,1720,1721,1724],{"name":1665,"slug":1666,"type":15},{"name":1717,"slug":1718,"type":15},"Compliance","compliance",{"name":1668,"slug":1669,"type":15},{"name":9,"slug":8,"type":15},{"name":1722,"slug":1723,"type":15},"Python","python",{"name":1706,"slug":1707,"type":15},"2026-07-18T05:14:23.017504",{"slug":1727,"name":1727,"fn":1728,"description":1729,"org":1730,"tags":1731,"stars":1670,"repoUrl":1671,"updatedAt":1736},"azure-ai-language-conversations-py","implement conversational language understanding with Python","Implement Conversational Language Understanding (CLU) using the azure-ai-language-conversations Python SDK. Use when working with ConversationAnalysisClient to analyze conversation intent and entities, building NLP features, or integrating language understanding into applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1732,1733,1734,1735],{"name":1680,"slug":1681,"type":15},{"name":1665,"slug":1666,"type":15},{"name":1668,"slug":1669,"type":15},{"name":1722,"slug":1723,"type":15},"2026-07-31T05:54:29.068751",{"slug":1738,"name":1738,"fn":1739,"description":1740,"org":1741,"tags":1742,"stars":1670,"repoUrl":1671,"updatedAt":1749},"azure-ai-translation-text-py","translate text using Azure AI services","Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1743,1746,1747,1748],{"name":1744,"slug":1745,"type":15},"API Development","api-development",{"name":1665,"slug":1666,"type":15},{"name":9,"slug":8,"type":15},{"name":1722,"slug":1723,"type":15},"2026-07-18T05:14:16.988376",{"slug":1751,"name":1751,"fn":1752,"description":1753,"org":1754,"tags":1755,"stars":1670,"repoUrl":1671,"updatedAt":1764},"azure-ai-vision-imageanalysis-py","analyze images with Azure AI Vision","Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1756,1757,1760,1763],{"name":1665,"slug":1666,"type":15},{"name":1758,"slug":1759,"type":15},"Computer Vision","computer-vision",{"name":1761,"slug":1762,"type":15},"Images","images",{"name":1722,"slug":1723,"type":15},"2026-07-18T05:14:18.007737",{"slug":1766,"name":1766,"fn":1767,"description":1768,"org":1769,"tags":1770,"stars":1670,"repoUrl":1671,"updatedAt":1779},"azure-appconfiguration-java","manage configuration with Azure App Configuration","Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1771,1772,1775,1778],{"name":1665,"slug":1666,"type":15},{"name":1773,"slug":1774,"type":15},"Configuration","configuration",{"name":1776,"slug":1777,"type":15},"Feature Flags","feature-flags",{"name":1687,"slug":1688,"type":15},"2026-07-03T16:32:01.278468",{"slug":1781,"name":1781,"fn":1782,"description":1783,"org":1784,"tags":1785,"stars":1670,"repoUrl":1671,"updatedAt":1798},"azure-cosmos-rust","build applications with Azure Cosmos DB","Azure Cosmos DB library for Rust (NoSQL API). Document CRUD, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"document crud rust\", \"NoSQL rust\", \"partition key rust\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1786,1789,1792,1795],{"name":1787,"slug":1788,"type":15},"Cosmos DB","cosmos-db",{"name":1790,"slug":1791,"type":15},"Database","database",{"name":1793,"slug":1794,"type":15},"NoSQL","nosql",{"name":1796,"slug":1797,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":1800,"name":1800,"fn":1782,"description":1801,"org":1802,"tags":1803,"stars":1670,"repoUrl":1671,"updatedAt":1811},"azure-cosmos-ts","Azure Cosmos DB JavaScript\u002FTypeScript SDK (@azure\u002Fcosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure\u002Fcosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1804,1805,1806,1807,1808],{"name":1787,"slug":1788,"type":15},{"name":1790,"slug":1791,"type":15},{"name":9,"slug":8,"type":15},{"name":1793,"slug":1794,"type":15},{"name":1809,"slug":1810,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":1813,"name":1813,"fn":1814,"description":1815,"org":1816,"tags":1817,"stars":1670,"repoUrl":1671,"updatedAt":1823},"azure-data-tables-java","build table storage applications with Java","Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at scale.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1818,1819,1820,1821,1822],{"name":1665,"slug":1666,"type":15},{"name":1787,"slug":1788,"type":15},{"name":1790,"slug":1791,"type":15},{"name":1687,"slug":1688,"type":15},{"name":1793,"slug":1794,"type":15},"2026-05-13T06:14:17.582229",267,{"items":1826,"total":870},[1827,1833],{"slug":4,"name":4,"fn":5,"description":6,"org":1828,"tags":1829,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1830,1831,1832],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"slug":429,"name":429,"fn":1834,"description":1835,"org":1836,"tags":1837,"stars":22,"repoUrl":23,"updatedAt":1845},"manage .NET Aspire application lifecycle","**WORKFLOW SKILL** — Manage Aspire AppHost lifecycle and recover from file locks, port conflicts, and orphaned processes. WHEN: \"start my Aspire app\", \"aspire start\", \"aspire stop\", \"aspire wait\", \"restart the API service\", \"file lock error\", \"MSB3491\", \"CS2012\", \"port already in use\", \"upgrade Aspire CLI\", \"aspire update --self\", \"proxies missing in aspire ps\", \"--include-hidden\", \"aspire integration list\", \"aspire integration search\", \"default watch\", \"hot reload\". INVOKES: aspire CLI (start, stop, wait, ps, resource, integration, add, init, doctor, update, restore). DO NOT USE FOR: deploy \u002F publish \u002F destroy \u002F pipeline steps (use aspire-deployment), logs \u002F traces \u002F metrics \u002F dashboard run (use aspire-monitoring), AppHost code edits or resource wiring (use aspireify). FOR SINGLE OPERATIONS: Run the aspire CLI command directly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1838,1839,1842],{"name":17,"slug":18,"type":15},{"name":1840,"slug":1841,"type":15},"Operations","operations",{"name":1843,"slug":1844,"type":15},"Orchestration","orchestration","2026-07-31T05:55:17.26473"]