From 663bdae6ffecb42fd2e8c8a9ce00fc6c07d254d0 Mon Sep 17 00:00:00 2001 From: Pascal Senn Date: Sun, 14 Jun 2026 00:03:33 +0200 Subject: [PATCH 1/2] docs: add `dnx skillz` install command for .NET developers --- .../content/docs/get-started/aspire-skills.mdx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/frontend/src/content/docs/get-started/aspire-skills.mdx b/src/frontend/src/content/docs/get-started/aspire-skills.mdx index 1a80c895d..9ae787655 100644 --- a/src/frontend/src/content/docs/get-started/aspire-skills.mdx +++ b/src/frontend/src/content/docs/get-started/aspire-skills.mdx @@ -216,6 +216,22 @@ In that command, `-a github-copilot` selects the target agent, `-g` installs glo documentation](https://www.skills.sh/docs/cli). + + + +On the .NET 10 SDK or later, `dnx` runs [`skillz`](https://www.nuget.org/packages/skillz), which is like `skills` but natively a .NET tool, no Node.js required. + +```bash title="dnx" +dnx skillz add microsoft/aspire-skills +``` + +Use this path when you already have the .NET SDK and prefer not to depend on Node.js. + + + `skillz` is open source at + [chillicream/skillz](https://github.com/chillicream/skillz). + + From d52775ebae5a05f45926a9619fda243f22fc32d4 Mon Sep 17 00:00:00 2001 From: Pascal Senn Date: Sun, 14 Jun 2026 00:09:25 +0200 Subject: [PATCH 2/2] cleanup --- src/frontend/src/content/docs/get-started/aspire-skills.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/content/docs/get-started/aspire-skills.mdx b/src/frontend/src/content/docs/get-started/aspire-skills.mdx index 9ae787655..41acad3a3 100644 --- a/src/frontend/src/content/docs/get-started/aspire-skills.mdx +++ b/src/frontend/src/content/docs/get-started/aspire-skills.mdx @@ -225,7 +225,7 @@ On the .NET 10 SDK or later, `dnx` runs [`skillz`](https://www.nuget.org/package dnx skillz add microsoft/aspire-skills ``` -Use this path when you already have the .NET SDK and prefer not to depend on Node.js. +Use this option when you already have the .NET SDK and prefer not to depend on Node.js. `skillz` is open source at