From windows-dev-agent
Bootstrap or repair a Windows development environment. Use when setting up a new machine, onboarding to a project, or fixing a broken environment. Triggers on phrases like "set up my environment", "bootstrap", "my Python isn't working", or "I need to install X".
How this skill is triggered — by the user, by Claude, or both
Slash command
/windows-dev-agent:win-setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When bootstrapping or repairing a Windows dev environment:
When bootstrapping or repairing a Windows dev environment:
env_inspect to get current state before touching anythingapproval-required. Show the full list, wait for confirmation.winget source update)env_inspect after install, confirm versions match expectations# Update sources
winget source update
# Install a runtime
winget install --id Python.Python.3.12 --exact --silent
# Install a tool
winget install --id Git.Git --exact --silent
winget install --id Microsoft.VisualStudioCode --exact --silent
# Check what's installed
winget list --source winget
Never use --silent for anything that requires a license agreement confirmation.
Always verify the --id is exact before running.
npx 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.