Node.js package manager with strict dependency resolution. Use when running pnpm specific commands, configuring workspaces via pnpm-workspace.yaml, or managing dependencies with catalogs, patches, overrides, config dependencies, or the global virtual store.
All-time #956Trending #2015Hot #4761First seen Jan 28, 2026
Fast, disk-efficient Node.js package manager with strict dependency resolution and monorepo support.
Enforces strict dependency resolution by default, preventing phantom dependencies; uses content-addressable storage to deduplicate packages across projects Supports monorepo workspaces with filtering, shared lockfiles, and workspace protocol; configuration via pnpm-workspace.yaml Includes advanced dependency management: catalogs for centralized version control, overrides to force specific versions, and patches to modify third-party packages Provides peer dependency auto-install, custom resolution hooks via .pnpmfile.cjs , and package aliases using the npm: protocol Use --frozen-lockfile in CI environments; check pnpm-workspace.yaml and .npmrc files to understand project configuration
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
The pnpm skill is a documentation-based resource authored by a trusted developer. It provides comprehensive guidance on using the pnpm package manager, focusing on core commands, workspace configuration, and best practices. The skill contains no executable code and strictly follows security recommendations for dependency management.
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeNot declared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
Stars5.9K
LicenseLICENSE.md
Default branchmain
Open issues9
Status
Active
Skill metadata
Parsed from SKILL.md frontmatter.
Version2026.6.22
More metadata
author
Anthony Fu
version
2026.6.22
source
Generated from https://github.com/pnpm/pnpm, scripts located at https://github.com/antfu/skills
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md4,082 B
docsSUMMARY.md266 B
History
First seen on skills.sh
First recorded snapshot · 20,410 installs
SKILL.md
pnpm is a fast, disk space efficient package manager. It uses a content-addressable store to deduplicate packages across all projects on a machine, and enforces strict dependency resolution by default, preventing phantom dependencies.
Configuration model (important): pnpm settings now live in pnpm-workspace.yaml (and the global config.yaml) using camelCase keys. .npmrc is used only for authentication/registry credentials, and the pnpm field of package.json is no longer read. When working in a pnpm project, check pnpm-workspace.yaml for settings/workspace structure and .npmrc only for auth. Always use --frozen-lockfile (or pnpm ci) in CI.
The skill is based on pnpm 10.x, generated at 2026-06-22. It also covers v11 behavior changes (config split, isolated global packages, allowBuilds, pmOnFail, global virtual store) where current docs describe them.