From partme-ai-full-stack-skills
Sets default Node versions using nvm aliases, creates .nvmrc files to pin project-specific versions, and configures shell auto-switching on directory change.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
Configure default Node versions and project-level version pinning with nvm.
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.
Configure default Node versions and project-level version pinning with nvm.
Set the default Node version using an alias:
nvm alias default 20
# Or use an LTS alias
nvm alias default lts/iron
Create or update .nvmrc in the project root:
# Pin to a specific version
echo "20.11.0" > .nvmrc
# Or use an LTS alias
echo "lts/iron" > .nvmrc
Enable shell auto-switching if requested (see auto-use examples per shell).
Verify the configuration works:
# Open a new shell, then:
nvm current # Should show the default version
cd /path/to/project
node -v # Should match .nvmrc version
Important: Keep .nvmrc consistent across team repos to avoid version drift. Basic install/use belongs to nvm-usage-basics.
examples/default-version.md - Setting default aliasesexamples/nvmrc.md - .nvmrc file creation and usageexamples/auto-use-bash.md - Auto-switching for bashexamples/auto-use-zsh.md - Auto-switching for zshexamples/auto-use-fish.md - Auto-switching for fishnvm alias, default version, .nvmrc, auto use, project version, defaults