원클릭으로
nuget-package-skills
// Discover and load AI coding skills bundled with NuGet packages in .NET projects. Use when working on .NET code to get package-specific guidance.
// Discover and load AI coding skills bundled with NuGet packages in .NET projects. Use when working on .NET code to get package-specific guidance.
| name | nuget-package-skills |
| description | Discover and load AI coding skills bundled with NuGet packages in .NET projects. Use when working on .NET code to get package-specific guidance. |
This project may use NuGet packages that bundle AI coding skills — structured guidance for working with specific libraries.
All commands below are shell commands — run them in the terminal, NOT as skill invocations.
At the start of a session involving a .NET project, use the Bash tool to run:
nuget-skills scan
This lists all NuGet packages in the current project/solution that bundle skills. The output is a compact index — keep it in context.
When your task involves a package that has a skill available, use the Bash tool to run:
nuget-skills load <package-name>
This outputs the full skill content for that package. Read it and follow its guidance.
To get metadata about a package (repository URL, description, license), use the Bash tool to run:
nuget-skills info <package-name>
If nuget-skills commands fail with "command not found", the CLI tool is not installed.
Tell the user to install it:
dotnet tool install -g nuget-skills
This is required for scan, load, and info to work. The plugin provides the skills but the CLI tool provides the commands.
nuget-skills commands are CLI tools — always run them in the terminal