skills/nvm-skills/nvm-misc/SKILL.md
Provide nvm overview, output color customization, tests, and automation examples like Ansible. Use when users ask for an nvm intro, color settings, running nvm tests, or Ansible install tasks.
npx skillsauth add teachingai/agent-skills nvm-miscInstall 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.
ALWAYS use this skill when the user mentions:
Trigger phrases include:
# Customize nvm output colors
export NVM_COLORS='yMeBg' # Set color scheme
nvm ls # See colorized output
nvm set-colors yMeBg # Persist color settings
# Suppress colors entirely
nvm --no-colors ls
# Run nvm tests
cd "$NVM_DIR" && npm test
# Ansible: install nvm in a playbook
# - name: Install nvm
# shell: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
# args:
# creates: "{{ ansible_env.HOME }}/.nvm/nvm.sh"
examples/intro.md - nvm overview and introductionexamples/about.md - About nvm projectexamples/ansible.md - Ansible automation tasksexamples/colors.md - Color customizationexamples/colors-persist.md - Persisting color settingsexamples/colors-suppress.md - Suppressing colorsexamples/tests.md - Running nvm testsnvm intro, overview, colors, NVM_COLORS, tests, ansible, miscellaneous
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.