skills/nvm-skills/nvm-setup/SKILL.md
Configure shell initialization files so nvm loads correctly in bash, zsh, and fish. Covers NVM_DIR, nvm.sh sourcing, profile file selection, XDG_CONFIG_HOME, and bash completion. Use when the user reports nvm not found after installation, needs to configure shell profiles, or wants to set up nvm environment variables.
npx skillsauth add partme-ai/full-stack-skills nvm-setupInstall 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.
Configure shell profiles so nvm loads automatically on every new terminal session.
Identify the shell and profile file:
~/.bashrc (or ~/.bash_profile on macOS)~/.zshrc~/.config/fish/config.fish$XDG_CONFIG_HOME/bash/bashrc etc.Add nvm initialization to the correct profile:
# Required lines for bash/zsh:
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
Optional: Load nvm without switching versions (faster shell startup):
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" --no-use
Verify nvm loads in a new shell:
# Open a new terminal, then:
command -v nvm # Should print "nvm"
nvm --version # Should print version number
Notes:
--no-use when you only want nvm loaded without switching versions.templates/shell-config.md - Profile configuration templatesexamples/environment-variables.md - Environment variable referenceexamples/bash-completion.md - Bash completion setupexamples/bash-completion-usage.md - Completion usage examplesnvm setup, NVM_DIR, nvm.sh, profile, bash, zsh, fish, XDG_CONFIG_HOME, shell init
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.