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.
npx -y skills add natuleadan/skills --skill 010103-package-operationsAssembled 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
- If the user asks about installing or removing packages → run
python scripts/validate.py install - If the user asks about updating dependencies → run
python scripts/validate.py outdated - If the user asks about auditing for vulnerabilities → run
python scripts/validate.py audit - If the user asks about publishing packages → run
python scripts/validate.py publish - If the user asks about dependency troubleshooting → run
python scripts/validate.py doctor
Quick reference
| Task | npm | pnpm | bun |
|---|---|---|---|
| Install | npm install | pnpm install | bun install |
| Add dep | npm install <pkg> | pnpm add <pkg> | bun add <pkg> |
| Remove | npm uninstall <pkg> | pnpm remove <pkg> | bun remove <pkg> |
| Update all | npm update | pnpm update | bun update |
| Audit | npm audit | pnpm audit | bun pm audit |
| Outdated | npm outdated | pnpm outdated | bun outdated |
| Publish | npm publish | pnpm publish | bun publish |
| Doctor | npm doctor | pnpm doctor | bun --help |
Best practices
- Always review lockfile changes before committing
- Use
--frozen-lockfilein CI (npm ci,pnpm install --frozen-lockfile,bun install --frozen-lockfile) - Pin exact versions in production: set
save-exact=truein.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 troubleshootingscripts/validate.py— Validation tool for package operations