This guide gets you from a pristine Windows machine to a working Skyline development environment in about an hour, with an AI assistant guiding most of the process.
Prerequisites: Windows 10/11, internet connection, GitHub account with SSH key access to ProteoWizard/pwiz
Press Win + X, then click Windows PowerShell (or Terminal on Windows 11).
Note: You're using the built-in Windows PowerShell. We'll upgrade to PowerShell 7 later.
Copy and paste this command into PowerShell:
irm https://claude.ai/install.ps1 | iex
Wait for the installation to complete.
Try running:
claude --version
If you see "claude is not recognized", run these commands to fix your PATH:
$claudePath = "$env:USERPROFILE\.local\bin"
[Environment]::SetEnvironmentVariable("Path", [Environment]::GetEnvironmentVariable("Path", "User") + ";$claudePath", "User")
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
Then verify: claude --version
claude
Follow the prompts to authenticate with your Anthropic account. You'll need:
Once authenticated, paste this prompt into Claude Code:
Help me set up a Skyline development environment on this Windows machine. Fetch and follow the instructions at: https://skyline.ms/new-machine-setup.url Guide me through each step, verifying success before moving on. Ask me before running any installers.
Claude Code will then:
The AI assistant will walk you through each step interactively. It will:
For Visual Studio installation, you'll need to interact with the installer GUI directly, but Claude Code will tell you exactly which workloads to select.
If you prefer to set up without AI assistance, see the traditional guide: How to Build Skyline
Once your basic environment is working, you can add AI-assisted development tools. In Claude Code, navigate to the repository and run:
cd C:\proj\pwiz /pw-configure
This adds: PowerShell 7 (UTF-8 support), ReSharper CLI, GitHub CLI, LabKey MCP server, and other tools that enhance the AI-assisted development workflow.
| Problem | Solution |
|---|---|
irm not recognized | You're in Command Prompt, not PowerShell. Close and open PowerShell. |
claude not recognized after install | See Step 3 above to fix PATH |
| Authentication fails | Ensure you have a Claude Pro/Max/Team subscription or valid API key |
| Claude Code can't fetch the setup page | Check your internet connection. The AI will still help with general guidance. |
Last updated: 2025-12-17
| Attached Files | ||