microlinkhq/skills

use-pnpm

Use pnpm for installs, adds, removals, scripts, dlx, and frozen lockfile workflows instead of npm or yarn.

First seen Mar 22, 2026

Installation

$ npx skills add microlinkhq/skills --skill use-pnpm

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from microlinkhq/skills · top by installs.

npx skills add microlinkhq/skills

Browse all from microlinkhq/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
Default branch master
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 595 B
  • docs SUMMARY.md 122 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 44 installs

SKILL.md

Use pnpm

Always use pnpm instead of npm or yarn for all package management operations.

Command mapping

Instead of Use
npm install pnpm install
npm install <pkg> pnpm add <pkg>
npm install -D <pkg> pnpm add -D <pkg>
npm uninstall <pkg> pnpm remove <pkg>
npm run <script> pnpm run <script>
npx <cmd> pnpm dlx <cmd>
npm ci pnpm install --frozen-lockfile