원클릭으로
nodejs-version-setup
Ensures Node.js commands run with the project-required Node version before install, build, test, or scripts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Ensures Node.js commands run with the project-required Node version before install, build, test, or scripts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Defines the analyse-plan-execute workflow that the agent must follow for non-trivial tasks.
Defines a strict code review process where the agent validates quality through linting, tests, complexity analysis, and critical challenge of design decisions.
Guides the agent through creating a new AI skill following the agentskills.io format and this repository's conventions.
Guides the agent to always write commit messages following the Conventional Commits 1.0.0 specification, ensuring structured, parseable, and semantically meaningful commit history.
Guides the agent through applying Domain-Driven Design principles when modeling, structuring, and implementing business logic.
Guides the agent through applying Hexagonal Architecture (Ports & Adapters) to isolate domain logic from external concerns within a service.
| name | nodejs-version-setup |
| description | Ensures Node.js commands run with the project-required Node version before install, build, test, or scripts. |
Set and verify the correct Node.js runtime for this repository before running any Node.js command.
Use this skill whenever the task runs Node.js tooling, including npm, pnpm, yarn, npx, build scripts, tests, linters, or local CLIs.
.nvmrc.node-versionpackage.json -> engines.nodenvmfnmasdfvoltanvm: nvm install and nvm usefnm: fnm install and fnm useasdf: asdf install nodejs <version> and asdf local nodejs <version>volta: volta install node@<version>engines.node exists, resolve a concrete version inside that range and install/use it with the detected manager.node -v satisfies the required version. If it does not, stop and ask the user to confirm whether to install a version manager or proceed manually.node -vnpm -v (or pnpm -v / yarn -v depending on the project)which node to confirm the active binary path.nvmrc), which manager was used, and the final node -v.