nuget-update

nuget-update is a skill for Claude Code from Calabonga/Microservice-Template. It costs 119 tokens per session (1,729 once invoked), scanned A, original, MIT.

A process for checking and updating NuGet packages, which are reusable .NET software libraries, in selected .NET 10 project templates. It checks stable versions and applies patch and minor updates while treating major updates separately.

In plain words
What is it for?
It is for reviewing package updates and applying approved dependency-version changes to the specified .NET 10 web and infrastructure project files.
Why use it?
It helps keep the active templates current without changing frozen .NET 8 or .NET 9 files or restricted domain projects.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions Claude Code.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is dotnet new install ./NET10.0/Calabonga.Microservice.IdentityModule.Template.

Good fit It is for reviewing package updates and applying approved dependency-version changes to the specified .NET 10 web and infrastructure project files.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Calabonga/Microservice-Template
agentmods
npx agentmods add skills/calabonga/microservice-template/nuget-update

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for nuget-update

README.md
[![agentmods](https://agentmods.dev/badge/skills/calabonga/microservice-template/nuget-update.svg)](https://agentmods.dev/skills/calabonga/microservice-template/nuget-update)
Your own site
<a href="https://agentmods.dev/skills/calabonga/microservice-template/nuget-update"><img src="https://agentmods.dev/badge/skills/calabonga/microservice-template/nuget-update.svg" alt="Measured on agentmods" height="20"></a>
Per session 119 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,729 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium analysis-evasion · line 1
    Suspicious Unicode normalization or mixed-script content
    Fix: Review the flagged content for security risks. Ensure no credentials, secrets, or sensitive data are exposed.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00119 $0.01729
Opus 5 $0.00060 $0.00864
Sonnet 5 $0.00024 $0.00346
Haiku 4.5 $0.00012 $0.00173

Measured 9d ago against content hash 044043627e91, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

nuget-update scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/check-nuget-updates.ps1), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/nuget-update/SKILL.md · 93 lines

How it starts

The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Обновление NuGet-пакетов в шаблонах NET10.0

Область

  • Работаем только с NET10.0/ (активная версия платформы). NET8.0/ и NET9.0/ — заморожены, не трогаем.
  • Три шаблона, редактируем .csproj внутри content/:
    • Calabonga.Microservice.Module.Template*.Web, *.Infrastructure
    • Calabonga.Microservice.IdentityModule.Template*.Web, *.Infrastructure
    • Calabonga.AspNetCoreRazorPages.Template*.Web, *.Infrastructure
  • Никогда не редактируем *.Domain.csproj (в них и так нет PackageReference — см. rules/architecture.md). Если после правок git status показывает изменения в *.Domain — откатить их (git checkout --).

Шаг 1. Ветка

Создать ветку до любых правок: chore/nuget-updates-net10 (или с уточняющим суффиксом). Префикс — chore/ (разрешённые: feature/ bugfix/ hotfix/ chore/ docs/). Тип коммита в конце — build:.

Шаг 2. Собрать список доступных обновлений

Запустить вспомогательный скрипт (обходит все content/**/*.csproj, тянет последние stable-версии с nuget.org, классифицирует bump):

pwsh -File .claude/skills/nuget-update/scripts/check-nuget-updates.ps1

Скрипт печатает таблицу: Package | Current | Latest | Bump (major/minor/patch) | Projects.

Шаг 3. Согласовать объём

  • patch + minor — применяем по умолчанию, без вопросов.
  • major — по каждому major-скачку кратко описать риск (breaking changes, смена TFM) и спросить подтверждение отдельно. Прецедент: Calabonga.AspNetCore.AppDefinitions 4.0.0 → 10.0.0 оказался безопасным (номер версии просто трекает версию .NET; из изменений — перевод на net10.0 и миграция .sln.slnx, без изменений API).

Шаг 4. Применить

  • Правим .csproj инструментом Edit (он сохраняет CRLF). Не использовать sed -i в Git Bash — он перезапишет файл в LF и даст ложный diff на весь файл. Если нужен пакетный replace из шелла — perl -i -pe 's/\bVersion="X"/Version="Y"/' (сохраняет CRLF).
  • Согласованность: одна и та же версия одного пакета во всех шаблонах, где он встречается (rules → "Изменение общей обвязки применяем во всех подходящих шаблонах").
  • Сохранять атрибуты вроде NoWarn="NU1605" на PackageReference, если они были.
  • Не трогать комментарии ATTENTION!.

Read the full file on GitHub · 93 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 93 lines · 119 tokens per session scan A 044043627e91

Subscribe to this mod's changes

nuget-update is a skill published in the GitHub repository Calabonga/Microservice-Template (287 stars, last pushed 12d ago), licensed MIT. It adds 119 tokens to every session and 1,729 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

dotnet-inspect

Query .NET APIs across NuGet packages, platform libraries, and local files. Search for types, list API surfaces, compare and diff versions, find extension methods and implementors. Use whenever you need to answer questions about .NET library contents.

AgentEvalHQ/AgentEval · 54 tokens

add-slice

Scaffold a slice in this Vertical Slice Architecture template — one use case in its own folder, with its FastEndpoints endpoint, request, response, validator, and summary, plus the Feature and Group if they don't exist yet, plus tests. Use when the user says "add a slice", "add a use case", "add an endpoint", "add a…

SSWConsulting/SSW.VerticalSliceArchitecture · 125 tokens

furion

Use when building .NET Web API applications with minimal boilerplate — dynamic controllers, automatic dependency injection, JWT authentication, Swagger, event bus. Furion: lightweight convention-over-configuration .NET enterprise web framework.

znlgis/opengis-skills · 45 tokens

blazor

Use for Blazor Server development with Fluent UI Blazor, Razor components, layouts, pages, scoped UI services, culture switching, localization, forms, loading/empty/error states, and Studio-style dashboard workflows.

AterDev/Perigon.CLI · 45 tokens

cli

Use for .NET command-line tool development with Spectre.Console/Spectre.Console.Cli, Microsoft.Extensions.Hosting, dependency injection, localized help text, command settings, aliases, examples, terminal output, exit codes, and stdio-safe command paths.

AterDev/Perigon.CLI · 52 tokens

codegen

Use for .NET code generation work with Roslyn, Microsoft.OpenApi, Razor templates, DTO/manager/controller generation, REST API generation, C# HttpClient generation, Angular/Axios TypeScript request clients, generated formatting, and deterministic output.

AterDev/Perigon.CLI · 53 tokens