From 16fc1ea6415e482d71cd301029cf2784051498fc Mon Sep 17 00:00:00 2001 From: Pascal Senn Date: Sat, 13 Jun 2026 16:46:52 +0200 Subject: [PATCH 1/4] docs: add optional `dnx skillz` install command for .NET developers --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 73b716f8..2eb83a9b 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,12 @@ npx skills add microsoft/skills Select the skills you need from the wizard. Skills are installed to your chosen agent's directory (e.g., `.github/skills/` for GitHub Copilot) and symlinked if you use multiple agents. +**On .NET 10 or later?** `dnx` ships with the .NET 10 SDK and runs [`skillz`](https://www.nuget.org/packages/skillz), which is like `skills` but natively a .NET tool, no Node.js required: + +```bash +dnx skillz add microsoft/skills +``` +
Alternative installation methods From 08a14affe0584886ef2f1d566629bd42d5891bae Mon Sep 17 00:00:00 2001 From: PascalSenn Date: Sat, 13 Jun 2026 23:59:15 +0200 Subject: [PATCH 2/4] Update --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2eb83a9b..a037b527 100644 --- a/README.md +++ b/README.md @@ -22,15 +22,16 @@ npx skills add microsoft/skills Select the skills you need from the wizard. Skills are installed to your chosen agent's directory (e.g., `.github/skills/` for GitHub Copilot) and symlinked if you use multiple agents. + +
+Alternative installation methods + **On .NET 10 or later?** `dnx` ships with the .NET 10 SDK and runs [`skillz`](https://www.nuget.org/packages/skillz), which is like `skills` but natively a .NET tool, no Node.js required: ```bash dnx skillz add microsoft/skills ``` -
-Alternative installation methods - **Manual installation (git clone)** ```bash From 7e8047f14afdf8f328472ca8bfadf7572699429e Mon Sep 17 00:00:00 2001 From: PascalSenn Date: Sun, 14 Jun 2026 00:00:40 +0200 Subject: [PATCH 3/4] Cleanup --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index a037b527..2cceb4bf 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,6 @@ npx skills add microsoft/skills Select the skills you need from the wizard. Skills are installed to your chosen agent's directory (e.g., `.github/skills/` for GitHub Copilot) and symlinked if you use multiple agents. -
Alternative installation methods From 949a670761f3b6df39946160043974a18afe138f Mon Sep 17 00:00:00 2001 From: PascalSenn Date: Sun, 14 Jun 2026 00:01:20 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2cceb4bf..61c006ee 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Select the skills you need from the wizard. Skills are installed to your chosen
Alternative installation methods -**On .NET 10 or later?** `dnx` ships with the .NET 10 SDK and runs [`skillz`](https://www.nuget.org/packages/skillz), which is like `skills` but natively a .NET tool, no Node.js required: +**On .NET 10 or later?** `dnx` ships with the .NET SDK and runs [`skillz`](https://www.nuget.org/packages/skillz), which is like `skills` but natively a .NET tool, no Node.js required: ```bash dnx skillz add microsoft/skills