Agent skill
dev-swarm-nodejs
Install and configure Node.js, npm, and pnpm using nvm. Use when setting up a Node.js environment.
Install this agent skill to your Project
npx add-skill https://github.com/X-School-Academy/ai-dev-swarm/tree/main/dev-swarm/skills/dev-swarm-nodejs
SKILL.md
Node.js Environment Setup
This skill assists in installing and configuring the Node.js environment, including nvm (Node Version Manager), Node.js (LTS), and pnpm.
When to Use This Skill
- User needs to set up Node.js development environment
- User wants to install or update Node.js and pnpm
- User asks to configure package management tools
Prerequisites
- For macOS/Linux:
curlorwget. - For Windows: PowerShell.
Your Roles in This Skill
- DevOps Engineer: Install and configure Node.js environment using nvm. Set up pnpm package manager through corepack. Verify installations and troubleshoot setup issues. Guide users through platform-specific installation steps. Update project documentation to reflect environment setup.
Role Communication
As an expert in your assigned roles, you must announce your actions before performing them using the following format:
As a {Role} [and {Role}, ...], I will {action description}
This communication pattern ensures transparency and allows for human-in-the-loop oversight at key decision points.
Instructions
1. Check Existing Installation
Before installing, check if Node.js or pnpm are already installed.
node --version
pnpm --version
If they are installed and meet requirements, you may skip installation steps. Always ask the user for confirmation before overwriting or modifying existing installations.
2. Install nvm (Node Version Manager)
macOS and Linux:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
Note: You may need to restart the shell or source the profile file (e.g., source ~/.zshrc) to use nvm.
Windows:
Download and run the installer from: https://github.com/coreybutler/nvm-windows/releases/download/1.2.2/nvm-setup.exe
3. Install Node.js
Install the latest LTS (Long Term Support) version of Node.js.
nvm install lts/jod
nvm use lts/jod
(As of this writing, lts/jod points to v22.x. Adjust if a specific version is required).
4. Install pnpm
We use pnpm instead of npm for this project.
Enable pnpm via corepack (included with recent Node.js versions):
npm install --global corepack@latest
corepack enable pnpm
verify:
pnpm --version
5. Executing Packages (dlx)
For any command that typically uses npx package, use pnpm dlx package in this project.
6. Save User Preferences
After successful installation, save the package manager preference to dev-swarm/user_preferences.md so future sessions remember to use pnpm.
Example:
Create or update dev-swarm/user_preferences.md with:
## Node.js Package Manager
- Use **pnpm** for all Node.js package operations (instead of npm)
- Node.js version: LTS (jod - v22.x)
- For executing packages, use `pnpm dlx` instead of `npx`
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
awslabs-aws-api-mcp-server-call-aws
To run an exact AWS CLI command, execute a validated `aws ...` command for direct AWS operations when you already know the precise service and parameters; use instead of suggesting commands.
dart-get-runtime-errors
To read recent runtime errors from a running Dart or Flutter app, fetch runtime errors after connecting to the Dart Tooling Daemon.
dart-set-widget-selection-mode
To enable or disable widget selection mode in a running Flutter app, set selection mode after connecting to the Dart Tooling Daemon.
background-process-stop-process
To stop a managed background task, terminate a running process by ID to shut it down cleanly.
playwright-browser-network-requests
To inspect network activity since page load, list network requests to review API calls and resources.
playwright-browser-console-messages
To read console logs from the current page, retrieve console messages for debugging JavaScript output.
Didn't find tool you were looking for?