What problem does it solve?
Manage and mutate project dependencies in pnpm-based repositories while preserving reproducibility and avoiding lockfile drift. This skill helps agents and engineers perform installs, adds, removes, updates, prefetches, and inspections in a way that respects workspace scoping, build-script approvals, and CI requirements.
Core Features & Use Cases
- Lockfile-respecting installs: Run reproducible installs with frozen lockfiles for CI and automation to avoid unintended dependency changes.
- Workspace-aware mutation: Add, remove, or update packages scoped with filters or targeted at the workspace root to safely modify monorepos.
- Fetch and cache workflows: Pre-warm pnpm stores for Docker or offline installs using pnpm fetch and inspect drift with pnpm outdated before mutating manifests.
Quick Start
Run a frozen lockfile install in CI by executing pnpm install --frozen-lockfile.