From windows-dev-agent
Install packages or tools using WinGet (preferred), Chocolatey, or Scoop. Always approval-required. Use when the user asks to install something or when a dependency check finds a missing tool.
How this skill is triggered — by the user, by Claude, or both
Slash command
/windows-dev-agent:package-installThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Package installation is always `approval-required`. Never install silently without showing the user exactly what will run.
Package installation is always approval-required. Never install silently without showing the user exactly what will run.
winget search <name> to find the exact package IDwinget install --id <exact.Package.Id> --exact
| What to install | Preferred command |
|---|---|
| Runtimes (Python, Node, Rust, Go, .NET) | winget install |
| Dev tools (Git, VS Code, Docker) | winget install |
| CLI utilities | winget install → scoop install fallback |
| Windows features (WSL, Hyper-V) | PowerShell Enable-WindowsOptionalFeature |
| npm packages | npm install (after Node confirmed) |
| pip packages | pip install / uv pip install (after Python confirmed) |
| Rust crates | cargo install (after Rust confirmed) |
--silent if it bypasses license promptscheckpointnpx claudepluginhub the-biomechanist/windows-dev-agentCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.