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 teachingai/agent-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
Guidance for Next.js using the official docs at nextjs.org/docs. Use when the user needs Next.js concepts, configuration, routing, data fetching, or API reference details.
tools
Provides comprehensive guidance for Flask framework including routing, templates, forms, database integration, extensions, and deployment. Use when the user asks about Flask, needs to create web applications, implement routes, or build Python web services.
development
Provides comprehensive guidance for FastAPI framework including routing, request validation, dependency injection, async operations, OpenAPI documentation, and database integration. Use when the user asks about FastAPI, needs to create REST APIs, or build high-performance Python web services.
development
Provides comprehensive guidance for Django framework including models, views, templates, forms, admin, REST framework, and deployment. Use when the user asks about Django, needs to create web applications, implement models and views, or build Django REST APIs.