install-dotnet-web

install-dotnet-web is a command for coding agents from logiclabs/dotnet-nuget-proxy-skill. It costs 29 tokens per session (1,052 once invoked), scanned C, original, MIT.

A command that installs a .NET NuGet proxy plugin in a project and adds automatic setup when a Claude Code web session starts.

In plain words
What is it for?
Use it to add the plugin files and startup hook needed for .NET and authenticated NuGet access in Claude Code web sessions.
Why use it?
It prepares the .NET SDK and NuGet authentication for future web sessions without repeating the setup manually.

Command

Part of the dotnet-nuget-proxy plugin — 1 skill, 1 command, 1 hook shipped together

Install

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.

agentmods
npx agentmods add commands/logiclabs/dotnet-nuget-proxy-skill/install-dotnet-web
Clone the repo
git clone --depth 1 https://github.com/logiclabs/dotnet-nuget-proxy-skill

Or install dotnet-nuget-proxy, the plugin that ships this one along with the rest of its 1 skill, 1 command, 1 hook.

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 install-dotnet-web

README.md
[![agentmods](https://agentmods.dev/badge/commands/logiclabs/dotnet-nuget-proxy-skill/install-dotnet-web.svg)](https://agentmods.dev/commands/logiclabs/dotnet-nuget-proxy-skill/install-dotnet-web)
Your own site
<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>
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,052 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. Scan, not verified.
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 $0.00029 $0.01052
Opus 5 $0.00015 $0.00526
Sonnet 5 $0.00006 $0.00210
Haiku 4.5 $0.00003 $0.00105

Measured 5d ago against content hash 2ebb2c0a852f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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 \
commands/install-dotnet-web.md · 102 lines

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

  1. Plugin files at .claude/plugins/dotnet-nuget-proxy-skill/ — the credential provider source, hooks, and install scripts
  2. 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"
    }
  ]
}

Read the full file on GitHub · 102 lines

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. 5d ago First seen · 102 lines · 29 tokens per session scan C 2ebb2c0a852f

Subscribe to this mod's changes

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.