toolchain-node

Installation
SKILL.md

Node.js / TypeScript Toolchain

Common commands for Node.js and TypeScript projects.

Package managers

# Detect which package manager is used
[ -f pnpm-lock.yaml ] && echo "pnpm" || ([ -f yarn.lock ] && echo "yarn" || echo "npm")
npm install          # or: pnpm install / yarn
npm ci               # Clean install (CI)
npm install lodash   # Add dependency
npm install -D vitest # Add dev dependency

Run scripts

Related skills

More from thinkfleetai/thinkfleet-engine

Installs
3
First Seen
Mar 1, 2026