What problem does it solve? Managing Node.js dependencies across projects and monorepos often leads to phantom dependencies, duplicated packages, inconsistent versions, and slow CI installs. This Skill provides authoritative guidance on pnpm so agents can correctly configure workspaces, enforce strict dependency resolution, and optimize installs. ## Core Features & Use Cases - CLI & Workspace Operations: Covers install, add, remove, update, run, exec, dlx, and monorepo filtering with the workspace protocol and shared lockfiles. - Configuration & Store Management: Explains pnpm-workspace.yaml, .npmrc settings, the content-addressable store, and node-linker modes for disk efficiency. - Advanced Features: Documents catalogs for centralized version management, overrides for forcing transitive dependency versions, patches for modifying third-party packages, aliases, hooks, and peer dependency rules. - Use Case: When migrating a monorepo from npm or Yarn to pnpm, use this Skill to convert lockfiles, set up pnpm-workspace.yaml with catalogs, handle phantom dependency errors, and configure CI with --frozen-lockfile and store caching. ## Quick Start Ask the agent to help you migrate your project from npm to pnpm and configure a pnpm workspace with a shared catalog for React.