cosmicstack-labs/dependency-management
Version pinning, vulnerability scanning, monorepo patterns, and upgrade workflows
npx skills add https://github.com/cosmicstack-labs/mercury-agent-skills --skill dependency-management
Safely manage project dependencies at scale.
| Strategy | Format | Risk | Best For |
|----------|--------|------|----------|
| Exact | 1.2.3 | Low | Docker, CI, production |
| Caret | ^1.2.3 | Medium | Libraries, apps with good tests |
| Tilde | ~1.2.3 | Low-Medium | Conservative updates |
| Range | >=1.2.3 <2.0.0 | High | Rare, legacy |
| Floating | * | Very High | Never in production |
Rule: Pin exact versions for production, caret for libraries.
yarn audit — quick JS checkTake cosmicstack-labs/dependency-management from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npx.
Without those the skill loads but fails at the first command.