From partme-ai-full-stack-skills
Configures nvm for custom Node.js binary mirrors and authentication headers in corporate proxies, firewalls, or restricted networks. Triggers on NVM_NODEJS_ORG_MIRROR, private mirrors, or proxy installs.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
Configure nvm to download Node.js binaries from custom mirrors in restricted network environments.
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.
Configure nvm to download Node.js binaries from custom mirrors in restricted network environments.
Set the mirror URL via environment variable:
# Use a custom mirror (e.g., Taobao mirror for China)
export NVM_NODEJS_ORG_MIRROR=https://npmmirror.com/mirrors/node
# Then install as normal
nvm install 20
Configure authentication headers if the mirror requires auth:
# Set auth header for private mirror access
export NVM_AUTH_HEADER="Authorization: Bearer <token>"
nvm install 20
Validate mirror connectivity:
# Test the mirror URL
curl -I "$NVM_NODEJS_ORG_MIRROR/v20.11.0/"
# Verify node downloads successfully
nvm install 20 && node -v
Note: Installation steps are in nvm-install. This skill handles only mirror and auth configuration.
examples/mirror.md - Mirror URL configurationexamples/mirror-auth-header.md - Authentication header setupnode mirror, NVM_NODEJS_ORG_MIRROR, auth header, restricted network, corporate proxy, private mirror