From dotnet-helpers
Guide setup of dotnet-helpers dependencies — check .NET 8+, jq, bun, detect package manager and install missing deps. Use when user asks to install or configure the dotnet-helpers tool, or when dependencies are missing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dotnet-helpers:setupThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guide the user through installing dependencies for the dotnet-helpers MCP plugin.
Guide the user through installing dependencies for the dotnet-helpers MCP plugin.
dotnet --version
command -v jq && jq --version
command -v bun && bun --version
server.ts).Check which package manager is available and install any missing tools:
| Distro | Check | Install command |
|---|---|---|
| Debian/Ubuntu | command -v apt | sudo apt update && sudo apt install -y jq |
| Fedora | command -v dnf | sudo dnf install -y jq |
| Arch | command -v pacman | sudo pacman -S --noconfirm jq |
| openSUSE | command -v zypper | sudo zypper install -y jq |
For bun, the install is distro-independent:
curl -fsSL https://bun.sh/install | bash
Only include missing packages in the install command. Tell the user the exact command and ask for confirmation before running it (since package installs may require sudo).
After installation, re-run the checks from steps 1–3 to confirm all dependencies are present. If all required deps are found, report success.
If any dep is still missing, report which one failed and what the error was.
npx claudepluginhub nige-l/claude-dotnet-helpers --plugin dotnet-helpersInstalls .NET Aspire CLI tool globally via dotnet tool install or update. Checks current state, verifies version, and prompts restart for MCP server integration.
Installs .NET SDK and configures NuGet proxy authentication in Claude Code web sessions. Enables dotnet restore, build, run, new, and fixes 401/407 proxy errors.
Installs and verifies WinUI 3 toolchain prerequisites: .NET SDK, WinApp CLI, WinUI templates, and Developer Mode. Use when setting up a new machine or fixing missing dependencies.