skills/dependency-management/SKILL.md
Use when updating packages, auditing vulnerabilities, managing version pinning, or evaluating new dependencies
npx skillsauth add kienbui1995/magic-powers dependency-managementInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Every dependency is a liability — it can break, have vulnerabilities, or become unmaintained. Be deliberate about what you add and keep it updated.
Do I really need this package?
├── Can I write it in <50 lines? → Write it yourself
├── Is it a core utility (lodash for 1 function)? → Import just that function or skip
├── Check: maintained? >1000 weekly downloads? Recent commits? → No? Skip it
└── Yes to all → Add it, pin the version
| Environment | Strategy | Example |
|-------------|----------|---------|
| App (deployed) | Pin exact | "express": "4.18.2" |
| Library (published) | Range | "express": "^4.18.0" |
| Lock file | Always commit | package-lock.json, poetry.lock |
# Node.js
npm audit
npm audit fix
# Python
pip-audit
safety check
# General
snyk test
Schedule: Run npm audit / pip-audit weekly in CI. Block merges on critical/high vulnerabilities.
depcheck, pip-extra-reqs)content-media
Use when designing for XR (AR/VR/MR), choosing interaction modes, or adapting 2D UI patterns for spatial computing
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
development
Use when executing a structured workflow — select and run a feature, bugfix, refactor, research, or incident template with correct agent and model assignments per phase.