From partme-ai-full-stack-skills
Provides nvm overviews, output color customization including NVM_COLORS, test running instructions, and Ansible automation examples. Useful for nvm intro, colors, tests, or installs.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
**ALWAYS use this skill when the user mentions:**
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.
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