npm
Installation
SKILL.md
npm
Intent Router
| Request | Reference | Load When |
|---|---|---|
| Install Node.js, set up npm, configure .npmrc | references/install-and-setup.md |
Node.js or npm needs to be installed or configured |
| package.json fields, version specifiers, scripts | references/package-json.md |
package.json structure or fields are the topic |
| CLI commands, workflows | references/command-cookbook.md |
Specific npm commands are needed |
| Monorepo workspaces, hoisting | references/workspaces.md |
Workspace or monorepo setup is the topic |
Quick Start
# 1. Initialize a new package
npm init -y
# 2. Install all dependencies from package.json
npm install