install-windows

Install Node.js and project dependencies on Windows with PowerShell.

6|Updated Mar 10, 2026
One-click install
npx skills add https://github.com/BaoNguyen09/grade-pilot --skill install-windows
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: install-windows
Source: https://github.com/BaoNguyen09/grade-pilot/tree/main/.agents/skills/install-windows
Command: npx skills add https://github.com/BaoNguyen09/grade-pilot --skill install-windows

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the setup of a Windows development environment, ensuring all necessary tools and dependencies are installed and configured correctly for running the project.

Core Features & Use Cases

  • PowerShell Execution Policy: Sets the execution policy to RemoteSigned for current user.
  • Node.js Installation: Checks for Node.js and installs the LTS version if missing or outdated.
  • Dependency Installation: Runs npm install to fetch project dependencies.
  • Use Case: A new developer on a Windows machine can use this skill to get their environment ready to run the GradePilot project with a single command.

Quick Start

Run the install-windows skill to set up your Windows PC.

Frequently Asked Questions about install-windows

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up a Windows development environment for Node.js?

To set up a Windows development environment for Node.js, this Skill installs the LTS version of Node.js, configures PowerShell execution policies, and updates the PATH environment variable automatically.

Why does npm install fail on PowerShell due to execution policy?

npm install can fail on PowerShell due to execution policy restrictions. This Skill resolves the issue by setting the PowerShell execution policy to RemoteSigned for the current user before installing dependencies.

Can I automatically install Node.js LTS and run npm install on Windows?

Yes, you can automatically install Node.js LTS and run npm install on Windows. This Skill checks your current Node.js version, installs the LTS build if missing, and executes npm install to fetch project dependencies.

Do I need to manually update the PATH environment variable after installing Node.js on Windows?

You do not need to manually update the PATH environment variable after installing Node.js on Windows. This Skill ensures the PATH environment variable is configured correctly for Node.js during the automated setup process.

What is the best way to configure PowerShell for Node.js project setup?

The best way to configure PowerShell for Node.js project setup is to set the execution policy to RemoteSigned. This allows local scripts to run while securing remote scripts, enabling successful dependency installation.

Does install-windows work for existing Node.js projects with missing dependencies?

Yes, install-windows works for existing Node.js projects with missing dependencies. It checks for Node.js, updates to the LTS version if outdated, and runs npm install to fetch all required project dependencies.