From partme-ai-full-stack-skills
Manages Node.js versions with nvm commands: install specific or LTS versions, switch active versions, list installed and remote versions. Useful for nvm install, use, ls, or version switching queries.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
Install, switch, and list Node.js versions using core nvm commands.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Install, switch, and list Node.js versions using core nvm commands.
List available remote versions:
nvm ls-remote # All available versions
nvm ls-remote --lts # Only LTS releases
nvm ls-remote | grep v20 # Filter specific major version
Install a Node version:
nvm install 20 # Latest v20.x
nvm install 20.11.0 # Exact version
nvm install --lts # Latest LTS release
nvm install node # Latest current release
Switch between versions:
nvm use 20 # Switch to v20.x
nvm use --lts # Switch to latest LTS
nvm use system # Use system-installed Node
List installed versions and verify:
nvm ls # Show installed versions
nvm current # Show active version
node -v # Confirm active version
Note: For default version or .nvmrc, use the nvm-defaults-and-nvmrc skill. LTS is recommended for production stability.
examples/usage.md - General usage overviewexamples/install-version.md - Version installation detailsexamples/use-version.md - Switching versionsexamples/list-versions.md - Listing and filtering versionsexamples/long-term-support.md - LTS managementexamples/system-node.md - System Node usageexamples/iojs.md - io.js compatibilitynvm use, nvm install, nvm ls, ls-remote, LTS, system node, node versions