Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/logiclabs/dotnet-nuget-proxy-skill/install-dotnet-webgit clone --depth 1 https://github.com/logiclabs/dotnet-nuget-proxy-skillWrote 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/commands/logiclabs/dotnet-nuget-proxy-skill/install-dotnet-web)<a href="https://agentmods.dev/commands/logiclabs/dotnet-nuget-proxy-skill/install-dotnet-web"><img src="https://agentmods.dev/badge/commands/logiclabs/dotnet-nuget-proxy-skill/install-dotnet-web.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00029 | $0.01052 |
| Opus 5 | $0.00015 | $0.00526 |
| Sonnet 5 | $0.00006 | $0.00210 |
| Haiku 4.5 | $0.00003 | $0.00105 |
Grade C, and why
install-dotnet-web scanned grade C with 2 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 5d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf "$TMPDIR" Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
TAG=$(curl -sSL "https://api.github.com/repos/$REPO/releases/latest" 2>/dev/null \ How it starts
The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Install .NET Web Support for Claude Code
This command installs the .NET NuGet proxy plugin into the current project so that future Claude Code web sessions automatically have the .NET SDK and NuGet proxy authentication ready.
What Gets Installed
- Plugin files at
.claude/plugins/dotnet-nuget-proxy-skill/— the credential provider source, hooks, and install scripts - SessionStart hook in
.claude/settings.json— triggers automatic setup when a web session starts
Installation Steps
Follow these steps exactly:
Step 1: Download the plugin
Download the latest release from GitHub and extract it into the project's .claude/plugins/ directory.
REPO="logiclabs/dotnet-nuget-proxy-skill"
PLUGIN_DEST=".claude/plugins/dotnet-nuget-proxy-skill"
# Get the latest release tag
TAG=$(curl -sSL "https://api.github.com/repos/$REPO/releases/latest" 2>/dev/null \
| python3 -c "import sys,json; print(json.load(sys.stdin).get('tag_name',''))" 2>/dev/null || true)
# Download tarball (latest release or main branch)
TMPDIR=$(mktemp -d)
if [ -n "$TAG" ]; then
curl -sSL "https://github.com/$REPO/archive/refs/tags/$TAG.tar.gz" -o "$TMPDIR/plugin.tar.gz"
else
curl -sSL "https://github.com/$REPO/archive/refs/heads/main.tar.gz" -o "$TMPDIR/plugin.tar.gz"
fi
# Extract
mkdir -p "$PLUGIN_DEST"
tar -xzf "$TMPDIR/plugin.tar.gz" -C "$TMPDIR"
EXTRACTED=$(find "$TMPDIR" -maxdepth 1 -type d -name "dotnet-nuget-proxy-skill-*" | head -1)
cp -a "$EXTRACTED/." "$PLUGIN_DEST/"
rm -rf "$TMPDIR"
# Make hooks executable
chmod +x "$PLUGIN_DEST/hooks/"*.sh
Step 2: Configure the SessionStart hook
Read the existing .claude/settings.json (if it exists) and merge in the SessionStart hook. Do NOT overwrite existing settings — merge carefully.
The hook entry to add to hooks.SessionStart:
{
"hooks": [
{
"type": "command",
"command": "bash \"$CLAUDE_PROJECT_DIR\"/.claude/plugins/dotnet-nuget-proxy-skill/hooks/session-start.sh"
}
]
}
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.
- 5d ago First seen · 102 lines · 29 tokens per session scan C 2ebb2c0a852f
install-dotnet-web is a command published in the GitHub repository logiclabs/dotnet-nuget-proxy-skill (12 stars, last pushed 6mo ago), licensed MIT. It adds 29 tokens to every session and 1,052 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
dumpstack
Helps examine thread call stacks. While clrstack is more commonly used for managed call stacks, dumpstack can also be used to inspect stack frames, including native ones.
dumpmt
Displays details about method tables (MethodTable).
plan
Break .NET work into small verifiable tasks with acceptance criteria, dotnet CLI verification steps, and dependency ordering.
test
Run .NET TDD workflow — write failing xUnit/MSTest tests, implement, verify. For bugs, use the Prove-It pattern.
azure-graph-dotnet:deploy-azure
Deploy a C# Azure Functions or Container Job project to Azure — provision infrastructure with Bicep, push image to ACR, assign Managed Identity Graph permissions, and generate or update GitHub Actions or Azure DevOps CI/CD pipelines.
azure-graph-dotnet:scaffold-console
Scaffold a .NET 8 console app / Azure Container Job for long-running batch Graph operations — generic host, BackgroundService worker, Dockerfile, ACA Job Bicep, and Managed Identity role assignment script.