From nuget
NuGet package management via dotnet CLI. Trigger on install package, update package, push nupkg, pack project, manage NuGet sources, or clear NuGet cache.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nuget:nugetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
NuGet package management via `dotnet` CLI. A standalone `nuget.exe` is bundled for legacy `packages.config` projects.
NuGet package management via dotnet CLI. A standalone nuget.exe is bundled for legacy packages.config projects.
| Task | Command |
|---|---|
| Add package to project | dotnet add <project> package <id> |
| Add with version | dotnet add <project> package <id> --version <v> |
| Remove package | dotnet remove <project> package <id> |
| List packages | dotnet list <project> package |
| List outdated | dotnet list <project> package --outdated |
| Pack a project | dotnet pack <project> -c Release |
| Push to NuGet.org | dotnet nuget push <nupkg> --api-key <key> --source https://api.nuget.org/v3/index.json |
| Install global tool | dotnet tool install --global <id> |
| Update global tool | dotnet tool update --global <id> |
| List sources | dotnet nuget list source |
| Add source | dotnet nuget add source <url> -n <name> |
| Clear cache | dotnet nuget locals all --clear |
| Search NuGet | https://www.nuget.org/packages?q=<query> |
Use Version="*" in .csproj for consumption. Never pin. Receiver resolves latest. For publishing, use semantic versioning. Add --version flag only when specifically requested.
See references/package-project.md for the full csproj template and conventions. Based on the Angri450.Nong.Docx reference implementation.
See references/publishing.md for the full step-by-step.
.csprojdotnet pack <project> -c Releasedotnet nuget push <nupkg> --api-key <key> --source https://api.nuget.org/v3/index.jsonGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub angri450/nong.dev.net --plugin nuget