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.
git clone --depth 1 https://github.com/Calabonga/Microservice-Templatenpx agentmods add skills/calabonga/microservice-template/nuget-updateWrote 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.
[](https://agentmods.dev/skills/calabonga/microservice-template/nuget-update)<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>- NVIDIA SkillSpector warn
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 contentFix: Review the flagged content for security risks. Ensure no credentials, secrets, or sensitive data are exposed.
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.
| Model | Per session | Once 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 |
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.
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.
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,*.InfrastructureCalabonga.Microservice.IdentityModule.Template—*.Web,*.InfrastructureCalabonga.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.AppDefinitions4.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!.
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.
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.
- 9d ago First seen · 93 lines · 119 tokens per session scan A 044043627e91
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.
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.
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…
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.
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.
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.
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.