Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bobcob7/dot-tools --skill npm명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | npm |
| description | npm commands for package management and scripts |
| argument-hint | [command or question] |
| allowed-tools | Bash, Read |
Help with npm based on $ARGUMENTS.
# Initialize project
npm init
npm init -y # Accept defaults
# Install dependencies
npm install # Install from package.json
npm install lodash # Add dependency
npm install -D typescript # Add dev dependency
npm install lodash@4.17.21 # Specific version
# Aliases
npm i # install
npm i -D # install --save-dev
# Remove
npm uninstall lodash
npm rm lodash # Alias
# Update
npm update # Update all
npm update lodash # Update specific
npm outdated # Check for updates
# Run script from package.json
npm run build
npm run test
npm run dev
# Built-in scripts (no "run" needed)
npm test
npm start
npm stop
# Pass arguments
npm run build -- --watch
# View package info
npm view lodash
npm view lodash versions # All versions
# List installed
npm list
npm list --depth=0 # Top-level only
npm list -g # Global packages
# Find package location
npm root
npm root -g
# Bump version
npm version patch # 1.0.0 -> 1.0.1
npm version minor # 1.0.0 -> 1.1.0
npm version major # 1.0.0 -> 2.0.0
npm login
npm publish
npm publish --access public # Scoped packages
npm unpublish pkg@1.0.0
# View config
npm config list
npm config get registry
# Set config
npm config set registry https://registry.npmjs.org/
# npmrc locations
# Project: .npmrc
# User: ~/.npmrc
# Clean install (CI)
npm ci # Exact versions from lock file
# Audit security
npm audit
npm audit fix
# Cache
npm cache clean --force
# Link for local development
npm link # In package dir
npm link package-name # In project dir
{
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"lint": "eslint src/",
"format": "prettier --write src/"
}
}