skills/nvm-skills/nvm-uninstall/SKILL.md
Remove nvm completely by deleting NVM_DIR, cleaning nvm lines from shell profiles, and restoring system Node PATH priority. Use when the user asks to uninstall nvm, remove node version manager, clean up nvm installation, or restore their system to use the system-installed Node.
npx skillsauth add partme-ai/full-stack-skills nvm-uninstallInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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
development
Provides per-component and per-API examples with cross-platform compatibility details for uni-app, covering built-in components, uni-ui components, and APIs (network, storage, device, UI, navigation, media). Use when the user needs official uni-app components or APIs, wants per-component examples with doc links, or needs platform compatibility checks.
tools
Creates new uni-app projects via the official CLI or HBuilderX with Vue 2/Vue 3 template selection, manifest.json and pages.json configuration, and directory structure setup. Use when the user wants to scaffold a new uni-app project, initialize project files with a single command, or set up the development environment.
tools
Browses, installs, configures, and manages plugins from the uni-app plugin market (ext.dcloud.net.cn) including component plugins, API plugins, and template plugins with dependency handling. Use when the user needs to find and install uni-app plugins, configure plugin settings, manage plugin dependencies, or integrate third-party components.
tools
Develops native Android and iOS plugins for uni-app including module creation, JavaScript-to-native communication, and plugin packaging for distribution. Use when the user needs to build custom native modules, extend uni-app with native capabilities (camera, Bluetooth, sensors), or create publishable native plugins.