
NuGet Manager
OfficialFreeStreamline NuGet package management for .NET projects.
Free · Opens the source repo
What NuGet Manager does
NuGet Manager is a skill designed to facilitate the management of NuGet packages within .NET projects. It emphasizes using the dotnet CLI for all package management tasks, ensuring that developers maintain project integrity and follow best practices. This skill is particularly useful for teams that need to enforce consistent procedures when adding, removing, or updating package versions, thereby reducing the risk of errors that can arise from manual edits to project files.
The core functionality of NuGet Manager revolves around a strict set of rules that govern how packages should be handled. Direct editing of project files like .csproj or Directory.Packages.props is discouraged except when updating existing package versions. This approach helps prevent inconsistencies and ensures that all package changes are tracked and validated through the dotnet CLI commands. The skill provides clear workflows for adding and removing packages, as well as a detailed process for updating package versions, which includes verifying version existence and managing versions either per-project or centrally.
NuGet Manager is ideal for .NET developers and teams who are looking to standardize their package management practices. By adhering to the guidelines laid out by this skill, users can avoid common pitfalls associated with package management, such as version conflicts and broken dependencies. The skill is also beneficial for onboarding new team members, as it provides a clear framework for managing NuGet packages effectively.
In summary, NuGet Manager is a valuable tool for any .NET developer seeking to improve their workflow and ensure reliable package management. By enforcing the use of the dotnet CLI and a structured approach to package updates, it helps maintain the stability and integrity of .NET projects.
When to use it
Use NuGet Manager when you need to add, remove, or update NuGet packages in .NET projects, ensuring compliance with best practices.
When not to use it
Avoid this skill if you prefer manual editing of project files or if your project does not utilize NuGet packages.
What you can build with it
Adding a New Package
Use NuGet Manager to add a new package to your project by executing the appropriate `dotnet add` command.
Updating Package Versions
Follow the structured workflow to update package versions, ensuring you verify version existence and run `dotnet restore`.
Removing Unused Packages
Easily remove packages from your project with the `dotnet remove` command, keeping your dependencies clean and manageable.
How to install NuGet Manager
View source1. Install with the skills CLI
npx skills add github/awesome-copilot/nuget-manager --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by githubNuGet Manager
Overview
This skill ensures consistent and safe management of NuGet packages across .NET projects. It prioritizes using the dotnet CLI to maintain project integrity and enforces a strict verification and restoration workflow for version updates.
Prerequisites
- .NET SDK installed (typically .NET 8.0 SDK or later, or a version compatible with the target solution).
dotnetCLI available on yourPATH.jq(JSON processor) OR PowerShell (for version verification usingdotnet package search).
Core Rules
- NEVER directly edit
.csproj,.props, orDirectory.Packages.propsfiles to add or remove packages. Always usedotnet add packageanddotnet remove packagecommands. - DIRECT EDITING is ONLY permitted for changing versions of existing packages.
- VERSION UPDATES must follow the mandatory workflow:
- Verify the target version exists on NuGet.
- Determine if versions are managed per-project (
.csproj) or centrally (Directory.Packages.props). - Update the version string in the appropriate file.
- Immediately run
dotnet restoreto verify compatibility.
Workflows
Adding a Package
Use dotnet add [<PROJECT>] package <PACKAGE_NAME> [--version <VERSION>].
Example: dotnet add src/MyProject/MyProject.csproj package Newtonsoft.Json
Removing a Package
Use dotnet remove [<PROJECT>] package <PACKAGE_NAME>.
Example: dotnet remove src/MyProject/MyProject.csproj package Newtonsoft.Json
Updating Package Versions
When updating a version, follow these steps:
-
Verify Version Existence: Check if the version exists using the
dotnet package searchcommand with exact match and JSON formatting. Usingjq:dotnet package search <PACKAGE_NAME> --exact-match --format json | jq -e '.searchResult[].packages[] | select(.version == "<VERSION>")'Using PowerShell:(dotnet package search <PACKAGE_NAME> --exact-match --format json | ConvertFrom-Json).searchResult.packages | Where-Object { $_.version -eq "<VERSION>" } -
Determine Version Management:
- Search for
Directory.Packages.propsin the solution root. If present, versions should be managed there via<PackageVersion Include="Package.Name" Version="1.2.3" />. - If absent, check individual
.csprojfiles for<PackageReference Include="Package.Name" Version="1.2.3" />.
- Search for
-
Apply Changes: Modify the identified file with the new version string.
-
Verify Stability: Run
dotnet restoreon the project or solution. If errors occur, revert the change and investigate.
Examples
User: "Add Serilog to the WebApi project"
Action: Execute dotnet add src/WebApi/WebApi.csproj package Serilog.
User: "Update Newtonsoft.Json to 13.0.3 in the whole solution"
Action:
- Verify 13.0.3 exists:
dotnet package search Newtonsoft.Json --exact-match --format json(and parse output to confirm "13.0.3" is present). - Find where it's defined (e.g.,
Directory.Packages.props). - Edit the file to update the version.
- Run
dotnet restore.
Frequently asked questions about NuGet Manager
Similar skills
Turborepo
Optimized build system for JavaScript/TypeScript monorepos.
Azure Pipelines Validation
Streamline your Azure DevOps pipeline changes locally.
Azure Developer CLI
Streamline your Azure project workflows with best practices.
Azure Container Registry CLI
Manage Azure Container Registry resources with ease.
Aspire
Build and orchestrate polyglot distributed applications seamlessly.
Vercel CLI
Manage and deploy Vercel projects from the command line.
