From partme-ai-full-stack-skills
Removes nvm completely by deleting NVM_DIR, cleaning shell profile lines, and restoring system Node PATH priority. Useful when uninstalling nvm or switching to system Node.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
Completely remove nvm and restore the system to its pre-nvm state.
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.
Completely remove nvm and restore the system to its pre-nvm state.
Remove the nvm directory:
rm -rf "$NVM_DIR"
# Usually: rm -rf ~/.nvm
Remove nvm lines from shell profile (~/.bashrc, ~/.zshrc, or ~/.profile):
# Delete these lines from your profile:
# export NVM_DIR="$HOME/.nvm"
# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
# [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
Verify nvm is removed:
# Open a new terminal, then:
command -v nvm # Should return nothing
which node # Should show system Node path (e.g., /usr/local/bin/node)
node -v # Should show system Node version
Warning: This permanently removes all nvm-managed Node versions. Back up any global packages first with npm list -g --depth=0.
examples/uninstall.md - Step-by-step uninstall guideexamples/restore-path.md - PATH restoration detailsexamples/system-node.md - Switching to system Nodenvm uninstall, remove, cleanup, PATH restore, system node