agentsclimarketplace

010103 package operations

Skill natuleadan/skills/skills/010103-package-operations

Multi-domain agent skills collection for AI coding agents (Claude, Cursor, Copilot, OpenCode, and more). Covers programming, biology, cooking, and future domains. Installable via npx skills add.

Install
npx -y skills add natuleadan/skills --skill 010103-package-operations

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Day-to-day package management for npm, pnpm, and bun — install, update, audit, publish, dependency inspection, and version conflict resolution.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.9 KB, as published. Nobody here has run it

Package Operations

This skill covers day-to-day package management operations across npm, pnpm, and bun.

How to use this skill

  1. If the user asks about installing or removing packages → run python scripts/validate.py install
  2. If the user asks about updating dependencies → run python scripts/validate.py outdated
  3. If the user asks about auditing for vulnerabilities → run python scripts/validate.py audit
  4. If the user asks about publishing packages → run python scripts/validate.py publish
  5. If the user asks about dependency troubleshooting → run python scripts/validate.py doctor

Quick reference

Tasknpmpnpmbun
Installnpm installpnpm installbun install
Add depnpm install <pkg>pnpm add <pkg>bun add <pkg>
Removenpm uninstall <pkg>pnpm remove <pkg>bun remove <pkg>
Update allnpm updatepnpm updatebun update
Auditnpm auditpnpm auditbun pm audit
Outdatednpm outdatedpnpm outdatedbun outdated
Publishnpm publishpnpm publishbun publish
Doctornpm doctorpnpm doctorbun --help

Best practices

  • Always review lockfile changes before committing
  • Use --frozen-lockfile in CI (npm ci, pnpm install --frozen-lockfile, bun install --frozen-lockfile)
  • Pin exact versions in production: set save-exact=true in .npmrc
  • Audit regularly: npm audit --audit-level=high
  • Keep a change log when updating dependencies

References

  • references/ops-guide.md — PM-specific commands for install, update, audit, publish, and troubleshooting
  • scripts/validate.py — Validation tool for package operations

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.